From b49b2da50864171eff56acc8ba067c3540a3991f Mon Sep 17 00:00:00 2001 From: MDeiml Date: Sat, 26 Feb 2022 15:22:17 +0100 Subject: [PATCH] Fix #33 --- corpus/issues.txt | 26 + grammar.js | 15 +- src/grammar.json | 166 +- src/parser.c | 140981 ++++++++++++++++++++++--------------------- 4 files changed, 70859 insertions(+), 70329 deletions(-) diff --git a/corpus/issues.txt b/corpus/issues.txt index 18ead16..8c84818 100644 --- a/corpus/issues.txt +++ b/corpus/issues.txt @@ -41,3 +41,29 @@ (image (image_description) (link_destination)))) + +================================================================================ +#33 - Fenced code block attributes +================================================================================ +```{R} +1 + 1 +``` + +```{} +1 + 1 +``` + +-------------------------------------------------------------------------------- + +(document + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language)) + (code_fence_content) + (fenced_code_block_delimiter)) + (fenced_code_block + (fenced_code_block_delimiter) + (info_string) + (code_fence_content) + (fenced_code_block_delimiter))) diff --git a/grammar.js b/grammar.js index aaab456..d46d89b 100644 --- a/grammar.js +++ b/grammar.js @@ -294,10 +294,19 @@ module.exports = grammar(add_inline_rules({ )), code_fence_content: $ => repeat1(choice($._newline, $._text)), info_string: $ => choice( - seq($.language, repeat(choice($._text, $.backslash_escape, $.entity_reference, $.numeric_character_reference))), - repeat1(choice($._text, $.backslash_escape, $.entity_reference, $.numeric_character_reference)), + seq( + prec.right(repeat1(prec(1, choice('{', '}')))), + optional(choice( + seq($.language, repeat(choice($._text, $.backslash_escape, $.entity_reference, $.numeric_character_reference))), + repeat1(choice($._text, $.backslash_escape, $.entity_reference, $.numeric_character_reference)), + )) + ), + choice( + seq($.language, repeat(choice($._text, $.backslash_escape, $.entity_reference, $.numeric_character_reference))), + repeat1(choice($._text, $.backslash_escape, $.entity_reference, $.numeric_character_reference)), + ) ), - language: $ => prec.right(repeat1(prec(1, choice($._word, punctuation_without($, []), $.backslash_escape, $.entity_reference, $.numeric_character_reference)))), + language: $ => prec.right(repeat1(prec(1, choice($._word, punctuation_without($, ['{', '}']), $.backslash_escape, $.entity_reference, $.numeric_character_reference)))), // An HTML block. We do not emit addition nodes relating to the kind or structure or of the // html block as this is best done using language injections and a proper html parsers. diff --git a/src/grammar.json b/src/grammar.json index 7fa1eb5..9cb21bb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -542,11 +542,139 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "language" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "}" + } + ] + } + } + } }, { - "type": "REPEAT", + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "language" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "language" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + ] + }, + { + "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ @@ -570,30 +698,6 @@ } } ] - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_text" - }, - { - "type": "SYMBOL", - "name": "backslash_escape" - }, - { - "type": "SYMBOL", - "name": "entity_reference" - }, - { - "type": "SYMBOL", - "name": "numeric_character_reference" - } - ] - } } ] }, @@ -730,18 +834,10 @@ "type": "STRING", "value": "`" }, - { - "type": "STRING", - "value": "{" - }, { "type": "STRING", "value": "|" }, - { - "type": "STRING", - "value": "}" - }, { "type": "STRING", "value": "~" diff --git a/src/parser.c b/src/parser.c index fbc8a8f..d7db9d2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2658 +#define STATE_COUNT 2663 #define LARGE_STATE_COUNT 502 -#define SYMBOL_COUNT 258 +#define SYMBOL_COUNT 259 #define ALIAS_COUNT 4 #define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 46 @@ -25,37 +25,37 @@ #define PRODUCTION_ID_COUNT 8 enum { - anon_sym_BANG = 1, - anon_sym_DQUOTE = 2, - anon_sym_POUND = 3, - anon_sym_DOLLAR = 4, - anon_sym_PERCENT = 5, - anon_sym_AMP = 6, - anon_sym_SQUOTE = 7, - anon_sym_LPAREN = 8, - anon_sym_RPAREN = 9, - anon_sym_STAR = 10, - anon_sym_PLUS = 11, - anon_sym_COMMA = 12, - anon_sym_DASH = 13, - anon_sym_DOT = 14, - anon_sym_SLASH = 15, - anon_sym_COLON = 16, - anon_sym_SEMI = 17, - anon_sym_LT = 18, - anon_sym_EQ = 19, - anon_sym_GT = 20, - anon_sym_QMARK = 21, - anon_sym_AT = 22, - anon_sym_LBRACK = 23, - anon_sym_BSLASH = 24, - anon_sym_RBRACK = 25, - anon_sym_CARET = 26, - anon_sym__ = 27, - anon_sym_BQUOTE = 28, - anon_sym_LBRACE = 29, - anon_sym_PIPE = 30, - anon_sym_RBRACE = 31, + anon_sym_LBRACE = 1, + anon_sym_RBRACE = 2, + anon_sym_BANG = 3, + anon_sym_DQUOTE = 4, + anon_sym_POUND = 5, + anon_sym_DOLLAR = 6, + anon_sym_PERCENT = 7, + anon_sym_AMP = 8, + anon_sym_SQUOTE = 9, + anon_sym_LPAREN = 10, + anon_sym_RPAREN = 11, + anon_sym_STAR = 12, + anon_sym_PLUS = 13, + anon_sym_COMMA = 14, + anon_sym_DASH = 15, + anon_sym_DOT = 16, + anon_sym_SLASH = 17, + anon_sym_COLON = 18, + anon_sym_SEMI = 19, + anon_sym_LT = 20, + anon_sym_EQ = 21, + anon_sym_GT = 22, + anon_sym_QMARK = 23, + anon_sym_AT = 24, + anon_sym_LBRACK = 25, + anon_sym_BSLASH = 26, + anon_sym_RBRACK = 27, + anon_sym_CARET = 28, + anon_sym__ = 29, + anon_sym_BQUOTE = 30, + anon_sym_PIPE = 31, anon_sym_TILDE = 32, aux_sym__html_block_1_token1 = 33, aux_sym__html_block_1_token2 = 34, @@ -250,46 +250,49 @@ enum { aux_sym__indented_chunk_repeat1 = 223, aux_sym_code_fence_content_repeat1 = 224, aux_sym_info_string_repeat1 = 225, - aux_sym_language_repeat1 = 226, - aux_sym__html_block_1_repeat1 = 227, - aux_sym__html_block_2_repeat1 = 228, - aux_sym__html_block_3_repeat1 = 229, - aux_sym__html_block_4_repeat1 = 230, - aux_sym__html_block_5_repeat1 = 231, - aux_sym__html_block_6_repeat1 = 232, - aux_sym__html_block_6_repeat2 = 233, - aux_sym__soft_line_break_repeat1 = 234, - aux_sym__paragraph_end_newline_repeat1 = 235, - aux_sym__list_plus_repeat1 = 236, - aux_sym__list_minus_repeat1 = 237, - aux_sym__list_star_repeat1 = 238, - aux_sym__list_dot_repeat1 = 239, - aux_sym__list_parenthesis_repeat1 = 240, - aux_sym_link_label_repeat1 = 241, - aux_sym_link_destination_repeat1 = 242, - aux_sym_link_destination_repeat2 = 243, - aux_sym__link_destination_parenthesis_repeat1 = 244, - aux_sym_link_title_repeat1 = 245, - aux_sym_link_title_repeat2 = 246, - aux_sym_link_title_repeat3 = 247, - aux_sym_inline_link_repeat1 = 248, - aux_sym__open_tag_repeat1 = 249, - aux_sym__tag_name_repeat1 = 250, - aux_sym__attribute_value_repeat1 = 251, - aux_sym__attribute_value_repeat2 = 252, - aux_sym__html_comment_repeat1 = 253, - 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, + aux_sym_info_string_repeat2 = 226, + aux_sym_language_repeat1 = 227, + aux_sym__html_block_1_repeat1 = 228, + aux_sym__html_block_2_repeat1 = 229, + aux_sym__html_block_3_repeat1 = 230, + aux_sym__html_block_4_repeat1 = 231, + aux_sym__html_block_5_repeat1 = 232, + aux_sym__html_block_6_repeat1 = 233, + aux_sym__html_block_6_repeat2 = 234, + aux_sym__soft_line_break_repeat1 = 235, + aux_sym__paragraph_end_newline_repeat1 = 236, + aux_sym__list_plus_repeat1 = 237, + aux_sym__list_minus_repeat1 = 238, + aux_sym__list_star_repeat1 = 239, + aux_sym__list_dot_repeat1 = 240, + aux_sym__list_parenthesis_repeat1 = 241, + aux_sym_link_label_repeat1 = 242, + aux_sym_link_destination_repeat1 = 243, + aux_sym_link_destination_repeat2 = 244, + aux_sym__link_destination_parenthesis_repeat1 = 245, + aux_sym_link_title_repeat1 = 246, + aux_sym_link_title_repeat2 = 247, + aux_sym_link_title_repeat3 = 248, + aux_sym_inline_link_repeat1 = 249, + aux_sym__open_tag_repeat1 = 250, + aux_sym__tag_name_repeat1 = 251, + aux_sym__attribute_value_repeat1 = 252, + aux_sym__attribute_value_repeat2 = 253, + aux_sym__html_comment_repeat1 = 254, + aux_sym__processing_instruction_repeat1 = 255, + aux_sym__declaration_repeat1 = 256, + aux_sym__code_span_repeat1 = 257, + aux_sym__code_span_no_newline_repeat1 = 258, + alias_sym_emphasis = 259, + alias_sym_heading_content = 260, + alias_sym_image_description = 261, + alias_sym_link_text = 262, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", [anon_sym_BANG] = "!", [anon_sym_DQUOTE] = "\"", [anon_sym_POUND] = "#", @@ -318,9 +321,7 @@ static const char * const ts_symbol_names[] = { [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_token1] = "_html_block_1_token1", [aux_sym__html_block_1_token2] = "_html_block_1_token2", @@ -515,6 +516,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__indented_chunk_repeat1] = "_indented_chunk_repeat1", [aux_sym_code_fence_content_repeat1] = "code_fence_content_repeat1", [aux_sym_info_string_repeat1] = "info_string_repeat1", + [aux_sym_info_string_repeat2] = "info_string_repeat2", [aux_sym_language_repeat1] = "language_repeat1", [aux_sym__html_block_1_repeat1] = "_html_block_1_repeat1", [aux_sym__html_block_2_repeat1] = "_html_block_2_repeat1", @@ -555,6 +557,8 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [anon_sym_POUND] = anon_sym_POUND, @@ -583,9 +587,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_CARET] = anon_sym_CARET, [anon_sym__] = anon_sym__, [anon_sym_BQUOTE] = anon_sym_BQUOTE, - [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_TILDE] = anon_sym_TILDE, [aux_sym__html_block_1_token1] = aux_sym__html_block_1_token1, [aux_sym__html_block_1_token2] = aux_sym__html_block_1_token2, @@ -780,6 +782,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__indented_chunk_repeat1] = aux_sym__indented_chunk_repeat1, [aux_sym_code_fence_content_repeat1] = aux_sym_code_fence_content_repeat1, [aux_sym_info_string_repeat1] = aux_sym_info_string_repeat1, + [aux_sym_info_string_repeat2] = aux_sym_info_string_repeat2, [aux_sym_language_repeat1] = aux_sym_language_repeat1, [aux_sym__html_block_1_repeat1] = aux_sym__html_block_1_repeat1, [aux_sym__html_block_2_repeat1] = aux_sym__html_block_2_repeat1, @@ -823,6 +826,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, [anon_sym_BANG] = { .visible = true, .named = false, @@ -935,18 +946,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, [anon_sym_PIPE] = { .visible = true, .named = false, }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, [anon_sym_TILDE] = { .visible = true, .named = false, @@ -1723,6 +1726,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_info_string_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_language_repeat1] = { .visible = false, .named = false, @@ -1952,37 +1959,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2917); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2923); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2933); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2939); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2919); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2925); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2935); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2941); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -1992,37 +1999,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2917); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2926); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2919); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2928); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2032,37 +2039,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2924); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2926); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2072,37 +2079,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2926); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2933); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2928); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2935); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2112,37 +2119,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2926); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2939); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2928); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2941); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2152,37 +2159,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2926); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2928); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2192,37 +2199,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2927); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2929); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2232,37 +2239,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2922); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2924); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2272,37 +2279,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2917); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2922); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2936); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2919); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2924); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2938); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2312,37 +2319,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2927); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2936); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2929); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2938); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2352,37 +2359,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2928); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2930); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2392,37 +2399,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2922); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2933); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2936); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2924); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2935); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2938); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2432,37 +2439,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2922); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2936); - if (lookahead == ']') ADVANCE(2939); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2924); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2938); + if (lookahead == ']') ADVANCE(2941); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2472,37 +2479,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2922); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2936); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2924); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2938); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2512,37 +2519,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2908); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2929); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2936); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2910); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2931); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2938); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -2552,14 +2559,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '/') ADVANCE(2919); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '/') ADVANCE(2921); if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); if (lookahead == ':' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2570,8 +2577,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '\'') ADVANCE(2910); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '\'') ADVANCE(2912); if (lookahead == '<') ADVANCE(74); if (lookahead != 0 && lookahead != '=' && @@ -22907,37 +22914,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(2986); if (lookahead == '\r') ADVANCE(2987); if (lookahead == ' ') ADVANCE(2983); - if (lookahead == '!') ADVANCE(2903); - if (lookahead == '"') ADVANCE(2904); - if (lookahead == '#') ADVANCE(2905); - if (lookahead == '$') ADVANCE(2906); - if (lookahead == '%') ADVANCE(2907); - if (lookahead == '&') ADVANCE(2909); - if (lookahead == '\'') ADVANCE(2910); - if (lookahead == '(') ADVANCE(2911); - if (lookahead == ')') ADVANCE(2912); - if (lookahead == '*') ADVANCE(2913); - if (lookahead == '+') ADVANCE(2914); - if (lookahead == ',') ADVANCE(2915); - if (lookahead == '-') ADVANCE(2916); - if (lookahead == '.') ADVANCE(2918); - if (lookahead == '/') ADVANCE(2919); - if (lookahead == ':') ADVANCE(2920); - if (lookahead == ';') ADVANCE(2921); - if (lookahead == '<') ADVANCE(2925); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == '>') ADVANCE(2931); - if (lookahead == '?') ADVANCE(2932); - if (lookahead == '@') ADVANCE(2934); - if (lookahead == '[') ADVANCE(2935); - if (lookahead == '\\') ADVANCE(2937); - if (lookahead == ']') ADVANCE(2938); - if (lookahead == '^') ADVANCE(2940); - if (lookahead == '_') ADVANCE(2941); - if (lookahead == '`') ADVANCE(2942); - if (lookahead == '{') ADVANCE(2943); - if (lookahead == '|') ADVANCE(2944); - if (lookahead == '}') ADVANCE(2945); + if (lookahead == '!') ADVANCE(2905); + if (lookahead == '"') ADVANCE(2906); + if (lookahead == '#') ADVANCE(2907); + if (lookahead == '$') ADVANCE(2908); + if (lookahead == '%') ADVANCE(2909); + if (lookahead == '&') ADVANCE(2911); + if (lookahead == '\'') ADVANCE(2912); + if (lookahead == '(') ADVANCE(2913); + if (lookahead == ')') ADVANCE(2914); + if (lookahead == '*') ADVANCE(2915); + if (lookahead == '+') ADVANCE(2916); + if (lookahead == ',') ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if (lookahead == '.') ADVANCE(2920); + if (lookahead == '/') ADVANCE(2921); + if (lookahead == ':') ADVANCE(2922); + if (lookahead == ';') ADVANCE(2923); + if (lookahead == '<') ADVANCE(2927); + if (lookahead == '=') ADVANCE(2932); + if (lookahead == '>') ADVANCE(2933); + if (lookahead == '?') ADVANCE(2934); + if (lookahead == '@') ADVANCE(2936); + if (lookahead == '[') ADVANCE(2937); + if (lookahead == '\\') ADVANCE(2939); + if (lookahead == ']') ADVANCE(2940); + if (lookahead == '^') ADVANCE(2942); + if (lookahead == '_') ADVANCE(2943); + if (lookahead == '`') ADVANCE(2944); + if (lookahead == '{') ADVANCE(2903); + if (lookahead == '|') ADVANCE(2945); + if (lookahead == '}') ADVANCE(2904); if (lookahead == '~') ADVANCE(2946); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2985); if (lookahead != 0) ADVANCE(2984); @@ -22946,24 +22953,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 2903: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 2904: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 2905: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 2906: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 2907: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 2908: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 2909: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 2910: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 2911: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '#') ADVANCE(2871); if (lookahead == 'A') ADVANCE(1043); @@ -23019,47 +23032,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'y') ADVANCE(1149); if (lookahead == 'z') ADVANCE(1239); END_STATE(); - case 2910: + case 2912: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 2911: + case 2913: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2912: + case 2914: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2913: + case 2915: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 2914: + case 2916: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 2915: + case 2917: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2916: + case 2918: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2917: + case 2919: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(688); END_STATE(); - case 2918: + case 2920: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 2919: + case 2921: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 2920: + case 2922: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2921: + case 2923: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2922: + case 2924: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 2923: + case 2925: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(78); if (lookahead == '/') ADVANCE(831); @@ -23103,7 +23116,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || ('^' <= lookahead && lookahead <= '~')) ADVANCE(972); END_STATE(); - case 2924: + case 2926: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(78); if (lookahead == '/') ADVANCE(833); @@ -23147,7 +23160,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || ('^' <= lookahead && lookahead <= '~')) ADVANCE(972); END_STATE(); - case 2925: + case 2927: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(78); if (lookahead == '/') ADVANCE(832); @@ -23191,7 +23204,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '=' || ('^' <= lookahead && lookahead <= '~')) ADVANCE(972); END_STATE(); - case 2926: + case 2928: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(78); if (lookahead == '?') ADVANCE(2955); @@ -23205,7 +23218,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(970); END_STATE(); - case 2927: + case 2929: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(81); if (lookahead == '/') ADVANCE(2740); @@ -23241,68 +23254,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U' || lookahead == 'u') ADVANCE(2802); END_STATE(); - case 2928: + case 2930: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(81); if (lookahead == '?') ADVANCE(2954); END_STATE(); - case 2929: + case 2931: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '/') ADVANCE(2837); END_STATE(); - case 2930: + case 2932: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 2931: + case 2933: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 2932: + case 2934: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 2933: + case 2935: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '>') ADVANCE(2956); END_STATE(); - case 2934: + case 2936: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 2935: + case 2937: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2936: + case 2938: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 2937: + case 2939: ACCEPT_TOKEN(anon_sym_BSLASH); if (('!' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || ('[' <= lookahead && lookahead <= '`') || ('{' <= lookahead && lookahead <= '~')) ADVANCE(2974); END_STATE(); - case 2938: + case 2940: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2939: + case 2941: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead == ']') ADVANCE(694); END_STATE(); - case 2940: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 2941: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); case 2942: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 2943: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2944: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 2945: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 2946: ACCEPT_TOKEN(anon_sym_TILDE); @@ -23523,41 +23530,41 @@ 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 = 2}, - [3] = {.lex_state = 2901, .external_lex_state = 2}, + [3] = {.lex_state = 2901, .external_lex_state = 3}, [4] = {.lex_state = 2901, .external_lex_state = 2}, [5] = {.lex_state = 2901, .external_lex_state = 3}, - [6] = {.lex_state = 2901, .external_lex_state = 3}, - [7] = {.lex_state = 2901, .external_lex_state = 2}, + [6] = {.lex_state = 2901, .external_lex_state = 2}, + [7] = {.lex_state = 2901, .external_lex_state = 3}, [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 = 3}, + [10] = {.lex_state = 2901, .external_lex_state = 3}, + [11] = {.lex_state = 2901, .external_lex_state = 2}, [12] = {.lex_state = 2901, .external_lex_state = 3}, - [13] = {.lex_state = 2901, .external_lex_state = 2}, + [13] = {.lex_state = 2901, .external_lex_state = 3}, [14] = {.lex_state = 2901, .external_lex_state = 2}, [15] = {.lex_state = 2901, .external_lex_state = 3}, - [16] = {.lex_state = 2901, .external_lex_state = 3}, + [16] = {.lex_state = 2901, .external_lex_state = 2}, [17] = {.lex_state = 2901, .external_lex_state = 2}, [18] = {.lex_state = 2901, .external_lex_state = 2}, [19] = {.lex_state = 2901, .external_lex_state = 3}, [20] = {.lex_state = 2901, .external_lex_state = 3}, [21] = {.lex_state = 2901, .external_lex_state = 3}, - [22] = {.lex_state = 2901, .external_lex_state = 2}, - [23] = {.lex_state = 2901, .external_lex_state = 2}, + [22] = {.lex_state = 2901, .external_lex_state = 3}, + [23] = {.lex_state = 2901, .external_lex_state = 3}, [24] = {.lex_state = 2901, .external_lex_state = 2}, [25] = {.lex_state = 2901, .external_lex_state = 2}, [26] = {.lex_state = 2901, .external_lex_state = 3}, - [27] = {.lex_state = 2901, .external_lex_state = 3}, + [27] = {.lex_state = 2901, .external_lex_state = 2}, [28] = {.lex_state = 2901, .external_lex_state = 3}, - [29] = {.lex_state = 2901, .external_lex_state = 2}, + [29] = {.lex_state = 2901, .external_lex_state = 3}, [30] = {.lex_state = 2901, .external_lex_state = 3}, - [31] = {.lex_state = 2901, .external_lex_state = 3}, - [32] = {.lex_state = 2901, .external_lex_state = 3}, + [31] = {.lex_state = 2901, .external_lex_state = 2}, + [32] = {.lex_state = 2901, .external_lex_state = 2}, [33] = {.lex_state = 2901, .external_lex_state = 3}, [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}, @@ -23566,611 +23573,611 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.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}, - [47] = {.lex_state = 2901, .external_lex_state = 4}, - [48] = {.lex_state = 2901, .external_lex_state = 4}, + [46] = {.lex_state = 2901, .external_lex_state = 5}, + [47] = {.lex_state = 2901, .external_lex_state = 5}, + [48] = {.lex_state = 2901, .external_lex_state = 5}, [49] = {.lex_state = 2901, .external_lex_state = 5}, - [50] = {.lex_state = 2901, .external_lex_state = 5}, - [51] = {.lex_state = 2901, .external_lex_state = 4}, - [52] = {.lex_state = 2901, .external_lex_state = 4}, + [50] = {.lex_state = 2901, .external_lex_state = 4}, + [51] = {.lex_state = 2901, .external_lex_state = 5}, + [52] = {.lex_state = 2901, .external_lex_state = 5}, [53] = {.lex_state = 2901, .external_lex_state = 5}, - [54] = {.lex_state = 2901, .external_lex_state = 4}, - [55] = {.lex_state = 2901, .external_lex_state = 4}, - [56] = {.lex_state = 2901, .external_lex_state = 4}, + [54] = {.lex_state = 2901, .external_lex_state = 5}, + [55] = {.lex_state = 2901, .external_lex_state = 5}, + [56] = {.lex_state = 2901, .external_lex_state = 5}, [57] = {.lex_state = 2901, .external_lex_state = 4}, - [58] = {.lex_state = 2901, .external_lex_state = 4}, - [59] = {.lex_state = 2901, .external_lex_state = 4}, - [60] = {.lex_state = 2901, .external_lex_state = 4}, - [61] = {.lex_state = 2901, .external_lex_state = 4}, - [62] = {.lex_state = 2901, .external_lex_state = 4}, - [63] = {.lex_state = 2901, .external_lex_state = 4}, - [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 = 4}, - [68] = {.lex_state = 2901, .external_lex_state = 4}, - [69] = {.lex_state = 2901, .external_lex_state = 4}, - [70] = {.lex_state = 2901, .external_lex_state = 4}, - [71] = {.lex_state = 2901, .external_lex_state = 4}, + [58] = {.lex_state = 2901, .external_lex_state = 5}, + [59] = {.lex_state = 2901, .external_lex_state = 5}, + [60] = {.lex_state = 2901, .external_lex_state = 5}, + [61] = {.lex_state = 2901, .external_lex_state = 5}, + [62] = {.lex_state = 2901, .external_lex_state = 5}, + [63] = {.lex_state = 2901, .external_lex_state = 5}, + [64] = {.lex_state = 2901, .external_lex_state = 5}, + [65] = {.lex_state = 2901, .external_lex_state = 5}, + [66] = {.lex_state = 2901, .external_lex_state = 5}, + [67] = {.lex_state = 2901, .external_lex_state = 5}, + [68] = {.lex_state = 2901, .external_lex_state = 5}, + [69] = {.lex_state = 2901, .external_lex_state = 5}, + [70] = {.lex_state = 2901, .external_lex_state = 5}, + [71] = {.lex_state = 2901, .external_lex_state = 5}, [72] = {.lex_state = 2901, .external_lex_state = 6}, [73] = {.lex_state = 2901, .external_lex_state = 7}, [74] = {.lex_state = 2901, .external_lex_state = 8}, - [75] = {.lex_state = 2901, .external_lex_state = 9}, + [75] = {.lex_state = 2901, .external_lex_state = 8}, [76] = {.lex_state = 2901, .external_lex_state = 8}, - [77] = {.lex_state = 2901, .external_lex_state = 8}, - [78] = {.lex_state = 2901, .external_lex_state = 8}, + [77] = {.lex_state = 2901, .external_lex_state = 9}, + [78] = {.lex_state = 2901, .external_lex_state = 9}, [79] = {.lex_state = 2901, .external_lex_state = 9}, - [80] = {.lex_state = 2901, .external_lex_state = 9}, + [80] = {.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 = 2, .external_lex_state = 11}, + [83] = {.lex_state = 2, .external_lex_state = 10}, [84] = {.lex_state = 2, .external_lex_state = 11}, - [85] = {.lex_state = 2, .external_lex_state = 10}, - [86] = {.lex_state = 2, .external_lex_state = 12}, + [85] = {.lex_state = 2, .external_lex_state = 11}, + [86] = {.lex_state = 2901, .external_lex_state = 12}, [87] = {.lex_state = 2901, .external_lex_state = 13}, [88] = {.lex_state = 2901, .external_lex_state = 14}, - [89] = {.lex_state = 2, .external_lex_state = 12}, - [90] = {.lex_state = 2901, .external_lex_state = 15}, - [91] = {.lex_state = 2901, .external_lex_state = 16}, + [89] = {.lex_state = 2, .external_lex_state = 15}, + [90] = {.lex_state = 2901, .external_lex_state = 16}, + [91] = {.lex_state = 2, .external_lex_state = 15}, [92] = {.lex_state = 2901, .external_lex_state = 17}, [93] = {.lex_state = 2901, .external_lex_state = 18}, [94] = {.lex_state = 2901, .external_lex_state = 18}, - [95] = {.lex_state = 2901, .external_lex_state = 19}, - [96] = {.lex_state = 2901, .external_lex_state = 18}, - [97] = {.lex_state = 2901, .external_lex_state = 17}, - [98] = {.lex_state = 5, .external_lex_state = 20}, - [99] = {.lex_state = 5, .external_lex_state = 21}, - [100] = {.lex_state = 2901, .external_lex_state = 22}, - [101] = {.lex_state = 2901, .external_lex_state = 18}, + [95] = {.lex_state = 2901, .external_lex_state = 18}, + [96] = {.lex_state = 2901, .external_lex_state = 19}, + [97] = {.lex_state = 2901, .external_lex_state = 20}, + [98] = {.lex_state = 2901, .external_lex_state = 17}, + [99] = {.lex_state = 2901, .external_lex_state = 17}, + [100] = {.lex_state = 2901, .external_lex_state = 18}, + [101] = {.lex_state = 5, .external_lex_state = 21}, [102] = {.lex_state = 2901, .external_lex_state = 17}, - [103] = {.lex_state = 2901, .external_lex_state = 17}, + [103] = {.lex_state = 5, .external_lex_state = 22}, [104] = {.lex_state = 2901, .external_lex_state = 3}, - [105] = {.lex_state = 2901, .external_lex_state = 3}, - [106] = {.lex_state = 2901, .external_lex_state = 2}, - [107] = {.lex_state = 2, .external_lex_state = 23}, - [108] = {.lex_state = 2, .external_lex_state = 23}, - [109] = {.lex_state = 5, .external_lex_state = 24}, + [105] = {.lex_state = 5, .external_lex_state = 23}, + [106] = {.lex_state = 2, .external_lex_state = 24}, + [107] = {.lex_state = 2, .external_lex_state = 24}, + [108] = {.lex_state = 2901, .external_lex_state = 2}, + [109] = {.lex_state = 2901, .external_lex_state = 2}, [110] = {.lex_state = 2901, .external_lex_state = 2}, - [111] = {.lex_state = 2901, .external_lex_state = 2}, + [111] = {.lex_state = 2901, .external_lex_state = 3}, [112] = {.lex_state = 2901, .external_lex_state = 2}, [113] = {.lex_state = 5, .external_lex_state = 25}, [114] = {.lex_state = 2901, .external_lex_state = 2}, [115] = {.lex_state = 2901, .external_lex_state = 2}, - [116] = {.lex_state = 2, .external_lex_state = 26}, - [117] = {.lex_state = 2901, .external_lex_state = 2}, - [118] = {.lex_state = 2901, .external_lex_state = 2}, - [119] = {.lex_state = 2, .external_lex_state = 26}, + [116] = {.lex_state = 2901, .external_lex_state = 3}, + [117] = {.lex_state = 5, .external_lex_state = 23}, + [118] = {.lex_state = 2901, .external_lex_state = 26}, + [119] = {.lex_state = 2901, .external_lex_state = 3}, [120] = {.lex_state = 2901, .external_lex_state = 2}, - [121] = {.lex_state = 2901, .external_lex_state = 2}, - [122] = {.lex_state = 2901, .external_lex_state = 2}, - [123] = {.lex_state = 2901, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 27}, - [125] = {.lex_state = 2901, .external_lex_state = 2}, - [126] = {.lex_state = 2901, .external_lex_state = 2}, - [127] = {.lex_state = 2901, .external_lex_state = 2}, - [128] = {.lex_state = 2901, .external_lex_state = 2}, - [129] = {.lex_state = 2901, .external_lex_state = 2}, + [121] = {.lex_state = 2901, .external_lex_state = 3}, + [122] = {.lex_state = 2901, .external_lex_state = 3}, + [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 = 3}, + [127] = {.lex_state = 2901, .external_lex_state = 3}, + [128] = {.lex_state = 5, .external_lex_state = 27}, + [129] = {.lex_state = 2901, .external_lex_state = 16}, [130] = {.lex_state = 2901, .external_lex_state = 2}, [131] = {.lex_state = 2901, .external_lex_state = 3}, - [132] = {.lex_state = 2901, .external_lex_state = 3}, - [133] = {.lex_state = 2901, .external_lex_state = 2}, + [132] = {.lex_state = 5, .external_lex_state = 27}, + [133] = {.lex_state = 5, .external_lex_state = 25}, [134] = {.lex_state = 2901, .external_lex_state = 2}, - [135] = {.lex_state = 2901, .external_lex_state = 2}, - [136] = {.lex_state = 2901, .external_lex_state = 2}, + [135] = {.lex_state = 2901, .external_lex_state = 3}, + [136] = {.lex_state = 2901, .external_lex_state = 3}, [137] = {.lex_state = 2901, .external_lex_state = 2}, - [138] = {.lex_state = 2901, .external_lex_state = 3}, - [139] = {.lex_state = 2901, .external_lex_state = 3}, + [138] = {.lex_state = 5, .external_lex_state = 25}, + [139] = {.lex_state = 2901, .external_lex_state = 2}, [140] = {.lex_state = 2901, .external_lex_state = 3}, - [141] = {.lex_state = 2901, .external_lex_state = 3}, - [142] = {.lex_state = 2901, .external_lex_state = 2}, - [143] = {.lex_state = 2901, .external_lex_state = 2}, - [144] = {.lex_state = 2901, .external_lex_state = 2}, - [145] = {.lex_state = 2901, .external_lex_state = 3}, - [146] = {.lex_state = 2901, .external_lex_state = 3}, - [147] = {.lex_state = 2901, .external_lex_state = 3}, - [148] = {.lex_state = 2901, .external_lex_state = 3}, - [149] = {.lex_state = 5, .external_lex_state = 28}, + [141] = {.lex_state = 5, .external_lex_state = 28}, + [142] = {.lex_state = 2901, .external_lex_state = 3}, + [143] = {.lex_state = 2901, .external_lex_state = 3}, + [144] = {.lex_state = 2, .external_lex_state = 29}, + [145] = {.lex_state = 2901, .external_lex_state = 2}, + [146] = {.lex_state = 2901, .external_lex_state = 2}, + [147] = {.lex_state = 5, .external_lex_state = 23}, + [148] = {.lex_state = 2901, .external_lex_state = 2}, + [149] = {.lex_state = 5, .external_lex_state = 27}, [150] = {.lex_state = 2901, .external_lex_state = 2}, - [151] = {.lex_state = 2901, .external_lex_state = 3}, - [152] = {.lex_state = 5, .external_lex_state = 27}, - [153] = {.lex_state = 2901, .external_lex_state = 3}, + [151] = {.lex_state = 2901, .external_lex_state = 2}, + [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 = 3}, - [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 = 2}, + [155] = {.lex_state = 2, .external_lex_state = 29}, + [156] = {.lex_state = 2901, .external_lex_state = 2}, + [157] = {.lex_state = 2901, .external_lex_state = 14}, + [158] = {.lex_state = 2901, .external_lex_state = 30}, + [159] = {.lex_state = 2901, .external_lex_state = 3}, [160] = {.lex_state = 2901, .external_lex_state = 3}, - [161] = {.lex_state = 2901, .external_lex_state = 29}, - [162] = {.lex_state = 2901, .external_lex_state = 2}, + [161] = {.lex_state = 2901, .external_lex_state = 3}, + [162] = {.lex_state = 2901, .external_lex_state = 3}, [163] = {.lex_state = 2901, .external_lex_state = 3}, [164] = {.lex_state = 2901, .external_lex_state = 3}, - [165] = {.lex_state = 2901, .external_lex_state = 3}, - [166] = {.lex_state = 2901, .external_lex_state = 3}, - [167] = {.lex_state = 2901, .external_lex_state = 3}, - [168] = {.lex_state = 2901, .external_lex_state = 3}, + [165] = {.lex_state = 2901, .external_lex_state = 2}, + [166] = {.lex_state = 2901, .external_lex_state = 2}, + [167] = {.lex_state = 2901, .external_lex_state = 2}, + [168] = {.lex_state = 2901, .external_lex_state = 2}, [169] = {.lex_state = 2901, .external_lex_state = 3}, [170] = {.lex_state = 2901, .external_lex_state = 3}, - [171] = {.lex_state = 2901, .external_lex_state = 3}, + [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 = 2}, + [173] = {.lex_state = 2901, .external_lex_state = 3}, + [174] = {.lex_state = 2901, .external_lex_state = 3}, + [175] = {.lex_state = 5, .external_lex_state = 27}, [176] = {.lex_state = 2901, .external_lex_state = 3}, - [177] = {.lex_state = 2901, .external_lex_state = 3}, - [178] = {.lex_state = 2901, .external_lex_state = 3}, - [179] = {.lex_state = 2901, .external_lex_state = 3}, + [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 = 3}, - [183] = {.lex_state = 2901, .external_lex_state = 30}, + [181] = {.lex_state = 2901, .external_lex_state = 3}, + [182] = {.lex_state = 2901, .external_lex_state = 2}, + [183] = {.lex_state = 2901, .external_lex_state = 2}, [184] = {.lex_state = 2901, .external_lex_state = 2}, [185] = {.lex_state = 2901, .external_lex_state = 2}, [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}, - [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}, - [196] = {.lex_state = 2901, .external_lex_state = 3}, - [197] = {.lex_state = 5, .external_lex_state = 27}, - [198] = {.lex_state = 2901, .external_lex_state = 3}, + [187] = {.lex_state = 2901, .external_lex_state = 2}, + [188] = {.lex_state = 2901, .external_lex_state = 2}, + [189] = {.lex_state = 2901, .external_lex_state = 2}, + [190] = {.lex_state = 2901, .external_lex_state = 2}, + [191] = {.lex_state = 2901, .external_lex_state = 2}, + [192] = {.lex_state = 2901, .external_lex_state = 2}, + [193] = {.lex_state = 2901, .external_lex_state = 2}, + [194] = {.lex_state = 2901, .external_lex_state = 2}, + [195] = {.lex_state = 2901, .external_lex_state = 2}, + [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 = 2}, [200] = {.lex_state = 2901, .external_lex_state = 3}, [201] = {.lex_state = 2901, .external_lex_state = 2}, [202] = {.lex_state = 2901, .external_lex_state = 3}, - [203] = {.lex_state = 2901, .external_lex_state = 2}, - [204] = {.lex_state = 5, .external_lex_state = 25}, + [203] = {.lex_state = 5, .external_lex_state = 25}, + [204] = {.lex_state = 2901, .external_lex_state = 2}, [205] = {.lex_state = 2901, .external_lex_state = 2}, - [206] = {.lex_state = 2901, .external_lex_state = 3}, + [206] = {.lex_state = 5, .external_lex_state = 28}, [207] = {.lex_state = 2901, .external_lex_state = 2}, - [208] = {.lex_state = 5, .external_lex_state = 24}, - [209] = {.lex_state = 2901, .external_lex_state = 2}, - [210] = {.lex_state = 2901, .external_lex_state = 29}, - [211] = {.lex_state = 2901, .external_lex_state = 15}, - [212] = {.lex_state = 2901, .external_lex_state = 2}, + [208] = {.lex_state = 2901, .external_lex_state = 2}, + [209] = {.lex_state = 2901, .external_lex_state = 3}, + [210] = {.lex_state = 2901, .external_lex_state = 2}, + [211] = {.lex_state = 2901, .external_lex_state = 3}, + [212] = {.lex_state = 2901, .external_lex_state = 3}, [213] = {.lex_state = 2901, .external_lex_state = 2}, - [214] = {.lex_state = 2901, .external_lex_state = 2}, - [215] = {.lex_state = 2901, .external_lex_state = 2}, - [216] = {.lex_state = 2901, .external_lex_state = 3}, + [214] = {.lex_state = 2901, .external_lex_state = 3}, + [215] = {.lex_state = 5, .external_lex_state = 23}, + [216] = {.lex_state = 2901, .external_lex_state = 2}, [217] = {.lex_state = 2901, .external_lex_state = 2}, - [218] = {.lex_state = 2901, .external_lex_state = 2}, + [218] = {.lex_state = 2901, .external_lex_state = 3}, [219] = {.lex_state = 2901, .external_lex_state = 2}, [220] = {.lex_state = 2901, .external_lex_state = 3}, - [221] = {.lex_state = 2901, .external_lex_state = 3}, - [222] = {.lex_state = 2901, .external_lex_state = 3}, + [221] = {.lex_state = 2901, .external_lex_state = 2}, + [222] = {.lex_state = 2901, .external_lex_state = 2}, [223] = {.lex_state = 2901, .external_lex_state = 3}, - [224] = {.lex_state = 2901, .external_lex_state = 2}, - [225] = {.lex_state = 2901, .external_lex_state = 2}, - [226] = {.lex_state = 2901, .external_lex_state = 2}, - [227] = {.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 = 3}, [228] = {.lex_state = 2901, .external_lex_state = 3}, - [229] = {.lex_state = 2901, .external_lex_state = 3}, + [229] = {.lex_state = 2901, .external_lex_state = 2}, [230] = {.lex_state = 2901, .external_lex_state = 3}, - [231] = {.lex_state = 2901, .external_lex_state = 2}, - [232] = {.lex_state = 2901, .external_lex_state = 2}, + [231] = {.lex_state = 2901, .external_lex_state = 3}, + [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}, - [236] = {.lex_state = 2901, .external_lex_state = 3}, - [237] = {.lex_state = 2901, .external_lex_state = 2}, - [238] = {.lex_state = 2901, .external_lex_state = 2}, + [234] = {.lex_state = 2901, .external_lex_state = 26}, + [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 = 5, .external_lex_state = 25}, [239] = {.lex_state = 2901, .external_lex_state = 3}, - [240] = {.lex_state = 2901, .external_lex_state = 30}, - [241] = {.lex_state = 2901, .external_lex_state = 2}, - [242] = {.lex_state = 2901, .external_lex_state = 2}, - [243] = {.lex_state = 2901, .external_lex_state = 2}, - [244] = {.lex_state = 2901, .external_lex_state = 2}, - [245] = {.lex_state = 2901, .external_lex_state = 2}, - [246] = {.lex_state = 5, .external_lex_state = 27}, - [247] = {.lex_state = 5, .external_lex_state = 24}, - [248] = {.lex_state = 2901, .external_lex_state = 13}, - [249] = {.lex_state = 5, .external_lex_state = 28}, - [250] = {.lex_state = 5, .external_lex_state = 27}, - [251] = {.lex_state = 2901, .external_lex_state = 2}, + [240] = {.lex_state = 2901, .external_lex_state = 3}, + [241] = {.lex_state = 2901, .external_lex_state = 3}, + [242] = {.lex_state = 5, .external_lex_state = 27}, + [243] = {.lex_state = 2901, .external_lex_state = 3}, + [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 = 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 = 2901, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 24}, - [256] = {.lex_state = 2901, .external_lex_state = 3}, - [257] = {.lex_state = 2901, .external_lex_state = 3}, - [258] = {.lex_state = 5, .external_lex_state = 24}, - [259] = {.lex_state = 2901, .external_lex_state = 3}, - [260] = {.lex_state = 5, .external_lex_state = 27}, + [255] = {.lex_state = 2901, .external_lex_state = 2}, + [256] = {.lex_state = 2901, .external_lex_state = 2}, + [257] = {.lex_state = 2901, .external_lex_state = 2}, + [258] = {.lex_state = 2901, .external_lex_state = 3}, + [259] = {.lex_state = 5, .external_lex_state = 25}, + [260] = {.lex_state = 2901, .external_lex_state = 2}, [261] = {.lex_state = 2901, .external_lex_state = 2}, - [262] = {.lex_state = 2901, .external_lex_state = 2}, - [263] = {.lex_state = 5, .external_lex_state = 27}, - [264] = {.lex_state = 2901, .external_lex_state = 3}, - [265] = {.lex_state = 2901, .external_lex_state = 3}, - [266] = {.lex_state = 2901, .external_lex_state = 3}, - [267] = {.lex_state = 2901, .external_lex_state = 3}, - [268] = {.lex_state = 2901, .external_lex_state = 3}, + [262] = {.lex_state = 5, .external_lex_state = 25}, + [263] = {.lex_state = 2901, .external_lex_state = 3}, + [264] = {.lex_state = 5, .external_lex_state = 27}, + [265] = {.lex_state = 2901, .external_lex_state = 2}, + [266] = {.lex_state = 2901, .external_lex_state = 2}, + [267] = {.lex_state = 5, .external_lex_state = 27}, + [268] = {.lex_state = 2901, .external_lex_state = 2}, [269] = {.lex_state = 2901, .external_lex_state = 3}, - [270] = {.lex_state = 2901, .external_lex_state = 3}, - [271] = {.lex_state = 2901, .external_lex_state = 3}, + [270] = {.lex_state = 2901, .external_lex_state = 2}, + [271] = {.lex_state = 2901, .external_lex_state = 2}, [272] = {.lex_state = 2901, .external_lex_state = 3}, - [273] = {.lex_state = 2901, .external_lex_state = 2}, + [273] = {.lex_state = 2901, .external_lex_state = 3}, [274] = {.lex_state = 2901, .external_lex_state = 3}, - [275] = {.lex_state = 2901, .external_lex_state = 2}, + [275] = {.lex_state = 2901, .external_lex_state = 3}, [276] = {.lex_state = 2901, .external_lex_state = 3}, [277] = {.lex_state = 2901, .external_lex_state = 3}, - [278] = {.lex_state = 2901, .external_lex_state = 3}, - [279] = {.lex_state = 2901, .external_lex_state = 2}, + [278] = {.lex_state = 2901, .external_lex_state = 2}, + [279] = {.lex_state = 2901, .external_lex_state = 3}, [280] = {.lex_state = 2901, .external_lex_state = 2}, - [281] = {.lex_state = 5, .external_lex_state = 25}, - [282] = {.lex_state = 2901, .external_lex_state = 2}, + [281] = {.lex_state = 2901, .external_lex_state = 3}, + [282] = {.lex_state = 2901, .external_lex_state = 3}, [283] = {.lex_state = 2901, .external_lex_state = 2}, - [284] = {.lex_state = 5, .external_lex_state = 25}, - [285] = {.lex_state = 2901, .external_lex_state = 2}, + [284] = {.lex_state = 2901, .external_lex_state = 2}, + [285] = {.lex_state = 2901, .external_lex_state = 30}, [286] = {.lex_state = 2901, .external_lex_state = 3}, - [287] = {.lex_state = 5, .external_lex_state = 24}, - [288] = {.lex_state = 5, .external_lex_state = 24}, + [287] = {.lex_state = 2901, .external_lex_state = 2}, + [288] = {.lex_state = 2901, .external_lex_state = 2}, [289] = {.lex_state = 2901, .external_lex_state = 2}, - [290] = {.lex_state = 5, .external_lex_state = 28}, + [290] = {.lex_state = 2901, .external_lex_state = 5}, [291] = {.lex_state = 5, .external_lex_state = 28}, [292] = {.lex_state = 5, .external_lex_state = 28}, [293] = {.lex_state = 5, .external_lex_state = 28}, [294] = {.lex_state = 5, .external_lex_state = 28}, - [295] = {.lex_state = 2901, .external_lex_state = 4}, - [296] = {.lex_state = 5, .external_lex_state = 28}, + [295] = {.lex_state = 5, .external_lex_state = 28}, + [296] = {.lex_state = 2901, .external_lex_state = 5}, [297] = {.lex_state = 2901, .external_lex_state = 5}, - [298] = {.lex_state = 2901, .external_lex_state = 31}, - [299] = {.lex_state = 2901, .external_lex_state = 31}, - [300] = {.lex_state = 2901, .external_lex_state = 4}, - [301] = {.lex_state = 2901, .external_lex_state = 4}, - [302] = {.lex_state = 2901, .external_lex_state = 4}, - [303] = {.lex_state = 2901, .external_lex_state = 4}, - [304] = {.lex_state = 2901, .external_lex_state = 4}, - [305] = {.lex_state = 2901, .external_lex_state = 5}, - [306] = {.lex_state = 2901, .external_lex_state = 5}, - [307] = {.lex_state = 2901, .external_lex_state = 5}, - [308] = {.lex_state = 2901, .external_lex_state = 5}, + [298] = {.lex_state = 2901, .external_lex_state = 5}, + [299] = {.lex_state = 2901, .external_lex_state = 5}, + [300] = {.lex_state = 5, .external_lex_state = 28}, + [301] = {.lex_state = 5, .external_lex_state = 28}, + [302] = {.lex_state = 5, .external_lex_state = 28}, + [303] = {.lex_state = 2901, .external_lex_state = 5}, + [304] = {.lex_state = 5, .external_lex_state = 28}, + [305] = {.lex_state = 5, .external_lex_state = 28}, + [306] = {.lex_state = 5, .external_lex_state = 28}, + [307] = {.lex_state = 2901, .external_lex_state = 31}, + [308] = {.lex_state = 5, .external_lex_state = 28}, [309] = {.lex_state = 2901, .external_lex_state = 4}, - [310] = {.lex_state = 2901, .external_lex_state = 31}, - [311] = {.lex_state = 5, .external_lex_state = 28}, + [310] = {.lex_state = 2901, .external_lex_state = 5}, + [311] = {.lex_state = 2901, .external_lex_state = 5}, [312] = {.lex_state = 5, .external_lex_state = 28}, - [313] = {.lex_state = 2901, .external_lex_state = 32}, - [314] = {.lex_state = 5, .external_lex_state = 28}, - [315] = {.lex_state = 2901, .external_lex_state = 4}, - [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 = 2, .external_lex_state = 33}, - [321] = {.lex_state = 2901, .external_lex_state = 31}, - [322] = {.lex_state = 2901, .external_lex_state = 5}, - [323] = {.lex_state = 2901, .external_lex_state = 4}, - [324] = {.lex_state = 2901, .external_lex_state = 5}, - [325] = {.lex_state = 5, .external_lex_state = 28}, - [326] = {.lex_state = 2901, .external_lex_state = 31}, - [327] = {.lex_state = 5, .external_lex_state = 28}, - [328] = {.lex_state = 5, .external_lex_state = 28}, - [329] = {.lex_state = 5, .external_lex_state = 28}, - [330] = {.lex_state = 5, .external_lex_state = 28}, - [331] = {.lex_state = 5, .external_lex_state = 28}, - [332] = {.lex_state = 5, .external_lex_state = 28}, - [333] = {.lex_state = 2901, .external_lex_state = 32}, - [334] = {.lex_state = 5, .external_lex_state = 28}, - [335] = {.lex_state = 5, .external_lex_state = 28}, - [336] = {.lex_state = 2901, .external_lex_state = 5}, - [337] = {.lex_state = 2901, .external_lex_state = 5}, + [313] = {.lex_state = 2, .external_lex_state = 32}, + [314] = {.lex_state = 2901, .external_lex_state = 31}, + [315] = {.lex_state = 5, .external_lex_state = 28}, + [316] = {.lex_state = 5, .external_lex_state = 28}, + [317] = {.lex_state = 2901, .external_lex_state = 31}, + [318] = {.lex_state = 2901, .external_lex_state = 5}, + [319] = {.lex_state = 5, .external_lex_state = 28}, + [320] = {.lex_state = 2901, .external_lex_state = 33}, + [321] = {.lex_state = 5, .external_lex_state = 28}, + [322] = {.lex_state = 2901, .external_lex_state = 33}, + [323] = {.lex_state = 2901, .external_lex_state = 33}, + [324] = {.lex_state = 5, .external_lex_state = 28}, + [325] = {.lex_state = 2901, .external_lex_state = 31}, + [326] = {.lex_state = 2901, .external_lex_state = 4}, + [327] = {.lex_state = 2901, .external_lex_state = 5}, + [328] = {.lex_state = 2901, .external_lex_state = 5}, + [329] = {.lex_state = 2901, .external_lex_state = 5}, + [330] = {.lex_state = 2901, .external_lex_state = 33}, + [331] = {.lex_state = 2901, .external_lex_state = 4}, + [332] = {.lex_state = 2901, .external_lex_state = 4}, + [333] = {.lex_state = 2901, .external_lex_state = 4}, + [334] = {.lex_state = 2901, .external_lex_state = 4}, + [335] = {.lex_state = 2901, .external_lex_state = 31}, + [336] = {.lex_state = 2901, .external_lex_state = 4}, + [337] = {.lex_state = 5, .external_lex_state = 28}, [338] = {.lex_state = 2901, .external_lex_state = 5}, - [339] = {.lex_state = 2901, .external_lex_state = 32}, - [340] = {.lex_state = 2901, .external_lex_state = 5}, - [341] = {.lex_state = 2901, .external_lex_state = 5}, - [342] = {.lex_state = 2, .external_lex_state = 33}, - [343] = {.lex_state = 5, .external_lex_state = 28}, - [344] = {.lex_state = 2901, .external_lex_state = 5}, - [345] = {.lex_state = 2901, .external_lex_state = 32}, - [346] = {.lex_state = 2901, .external_lex_state = 32}, - [347] = {.lex_state = 5, .external_lex_state = 28}, + [339] = {.lex_state = 2901, .external_lex_state = 33}, + [340] = {.lex_state = 5, .external_lex_state = 28}, + [341] = {.lex_state = 2901, .external_lex_state = 4}, + [342] = {.lex_state = 2901, .external_lex_state = 4}, + [343] = {.lex_state = 2901, .external_lex_state = 4}, + [344] = {.lex_state = 2901, .external_lex_state = 4}, + [345] = {.lex_state = 2901, .external_lex_state = 4}, + [346] = {.lex_state = 2901, .external_lex_state = 4}, + [347] = {.lex_state = 2, .external_lex_state = 32}, [348] = {.lex_state = 5, .external_lex_state = 28}, - [349] = {.lex_state = 5, .external_lex_state = 20}, + [349] = {.lex_state = 5, .external_lex_state = 21}, [350] = {.lex_state = 5, .external_lex_state = 28}, - [351] = {.lex_state = 2901, .external_lex_state = 2}, + [351] = {.lex_state = 5, .external_lex_state = 23}, [352] = {.lex_state = 5, .external_lex_state = 28}, - [353] = {.lex_state = 2901, .external_lex_state = 2}, - [354] = {.lex_state = 2901, .external_lex_state = 2}, + [353] = {.lex_state = 5, .external_lex_state = 28}, + [354] = {.lex_state = 5, .external_lex_state = 28}, [355] = {.lex_state = 5, .external_lex_state = 28}, - [356] = {.lex_state = 5, .external_lex_state = 28}, - [357] = {.lex_state = 2901, .external_lex_state = 2}, - [358] = {.lex_state = 5, .external_lex_state = 25}, - [359] = {.lex_state = 2901, .external_lex_state = 34}, + [356] = {.lex_state = 2901, .external_lex_state = 34}, + [357] = {.lex_state = 5, .external_lex_state = 28}, + [358] = {.lex_state = 5, .external_lex_state = 28}, + [359] = {.lex_state = 2901, .external_lex_state = 2}, [360] = {.lex_state = 5, .external_lex_state = 28}, [361] = {.lex_state = 5, .external_lex_state = 28}, [362] = {.lex_state = 2901, .external_lex_state = 2}, [363] = {.lex_state = 5, .external_lex_state = 28}, [364] = {.lex_state = 5, .external_lex_state = 28}, [365] = {.lex_state = 5, .external_lex_state = 28}, - [366] = {.lex_state = 2901, .external_lex_state = 35}, - [367] = {.lex_state = 2901, .external_lex_state = 34}, - [368] = {.lex_state = 5, .external_lex_state = 28}, - [369] = {.lex_state = 5, .external_lex_state = 21}, - [370] = {.lex_state = 5, .external_lex_state = 28}, + [366] = {.lex_state = 5, .external_lex_state = 28}, + [367] = {.lex_state = 5, .external_lex_state = 28}, + [368] = {.lex_state = 5, .external_lex_state = 23}, + [369] = {.lex_state = 2901, .external_lex_state = 34}, + [370] = {.lex_state = 2901, .external_lex_state = 2}, [371] = {.lex_state = 5, .external_lex_state = 28}, - [372] = {.lex_state = 5, .external_lex_state = 28}, + [372] = {.lex_state = 2901, .external_lex_state = 35}, [373] = {.lex_state = 5, .external_lex_state = 28}, [374] = {.lex_state = 5, .external_lex_state = 28}, - [375] = {.lex_state = 5, .external_lex_state = 28}, - [376] = {.lex_state = 5, .external_lex_state = 25}, + [375] = {.lex_state = 2901, .external_lex_state = 35}, + [376] = {.lex_state = 5, .external_lex_state = 28}, [377] = {.lex_state = 5, .external_lex_state = 28}, [378] = {.lex_state = 5, .external_lex_state = 28}, - [379] = {.lex_state = 5, .external_lex_state = 28}, + [379] = {.lex_state = 5, .external_lex_state = 22}, [380] = {.lex_state = 5, .external_lex_state = 28}, - [381] = {.lex_state = 2901, .external_lex_state = 35}, - [382] = {.lex_state = 5, .external_lex_state = 28}, + [381] = {.lex_state = 2901, .external_lex_state = 2}, + [382] = {.lex_state = 2901, .external_lex_state = 2}, [383] = {.lex_state = 5, .external_lex_state = 28}, - [384] = {.lex_state = 5, .external_lex_state = 24}, - [385] = {.lex_state = 5, .external_lex_state = 24}, - [386] = {.lex_state = 5, .external_lex_state = 27}, - [387] = {.lex_state = 5, .external_lex_state = 28}, - [388] = {.lex_state = 5, .external_lex_state = 27}, - [389] = {.lex_state = 5, .external_lex_state = 24}, - [390] = {.lex_state = 5, .external_lex_state = 25}, - [391] = {.lex_state = 5, .external_lex_state = 27}, - [392] = {.lex_state = 6, .external_lex_state = 36}, - [393] = {.lex_state = 5, .external_lex_state = 27}, - [394] = {.lex_state = 2901, .external_lex_state = 4}, + [384] = {.lex_state = 5, .external_lex_state = 28}, + [385] = {.lex_state = 5, .external_lex_state = 27}, + [386] = {.lex_state = 5, .external_lex_state = 23}, + [387] = {.lex_state = 5, .external_lex_state = 25}, + [388] = {.lex_state = 5, .external_lex_state = 23}, + [389] = {.lex_state = 5, .external_lex_state = 25}, + [390] = {.lex_state = 5, .external_lex_state = 27}, + [391] = {.lex_state = 5, .external_lex_state = 25}, + [392] = {.lex_state = 5, .external_lex_state = 27}, + [393] = {.lex_state = 5, .external_lex_state = 25}, + [394] = {.lex_state = 5, .external_lex_state = 25}, [395] = {.lex_state = 5, .external_lex_state = 25}, - [396] = {.lex_state = 5, .external_lex_state = 24}, - [397] = {.lex_state = 5, .external_lex_state = 24}, - [398] = {.lex_state = 5, .external_lex_state = 24}, + [396] = {.lex_state = 5, .external_lex_state = 27}, + [397] = {.lex_state = 5, .external_lex_state = 27}, + [398] = {.lex_state = 5, .external_lex_state = 27}, [399] = {.lex_state = 6, .external_lex_state = 36}, - [400] = {.lex_state = 5, .external_lex_state = 27}, - [401] = {.lex_state = 5, .external_lex_state = 27}, - [402] = {.lex_state = 5, .external_lex_state = 27}, - [403] = {.lex_state = 5, .external_lex_state = 24}, - [404] = {.lex_state = 2901, .external_lex_state = 5}, + [400] = {.lex_state = 2901, .external_lex_state = 5}, + [401] = {.lex_state = 5, .external_lex_state = 25}, + [402] = {.lex_state = 6, .external_lex_state = 36}, + [403] = {.lex_state = 5, .external_lex_state = 27}, + [404] = {.lex_state = 2901, .external_lex_state = 4}, [405] = {.lex_state = 2901, .external_lex_state = 5}, [406] = {.lex_state = 2901, .external_lex_state = 5}, - [407] = {.lex_state = 2901, .external_lex_state = 5}, - [408] = {.lex_state = 2901, .external_lex_state = 5}, + [407] = {.lex_state = 2901, .external_lex_state = 4}, + [408] = {.lex_state = 5, .external_lex_state = 28}, [409] = {.lex_state = 2901, .external_lex_state = 5}, - [410] = {.lex_state = 2901, .external_lex_state = 5}, + [410] = {.lex_state = 2901, .external_lex_state = 4}, [411] = {.lex_state = 2901, .external_lex_state = 5}, - [412] = {.lex_state = 2901, .external_lex_state = 5}, + [412] = {.lex_state = 5, .external_lex_state = 28}, [413] = {.lex_state = 2901, .external_lex_state = 5}, [414] = {.lex_state = 2901, .external_lex_state = 5}, [415] = {.lex_state = 2901, .external_lex_state = 5}, [416] = {.lex_state = 2901, .external_lex_state = 4}, - [417] = {.lex_state = 2901, .external_lex_state = 5}, - [418] = {.lex_state = 2901, .external_lex_state = 5}, - [419] = {.lex_state = 5, .external_lex_state = 28}, + [417] = {.lex_state = 2901, .external_lex_state = 4}, + [418] = {.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 = 2901, .external_lex_state = 5}, - [422] = {.lex_state = 2901, .external_lex_state = 5}, - [423] = {.lex_state = 2901, .external_lex_state = 5}, - [424] = {.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 = 4}, + [424] = {.lex_state = 2901, .external_lex_state = 5}, [425] = {.lex_state = 2901, .external_lex_state = 4}, [426] = {.lex_state = 2901, .external_lex_state = 5}, - [427] = {.lex_state = 5, .external_lex_state = 28}, + [427] = {.lex_state = 2901, .external_lex_state = 5}, [428] = {.lex_state = 2901, .external_lex_state = 4}, [429] = {.lex_state = 5, .external_lex_state = 28}, - [430] = {.lex_state = 2901, .external_lex_state = 4}, + [430] = {.lex_state = 2901, .external_lex_state = 5}, [431] = {.lex_state = 2901, .external_lex_state = 5}, - [432] = {.lex_state = 2901, .external_lex_state = 4}, - [433] = {.lex_state = 5, .external_lex_state = 28}, - [434] = {.lex_state = 5, .external_lex_state = 28}, + [432] = {.lex_state = 2901, .external_lex_state = 5}, + [433] = {.lex_state = 2901, .external_lex_state = 4}, + [434] = {.lex_state = 2901, .external_lex_state = 5}, [435] = {.lex_state = 2901, .external_lex_state = 4}, - [436] = {.lex_state = 2901, .external_lex_state = 5}, + [436] = {.lex_state = 2901, .external_lex_state = 4}, [437] = {.lex_state = 2901, .external_lex_state = 4}, - [438] = {.lex_state = 5, .external_lex_state = 28}, + [438] = {.lex_state = 2901, .external_lex_state = 5}, [439] = {.lex_state = 2901, .external_lex_state = 4}, [440] = {.lex_state = 2901, .external_lex_state = 4}, [441] = {.lex_state = 2901, .external_lex_state = 4}, - [442] = {.lex_state = 2901, .external_lex_state = 4}, - [443] = {.lex_state = 2901, .external_lex_state = 4}, + [442] = {.lex_state = 5, .external_lex_state = 28}, + [443] = {.lex_state = 5, .external_lex_state = 28}, [444] = {.lex_state = 2901, .external_lex_state = 5}, [445] = {.lex_state = 2901, .external_lex_state = 4}, [446] = {.lex_state = 2901, .external_lex_state = 4}, [447] = {.lex_state = 2901, .external_lex_state = 4}, [448] = {.lex_state = 2901, .external_lex_state = 5}, - [449] = {.lex_state = 2901, .external_lex_state = 4}, - [450] = {.lex_state = 2901, .external_lex_state = 4}, - [451] = {.lex_state = 2901, .external_lex_state = 4}, + [449] = {.lex_state = 5, .external_lex_state = 28}, + [450] = {.lex_state = 2901, .external_lex_state = 5}, + [451] = {.lex_state = 2901, .external_lex_state = 5}, [452] = {.lex_state = 2901, .external_lex_state = 4}, - [453] = {.lex_state = 2901, .external_lex_state = 4}, - [454] = {.lex_state = 2901, .external_lex_state = 4}, + [453] = {.lex_state = 2901, .external_lex_state = 5}, + [454] = {.lex_state = 2901, .external_lex_state = 5}, [455] = {.lex_state = 2901, .external_lex_state = 4}, - [456] = {.lex_state = 9, .external_lex_state = 37}, - [457] = {.lex_state = 9, .external_lex_state = 37}, - [458] = {.lex_state = 5, .external_lex_state = 21}, - [459] = {.lex_state = 5, .external_lex_state = 25}, - [460] = {.lex_state = 5, .external_lex_state = 21}, - [461] = {.lex_state = 5, .external_lex_state = 20}, - [462] = {.lex_state = 5, .external_lex_state = 20}, - [463] = {.lex_state = 5, .external_lex_state = 25}, - [464] = {.lex_state = 6, .external_lex_state = 38}, - [465] = {.lex_state = 9, .external_lex_state = 36}, - [466] = {.lex_state = 6, .external_lex_state = 38}, - [467] = {.lex_state = 9, .external_lex_state = 36}, + [456] = {.lex_state = 5, .external_lex_state = 21}, + [457] = {.lex_state = 5, .external_lex_state = 23}, + [458] = {.lex_state = 9, .external_lex_state = 37}, + [459] = {.lex_state = 5, .external_lex_state = 22}, + [460] = {.lex_state = 5, .external_lex_state = 22}, + [461] = {.lex_state = 5, .external_lex_state = 21}, + [462] = {.lex_state = 9, .external_lex_state = 37}, + [463] = {.lex_state = 5, .external_lex_state = 23}, + [464] = {.lex_state = 9, .external_lex_state = 36}, + [465] = {.lex_state = 6, .external_lex_state = 38}, + [466] = {.lex_state = 9, .external_lex_state = 36}, + [467] = {.lex_state = 6, .external_lex_state = 38}, [468] = {.lex_state = 5, .external_lex_state = 21}, - [469] = {.lex_state = 5, .external_lex_state = 20}, - [470] = {.lex_state = 5, .external_lex_state = 25}, - [471] = {.lex_state = 5, .external_lex_state = 25}, - [472] = {.lex_state = 5, .external_lex_state = 27}, - [473] = {.lex_state = 5, .external_lex_state = 24}, - [474] = {.lex_state = 5, .external_lex_state = 24}, - [475] = {.lex_state = 9, .external_lex_state = 39}, - [476] = {.lex_state = 5, .external_lex_state = 24}, - [477] = {.lex_state = 5, .external_lex_state = 28}, - [478] = {.lex_state = 5, .external_lex_state = 24}, - [479] = {.lex_state = 5, .external_lex_state = 24}, - [480] = {.lex_state = 5, .external_lex_state = 28}, - [481] = {.lex_state = 5, .external_lex_state = 27}, - [482] = {.lex_state = 9, .external_lex_state = 39}, - [483] = {.lex_state = 5, .external_lex_state = 27}, - [484] = {.lex_state = 5, .external_lex_state = 27}, - [485] = {.lex_state = 5, .external_lex_state = 28}, - [486] = {.lex_state = 5, .external_lex_state = 28}, - [487] = {.lex_state = 5, .external_lex_state = 27}, - [488] = {.lex_state = 5, .external_lex_state = 27}, + [469] = {.lex_state = 5, .external_lex_state = 23}, + [470] = {.lex_state = 5, .external_lex_state = 23}, + [471] = {.lex_state = 5, .external_lex_state = 22}, + [472] = {.lex_state = 5, .external_lex_state = 25}, + [473] = {.lex_state = 5, .external_lex_state = 27}, + [474] = {.lex_state = 5, .external_lex_state = 25}, + [475] = {.lex_state = 5, .external_lex_state = 28}, + [476] = {.lex_state = 9, .external_lex_state = 39}, + [477] = {.lex_state = 5, .external_lex_state = 23}, + [478] = {.lex_state = 5, .external_lex_state = 27}, + [479] = {.lex_state = 5, .external_lex_state = 27}, + [480] = {.lex_state = 5, .external_lex_state = 27}, + [481] = {.lex_state = 5, .external_lex_state = 28}, + [482] = {.lex_state = 5, .external_lex_state = 23}, + [483] = {.lex_state = 9, .external_lex_state = 39}, + [484] = {.lex_state = 5, .external_lex_state = 25}, + [485] = {.lex_state = 5, .external_lex_state = 25}, + [486] = {.lex_state = 5, .external_lex_state = 27}, + [487] = {.lex_state = 5, .external_lex_state = 28}, + [488] = {.lex_state = 5, .external_lex_state = 25}, [489] = {.lex_state = 5, .external_lex_state = 27}, - [490] = {.lex_state = 5, .external_lex_state = 25}, - [491] = {.lex_state = 5, .external_lex_state = 24}, + [490] = {.lex_state = 5, .external_lex_state = 28}, + [491] = {.lex_state = 5, .external_lex_state = 25}, [492] = {.lex_state = 5, .external_lex_state = 25}, - [493] = {.lex_state = 5, .external_lex_state = 24}, + [493] = {.lex_state = 5, .external_lex_state = 27}, [494] = {.lex_state = 5, .external_lex_state = 28}, - [495] = {.lex_state = 9, .external_lex_state = 38}, - [496] = {.lex_state = 9, .external_lex_state = 38}, - [497] = {.lex_state = 5, .external_lex_state = 28}, - [498] = {.lex_state = 5, .external_lex_state = 28}, + [495] = {.lex_state = 5, .external_lex_state = 28}, + [496] = {.lex_state = 5, .external_lex_state = 28}, + [497] = {.lex_state = 9, .external_lex_state = 38}, + [498] = {.lex_state = 9, .external_lex_state = 38}, [499] = {.lex_state = 5, .external_lex_state = 28}, [500] = {.lex_state = 5, .external_lex_state = 28}, [501] = {.lex_state = 5, .external_lex_state = 28}, [502] = {.lex_state = 2901, .external_lex_state = 28}, [503] = {.lex_state = 2901, .external_lex_state = 28}, [504] = {.lex_state = 2901, .external_lex_state = 40}, - [505] = {.lex_state = 5, .external_lex_state = 41}, - [506] = {.lex_state = 5, .external_lex_state = 42}, - [507] = {.lex_state = 5, .external_lex_state = 41}, + [505] = {.lex_state = 2901, .external_lex_state = 40}, + [506] = {.lex_state = 5, .external_lex_state = 41}, + [507] = {.lex_state = 5, .external_lex_state = 42}, [508] = {.lex_state = 5, .external_lex_state = 42}, - [509] = {.lex_state = 2901, .external_lex_state = 40}, + [509] = {.lex_state = 5, .external_lex_state = 41}, [510] = {.lex_state = 5, .external_lex_state = 43}, [511] = {.lex_state = 5, .external_lex_state = 43}, [512] = {.lex_state = 2901, .external_lex_state = 28}, - [513] = {.lex_state = 3, .external_lex_state = 24}, - [514] = {.lex_state = 3, .external_lex_state = 44}, - [515] = {.lex_state = 3, .external_lex_state = 27}, + [513] = {.lex_state = 4, .external_lex_state = 44}, + [514] = {.lex_state = 3, .external_lex_state = 25}, + [515] = {.lex_state = 3, .external_lex_state = 44}, [516] = {.lex_state = 4, .external_lex_state = 27}, [517] = {.lex_state = 3, .external_lex_state = 27}, - [518] = {.lex_state = 4, .external_lex_state = 24}, - [519] = {.lex_state = 3, .external_lex_state = 44}, - [520] = {.lex_state = 5, .external_lex_state = 45}, - [521] = {.lex_state = 4, .external_lex_state = 44}, - [522] = {.lex_state = 5, .external_lex_state = 46}, - [523] = {.lex_state = 4, .external_lex_state = 27}, - [524] = {.lex_state = 3, .external_lex_state = 27}, - [525] = {.lex_state = 4, .external_lex_state = 27}, - [526] = {.lex_state = 3, .external_lex_state = 24}, - [527] = {.lex_state = 4, .external_lex_state = 44}, - [528] = {.lex_state = 4, .external_lex_state = 24}, - [529] = {.lex_state = 3, .external_lex_state = 24}, - [530] = {.lex_state = 4, .external_lex_state = 24}, + [518] = {.lex_state = 3, .external_lex_state = 25}, + [519] = {.lex_state = 5, .external_lex_state = 45}, + [520] = {.lex_state = 5, .external_lex_state = 46}, + [521] = {.lex_state = 3, .external_lex_state = 25}, + [522] = {.lex_state = 4, .external_lex_state = 25}, + [523] = {.lex_state = 4, .external_lex_state = 25}, + [524] = {.lex_state = 4, .external_lex_state = 27}, + [525] = {.lex_state = 4, .external_lex_state = 44}, + [526] = {.lex_state = 3, .external_lex_state = 27}, + [527] = {.lex_state = 3, .external_lex_state = 27}, + [528] = {.lex_state = 4, .external_lex_state = 25}, + [529] = {.lex_state = 3, .external_lex_state = 44}, + [530] = {.lex_state = 4, .external_lex_state = 27}, [531] = {.lex_state = 5, .external_lex_state = 47}, - [532] = {.lex_state = 5, .external_lex_state = 47}, - [533] = {.lex_state = 5, .external_lex_state = 47}, - [534] = {.lex_state = 1, .external_lex_state = 27}, - [535] = {.lex_state = 1, .external_lex_state = 24}, - [536] = {.lex_state = 5, .external_lex_state = 48}, - [537] = {.lex_state = 1, .external_lex_state = 27}, - [538] = {.lex_state = 5, .external_lex_state = 47}, + [532] = {.lex_state = 5, .external_lex_state = 48}, + [533] = {.lex_state = 5, .external_lex_state = 48}, + [534] = {.lex_state = 5, .external_lex_state = 48}, + [535] = {.lex_state = 5, .external_lex_state = 47}, + [536] = {.lex_state = 5, .external_lex_state = 47}, + [537] = {.lex_state = 5, .external_lex_state = 47}, + [538] = {.lex_state = 1, .external_lex_state = 44}, [539] = {.lex_state = 5, .external_lex_state = 47}, [540] = {.lex_state = 5, .external_lex_state = 47}, [541] = {.lex_state = 5, .external_lex_state = 47}, - [542] = {.lex_state = 5, .external_lex_state = 48}, + [542] = {.lex_state = 5, .external_lex_state = 47}, [543] = {.lex_state = 5, .external_lex_state = 47}, - [544] = {.lex_state = 1, .external_lex_state = 24}, + [544] = {.lex_state = 5, .external_lex_state = 47}, [545] = {.lex_state = 5, .external_lex_state = 48}, - [546] = {.lex_state = 4, .external_lex_state = 28}, + [546] = {.lex_state = 5, .external_lex_state = 48}, [547] = {.lex_state = 5, .external_lex_state = 48}, - [548] = {.lex_state = 5, .external_lex_state = 48}, - [549] = {.lex_state = 5, .external_lex_state = 48}, - [550] = {.lex_state = 5, .external_lex_state = 48}, - [551] = {.lex_state = 5, .external_lex_state = 48}, + [548] = {.lex_state = 5, .external_lex_state = 47}, + [549] = {.lex_state = 5, .external_lex_state = 47}, + [550] = {.lex_state = 5, .external_lex_state = 47}, + [551] = {.lex_state = 5, .external_lex_state = 47}, [552] = {.lex_state = 5, .external_lex_state = 48}, - [553] = {.lex_state = 1, .external_lex_state = 27}, - [554] = {.lex_state = 5, .external_lex_state = 48}, + [553] = {.lex_state = 5, .external_lex_state = 47}, + [554] = {.lex_state = 1, .external_lex_state = 27}, [555] = {.lex_state = 5, .external_lex_state = 47}, [556] = {.lex_state = 5, .external_lex_state = 47}, [557] = {.lex_state = 5, .external_lex_state = 47}, [558] = {.lex_state = 5, .external_lex_state = 48}, - [559] = {.lex_state = 5, .external_lex_state = 47}, + [559] = {.lex_state = 5, .external_lex_state = 48}, [560] = {.lex_state = 5, .external_lex_state = 48}, [561] = {.lex_state = 5, .external_lex_state = 47}, - [562] = {.lex_state = 5, .external_lex_state = 48}, - [563] = {.lex_state = 5, .external_lex_state = 47}, - [564] = {.lex_state = 5, .external_lex_state = 48}, - [565] = {.lex_state = 5, .external_lex_state = 47}, - [566] = {.lex_state = 5, .external_lex_state = 48}, - [567] = {.lex_state = 5, .external_lex_state = 48}, - [568] = {.lex_state = 5, .external_lex_state = 47}, - [569] = {.lex_state = 5, .external_lex_state = 47}, + [562] = {.lex_state = 5, .external_lex_state = 47}, + [563] = {.lex_state = 5, .external_lex_state = 48}, + [564] = {.lex_state = 5, .external_lex_state = 47}, + [565] = {.lex_state = 1, .external_lex_state = 27}, + [566] = {.lex_state = 5, .external_lex_state = 47}, + [567] = {.lex_state = 5, .external_lex_state = 47}, + [568] = {.lex_state = 5, .external_lex_state = 48}, + [569] = {.lex_state = 1, .external_lex_state = 25}, [570] = {.lex_state = 5, .external_lex_state = 48}, - [571] = {.lex_state = 5, .external_lex_state = 48}, + [571] = {.lex_state = 5, .external_lex_state = 47}, [572] = {.lex_state = 5, .external_lex_state = 47}, [573] = {.lex_state = 5, .external_lex_state = 47}, [574] = {.lex_state = 5, .external_lex_state = 47}, [575] = {.lex_state = 5, .external_lex_state = 48}, - [576] = {.lex_state = 5, .external_lex_state = 47}, + [576] = {.lex_state = 5, .external_lex_state = 48}, [577] = {.lex_state = 5, .external_lex_state = 47}, - [578] = {.lex_state = 5, .external_lex_state = 48}, - [579] = {.lex_state = 5, .external_lex_state = 48}, - [580] = {.lex_state = 5, .external_lex_state = 48}, - [581] = {.lex_state = 3, .external_lex_state = 28}, - [582] = {.lex_state = 5, .external_lex_state = 48}, + [578] = {.lex_state = 5, .external_lex_state = 47}, + [579] = {.lex_state = 5, .external_lex_state = 47}, + [580] = {.lex_state = 5, .external_lex_state = 47}, + [581] = {.lex_state = 5, .external_lex_state = 48}, + [582] = {.lex_state = 5, .external_lex_state = 47}, [583] = {.lex_state = 5, .external_lex_state = 48}, - [584] = {.lex_state = 4, .external_lex_state = 28}, + [584] = {.lex_state = 5, .external_lex_state = 48}, [585] = {.lex_state = 5, .external_lex_state = 47}, - [586] = {.lex_state = 5, .external_lex_state = 43}, + [586] = {.lex_state = 5, .external_lex_state = 48}, [587] = {.lex_state = 5, .external_lex_state = 47}, - [588] = {.lex_state = 5, .external_lex_state = 49}, + [588] = {.lex_state = 5, .external_lex_state = 48}, [589] = {.lex_state = 5, .external_lex_state = 47}, - [590] = {.lex_state = 5, .external_lex_state = 48}, - [591] = {.lex_state = 3, .external_lex_state = 28}, - [592] = {.lex_state = 5, .external_lex_state = 47}, - [593] = {.lex_state = 5, .external_lex_state = 47}, - [594] = {.lex_state = 5, .external_lex_state = 48}, - [595] = {.lex_state = 5, .external_lex_state = 48}, - [596] = {.lex_state = 5, .external_lex_state = 48}, - [597] = {.lex_state = 5, .external_lex_state = 47}, - [598] = {.lex_state = 5, .external_lex_state = 48}, - [599] = {.lex_state = 5, .external_lex_state = 48}, + [590] = {.lex_state = 5, .external_lex_state = 43}, + [591] = {.lex_state = 5, .external_lex_state = 48}, + [592] = {.lex_state = 5, .external_lex_state = 42}, + [593] = {.lex_state = 1, .external_lex_state = 25}, + [594] = {.lex_state = 5, .external_lex_state = 41}, + [595] = {.lex_state = 3, .external_lex_state = 28}, + [596] = {.lex_state = 5, .external_lex_state = 49}, + [597] = {.lex_state = 5, .external_lex_state = 48}, + [598] = {.lex_state = 5, .external_lex_state = 47}, + [599] = {.lex_state = 5, .external_lex_state = 47}, [600] = {.lex_state = 5, .external_lex_state = 47}, - [601] = {.lex_state = 5, .external_lex_state = 47}, - [602] = {.lex_state = 5, .external_lex_state = 48}, + [601] = {.lex_state = 4, .external_lex_state = 28}, + [602] = {.lex_state = 1, .external_lex_state = 44}, [603] = {.lex_state = 5, .external_lex_state = 48}, - [604] = {.lex_state = 5, .external_lex_state = 47}, - [605] = {.lex_state = 5, .external_lex_state = 47}, - [606] = {.lex_state = 5, .external_lex_state = 47}, - [607] = {.lex_state = 1, .external_lex_state = 24}, - [608] = {.lex_state = 5, .external_lex_state = 47}, + [604] = {.lex_state = 5, .external_lex_state = 48}, + [605] = {.lex_state = 5, .external_lex_state = 48}, + [606] = {.lex_state = 5, .external_lex_state = 48}, + [607] = {.lex_state = 5, .external_lex_state = 48}, + [608] = {.lex_state = 5, .external_lex_state = 48}, [609] = {.lex_state = 5, .external_lex_state = 48}, [610] = {.lex_state = 5, .external_lex_state = 48}, - [611] = {.lex_state = 5, .external_lex_state = 48}, - [612] = {.lex_state = 5, .external_lex_state = 42}, - [613] = {.lex_state = 5, .external_lex_state = 48}, - [614] = {.lex_state = 5, .external_lex_state = 48}, - [615] = {.lex_state = 5, .external_lex_state = 41}, + [611] = {.lex_state = 5, .external_lex_state = 47}, + [612] = {.lex_state = 5, .external_lex_state = 47}, + [613] = {.lex_state = 5, .external_lex_state = 47}, + [614] = {.lex_state = 5, .external_lex_state = 47}, + [615] = {.lex_state = 4, .external_lex_state = 28}, [616] = {.lex_state = 5, .external_lex_state = 48}, - [617] = {.lex_state = 5, .external_lex_state = 47}, - [618] = {.lex_state = 5, .external_lex_state = 47}, + [617] = {.lex_state = 3, .external_lex_state = 28}, + [618] = {.lex_state = 5, .external_lex_state = 48}, [619] = {.lex_state = 5, .external_lex_state = 48}, - [620] = {.lex_state = 5, .external_lex_state = 47}, + [620] = {.lex_state = 5, .external_lex_state = 48}, [621] = {.lex_state = 5, .external_lex_state = 48}, [622] = {.lex_state = 5, .external_lex_state = 48}, - [623] = {.lex_state = 1, .external_lex_state = 44}, - [624] = {.lex_state = 5, .external_lex_state = 47}, - [625] = {.lex_state = 1, .external_lex_state = 44}, - [626] = {.lex_state = 5, .external_lex_state = 47}, - [627] = {.lex_state = 5, .external_lex_state = 47}, - [628] = {.lex_state = 5, .external_lex_state = 47}, + [623] = {.lex_state = 1, .external_lex_state = 27}, + [624] = {.lex_state = 5, .external_lex_state = 48}, + [625] = {.lex_state = 5, .external_lex_state = 48}, + [626] = {.lex_state = 5, .external_lex_state = 48}, + [627] = {.lex_state = 1, .external_lex_state = 25}, + [628] = {.lex_state = 5, .external_lex_state = 48}, [629] = {.lex_state = 5, .external_lex_state = 48}, - [630] = {.lex_state = 5, .external_lex_state = 47}, + [630] = {.lex_state = 5, .external_lex_state = 48}, [631] = {.lex_state = 5, .external_lex_state = 50}, [632] = {.lex_state = 5, .external_lex_state = 50}, [633] = {.lex_state = 5, .external_lex_state = 50}, [634] = {.lex_state = 5, .external_lex_state = 50}, [635] = {.lex_state = 5, .external_lex_state = 50}, - [636] = {.lex_state = 1, .external_lex_state = 28}, + [636] = {.lex_state = 5, .external_lex_state = 50}, [637] = {.lex_state = 5, .external_lex_state = 50}, [638] = {.lex_state = 5, .external_lex_state = 51}, - [639] = {.lex_state = 5, .external_lex_state = 20}, + [639] = {.lex_state = 5, .external_lex_state = 50}, [640] = {.lex_state = 5, .external_lex_state = 50}, - [641] = {.lex_state = 5, .external_lex_state = 50}, - [642] = {.lex_state = 1, .external_lex_state = 28}, - [643] = {.lex_state = 5, .external_lex_state = 50}, - [644] = {.lex_state = 5, .external_lex_state = 52}, + [641] = {.lex_state = 5, .external_lex_state = 51}, + [642] = {.lex_state = 5, .external_lex_state = 50}, + [643] = {.lex_state = 1, .external_lex_state = 28}, + [644] = {.lex_state = 5, .external_lex_state = 21}, [645] = {.lex_state = 5, .external_lex_state = 50}, - [646] = {.lex_state = 5, .external_lex_state = 50}, - [647] = {.lex_state = 5, .external_lex_state = 20}, + [646] = {.lex_state = 5, .external_lex_state = 22}, + [647] = {.lex_state = 5, .external_lex_state = 50}, [648] = {.lex_state = 5, .external_lex_state = 50}, [649] = {.lex_state = 5, .external_lex_state = 50}, - [650] = {.lex_state = 5, .external_lex_state = 52}, + [650] = {.lex_state = 5, .external_lex_state = 50}, [651] = {.lex_state = 5, .external_lex_state = 50}, [652] = {.lex_state = 5, .external_lex_state = 50}, [653] = {.lex_state = 5, .external_lex_state = 50}, @@ -24178,11 +24185,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [655] = {.lex_state = 5, .external_lex_state = 50}, [656] = {.lex_state = 5, .external_lex_state = 50}, [657] = {.lex_state = 5, .external_lex_state = 50}, - [658] = {.lex_state = 5, .external_lex_state = 21}, - [659] = {.lex_state = 5, .external_lex_state = 50}, + [658] = {.lex_state = 5, .external_lex_state = 50}, + [659] = {.lex_state = 5, .external_lex_state = 52}, [660] = {.lex_state = 5, .external_lex_state = 50}, - [661] = {.lex_state = 5, .external_lex_state = 51}, - [662] = {.lex_state = 5, .external_lex_state = 50}, + [661] = {.lex_state = 5, .external_lex_state = 50}, + [662] = {.lex_state = 5, .external_lex_state = 52}, [663] = {.lex_state = 5, .external_lex_state = 50}, [664] = {.lex_state = 5, .external_lex_state = 50}, [665] = {.lex_state = 5, .external_lex_state = 50}, @@ -24190,835 +24197,835 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [667] = {.lex_state = 5, .external_lex_state = 50}, [668] = {.lex_state = 5, .external_lex_state = 50}, [669] = {.lex_state = 5, .external_lex_state = 50}, - [670] = {.lex_state = 5, .external_lex_state = 50}, + [670] = {.lex_state = 5, .external_lex_state = 22}, [671] = {.lex_state = 5, .external_lex_state = 50}, [672] = {.lex_state = 5, .external_lex_state = 50}, - [673] = {.lex_state = 5, .external_lex_state = 50}, + [673] = {.lex_state = 5, .external_lex_state = 21}, [674] = {.lex_state = 5, .external_lex_state = 50}, - [675] = {.lex_state = 5, .external_lex_state = 50}, + [675] = {.lex_state = 1, .external_lex_state = 28}, [676] = {.lex_state = 5, .external_lex_state = 50}, [677] = {.lex_state = 5, .external_lex_state = 50}, [678] = {.lex_state = 5, .external_lex_state = 50}, [679] = {.lex_state = 5, .external_lex_state = 50}, [680] = {.lex_state = 5, .external_lex_state = 50}, - [681] = {.lex_state = 5, .external_lex_state = 21}, + [681] = {.lex_state = 5, .external_lex_state = 50}, [682] = {.lex_state = 5, .external_lex_state = 50}, - [683] = {.lex_state = 5, .external_lex_state = 24}, - [684] = {.lex_state = 5, .external_lex_state = 27}, - [685] = {.lex_state = 5, .external_lex_state = 21}, - [686] = {.lex_state = 5, .external_lex_state = 44}, - [687] = {.lex_state = 5, .external_lex_state = 27}, - [688] = {.lex_state = 5, .external_lex_state = 44}, - [689] = {.lex_state = 5, .external_lex_state = 20}, - [690] = {.lex_state = 5, .external_lex_state = 40}, - [691] = {.lex_state = 5, .external_lex_state = 24}, - [692] = {.lex_state = 5, .external_lex_state = 25}, + [683] = {.lex_state = 5, .external_lex_state = 27}, + [684] = {.lex_state = 5, .external_lex_state = 25}, + [685] = {.lex_state = 5, .external_lex_state = 22}, + [686] = {.lex_state = 5, .external_lex_state = 40}, + [687] = {.lex_state = 5, .external_lex_state = 23}, + [688] = {.lex_state = 5, .external_lex_state = 25}, + [689] = {.lex_state = 5, .external_lex_state = 27}, + [690] = {.lex_state = 5, .external_lex_state = 44}, + [691] = {.lex_state = 5, .external_lex_state = 44}, + [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 = 52}, - [696] = {.lex_state = 5, .external_lex_state = 25}, - [697] = {.lex_state = 10, .external_lex_state = 53}, - [698] = {.lex_state = 5, .external_lex_state = 51}, + [694] = {.lex_state = 5, .external_lex_state = 22}, + [695] = {.lex_state = 5, .external_lex_state = 23}, + [696] = {.lex_state = 5, .external_lex_state = 21}, + [697] = {.lex_state = 5, .external_lex_state = 21}, + [698] = {.lex_state = 5, .external_lex_state = 21}, [699] = {.lex_state = 5, .external_lex_state = 21}, [700] = {.lex_state = 5, .external_lex_state = 21}, - [701] = {.lex_state = 5, .external_lex_state = 28}, - [702] = {.lex_state = 5, .external_lex_state = 20}, - [703] = {.lex_state = 5, .external_lex_state = 21}, - [704] = {.lex_state = 5, .external_lex_state = 20}, - [705] = {.lex_state = 5, .external_lex_state = 20}, - [706] = {.lex_state = 5, .external_lex_state = 20}, - [707] = {.lex_state = 5, .external_lex_state = 25}, - [708] = {.lex_state = 5, .external_lex_state = 21}, - [709] = {.lex_state = 5, .external_lex_state = 20}, - [710] = {.lex_state = 5, .external_lex_state = 20}, - [711] = {.lex_state = 5, .external_lex_state = 24}, + [701] = {.lex_state = 5, .external_lex_state = 22}, + [702] = {.lex_state = 5, .external_lex_state = 52}, + [703] = {.lex_state = 5, .external_lex_state = 22}, + [704] = {.lex_state = 10, .external_lex_state = 53}, + [705] = {.lex_state = 5, .external_lex_state = 51}, + [706] = {.lex_state = 5, .external_lex_state = 28}, + [707] = {.lex_state = 5, .external_lex_state = 22}, + [708] = {.lex_state = 5, .external_lex_state = 23}, + [709] = {.lex_state = 5, .external_lex_state = 22}, + [710] = {.lex_state = 5, .external_lex_state = 22}, + [711] = {.lex_state = 5, .external_lex_state = 27}, [712] = {.lex_state = 5, .external_lex_state = 27}, [713] = {.lex_state = 5, .external_lex_state = 27}, [714] = {.lex_state = 5, .external_lex_state = 27}, - [715] = {.lex_state = 5, .external_lex_state = 24}, - [716] = {.lex_state = 5, .external_lex_state = 21}, + [715] = {.lex_state = 5, .external_lex_state = 27}, + [716] = {.lex_state = 5, .external_lex_state = 27}, [717] = {.lex_state = 5, .external_lex_state = 27}, - [718] = {.lex_state = 5, .external_lex_state = 24}, - [719] = {.lex_state = 5, .external_lex_state = 24}, - [720] = {.lex_state = 5, .external_lex_state = 24}, - [721] = {.lex_state = 5, .external_lex_state = 27}, - [722] = {.lex_state = 5, .external_lex_state = 24}, - [723] = {.lex_state = 5, .external_lex_state = 24}, - [724] = {.lex_state = 5, .external_lex_state = 24}, - [725] = {.lex_state = 5, .external_lex_state = 24}, - [726] = {.lex_state = 5, .external_lex_state = 24}, + [718] = {.lex_state = 5, .external_lex_state = 25}, + [719] = {.lex_state = 5, .external_lex_state = 27}, + [720] = {.lex_state = 5, .external_lex_state = 27}, + [721] = {.lex_state = 5, .external_lex_state = 25}, + [722] = {.lex_state = 5, .external_lex_state = 27}, + [723] = {.lex_state = 5, .external_lex_state = 27}, + [724] = {.lex_state = 5, .external_lex_state = 22}, + [725] = {.lex_state = 5, .external_lex_state = 27}, + [726] = {.lex_state = 5, .external_lex_state = 27}, [727] = {.lex_state = 5, .external_lex_state = 27}, - [728] = {.lex_state = 5, .external_lex_state = 24}, + [728] = {.lex_state = 5, .external_lex_state = 23}, [729] = {.lex_state = 5, .external_lex_state = 27}, [730] = {.lex_state = 5, .external_lex_state = 27}, [731] = {.lex_state = 5, .external_lex_state = 27}, [732] = {.lex_state = 5, .external_lex_state = 27}, - [733] = {.lex_state = 5, .external_lex_state = 24}, - [734] = {.lex_state = 5, .external_lex_state = 24}, - [735] = {.lex_state = 5, .external_lex_state = 24}, - [736] = {.lex_state = 5, .external_lex_state = 24}, - [737] = {.lex_state = 5, .external_lex_state = 27}, - [738] = {.lex_state = 5, .external_lex_state = 27}, - [739] = {.lex_state = 5, .external_lex_state = 27}, - [740] = {.lex_state = 5, .external_lex_state = 24}, + [733] = {.lex_state = 5, .external_lex_state = 27}, + [734] = {.lex_state = 5, .external_lex_state = 27}, + [735] = {.lex_state = 10, .external_lex_state = 54}, + [736] = {.lex_state = 5, .external_lex_state = 27}, + [737] = {.lex_state = 5, .external_lex_state = 25}, + [738] = {.lex_state = 5, .external_lex_state = 21}, + [739] = {.lex_state = 5, .external_lex_state = 23}, + [740] = {.lex_state = 5, .external_lex_state = 27}, [741] = {.lex_state = 5, .external_lex_state = 27}, [742] = {.lex_state = 5, .external_lex_state = 27}, [743] = {.lex_state = 5, .external_lex_state = 27}, [744] = {.lex_state = 5, .external_lex_state = 27}, - [745] = {.lex_state = 5, .external_lex_state = 25}, - [746] = {.lex_state = 5, .external_lex_state = 25}, - [747] = {.lex_state = 5, .external_lex_state = 21}, - [748] = {.lex_state = 5, .external_lex_state = 24}, + [745] = {.lex_state = 5, .external_lex_state = 27}, + [746] = {.lex_state = 5, .external_lex_state = 27}, + [747] = {.lex_state = 5, .external_lex_state = 23}, + [748] = {.lex_state = 5, .external_lex_state = 27}, [749] = {.lex_state = 5, .external_lex_state = 27}, - [750] = {.lex_state = 5, .external_lex_state = 27}, + [750] = {.lex_state = 5, .external_lex_state = 25}, [751] = {.lex_state = 5, .external_lex_state = 27}, - [752] = {.lex_state = 5, .external_lex_state = 24}, + [752] = {.lex_state = 5, .external_lex_state = 21}, [753] = {.lex_state = 5, .external_lex_state = 27}, - [754] = {.lex_state = 5, .external_lex_state = 24}, - [755] = {.lex_state = 5, .external_lex_state = 21}, + [754] = {.lex_state = 5, .external_lex_state = 21}, + [755] = {.lex_state = 5, .external_lex_state = 27}, [756] = {.lex_state = 5, .external_lex_state = 27}, - [757] = {.lex_state = 5, .external_lex_state = 27}, - [758] = {.lex_state = 5, .external_lex_state = 24}, - [759] = {.lex_state = 5, .external_lex_state = 24}, - [760] = {.lex_state = 10, .external_lex_state = 54}, - [761] = {.lex_state = 5, .external_lex_state = 27}, - [762] = {.lex_state = 5, .external_lex_state = 24}, - [763] = {.lex_state = 5, .external_lex_state = 24}, - [764] = {.lex_state = 10, .external_lex_state = 54}, - [765] = {.lex_state = 5, .external_lex_state = 24}, - [766] = {.lex_state = 5, .external_lex_state = 24}, - [767] = {.lex_state = 5, .external_lex_state = 27}, - [768] = {.lex_state = 5, .external_lex_state = 27}, - [769] = {.lex_state = 5, .external_lex_state = 24}, - [770] = {.lex_state = 5, .external_lex_state = 24}, - [771] = {.lex_state = 5, .external_lex_state = 24}, - [772] = {.lex_state = 5, .external_lex_state = 24}, - [773] = {.lex_state = 5, .external_lex_state = 27}, - [774] = {.lex_state = 5, .external_lex_state = 27}, - [775] = {.lex_state = 5, .external_lex_state = 27}, - [776] = {.lex_state = 5, .external_lex_state = 27}, - [777] = {.lex_state = 5, .external_lex_state = 27}, - [778] = {.lex_state = 10, .external_lex_state = 54}, - [779] = {.lex_state = 5, .external_lex_state = 24}, - [780] = {.lex_state = 5, .external_lex_state = 25}, - [781] = {.lex_state = 5, .external_lex_state = 24}, + [757] = {.lex_state = 5, .external_lex_state = 25}, + [758] = {.lex_state = 5, .external_lex_state = 27}, + [759] = {.lex_state = 5, .external_lex_state = 27}, + [760] = {.lex_state = 5, .external_lex_state = 25}, + [761] = {.lex_state = 5, .external_lex_state = 25}, + [762] = {.lex_state = 5, .external_lex_state = 25}, + [763] = {.lex_state = 5, .external_lex_state = 25}, + [764] = {.lex_state = 5, .external_lex_state = 27}, + [765] = {.lex_state = 5, .external_lex_state = 25}, + [766] = {.lex_state = 5, .external_lex_state = 27}, + [767] = {.lex_state = 5, .external_lex_state = 25}, + [768] = {.lex_state = 5, .external_lex_state = 25}, + [769] = {.lex_state = 5, .external_lex_state = 27}, + [770] = {.lex_state = 5, .external_lex_state = 25}, + [771] = {.lex_state = 5, .external_lex_state = 25}, + [772] = {.lex_state = 5, .external_lex_state = 27}, + [773] = {.lex_state = 5, .external_lex_state = 25}, + [774] = {.lex_state = 5, .external_lex_state = 25}, + [775] = {.lex_state = 5, .external_lex_state = 22}, + [776] = {.lex_state = 5, .external_lex_state = 25}, + [777] = {.lex_state = 5, .external_lex_state = 25}, + [778] = {.lex_state = 5, .external_lex_state = 22}, + [779] = {.lex_state = 5, .external_lex_state = 27}, + [780] = {.lex_state = 5, .external_lex_state = 27}, + [781] = {.lex_state = 5, .external_lex_state = 27}, [782] = {.lex_state = 5, .external_lex_state = 27}, [783] = {.lex_state = 5, .external_lex_state = 27}, - [784] = {.lex_state = 5, .external_lex_state = 20}, + [784] = {.lex_state = 5, .external_lex_state = 27}, [785] = {.lex_state = 5, .external_lex_state = 27}, - [786] = {.lex_state = 5, .external_lex_state = 20}, + [786] = {.lex_state = 5, .external_lex_state = 27}, [787] = {.lex_state = 5, .external_lex_state = 27}, [788] = {.lex_state = 5, .external_lex_state = 27}, [789] = {.lex_state = 5, .external_lex_state = 27}, [790] = {.lex_state = 5, .external_lex_state = 27}, [791] = {.lex_state = 5, .external_lex_state = 27}, [792] = {.lex_state = 5, .external_lex_state = 27}, - [793] = {.lex_state = 5, .external_lex_state = 24}, - [794] = {.lex_state = 5, .external_lex_state = 24}, - [795] = {.lex_state = 5, .external_lex_state = 24}, - [796] = {.lex_state = 5, .external_lex_state = 24}, - [797] = {.lex_state = 5, .external_lex_state = 24}, - [798] = {.lex_state = 5, .external_lex_state = 24}, - [799] = {.lex_state = 5, .external_lex_state = 27}, - [800] = {.lex_state = 5, .external_lex_state = 24}, - [801] = {.lex_state = 5, .external_lex_state = 27}, - [802] = {.lex_state = 5, .external_lex_state = 27}, - [803] = {.lex_state = 5, .external_lex_state = 27}, - [804] = {.lex_state = 5, .external_lex_state = 24}, - [805] = {.lex_state = 5, .external_lex_state = 27}, + [793] = {.lex_state = 5, .external_lex_state = 27}, + [794] = {.lex_state = 5, .external_lex_state = 40}, + [795] = {.lex_state = 5, .external_lex_state = 25}, + [796] = {.lex_state = 5, .external_lex_state = 27}, + [797] = {.lex_state = 10, .external_lex_state = 54}, + [798] = {.lex_state = 5, .external_lex_state = 25}, + [799] = {.lex_state = 5, .external_lex_state = 25}, + [800] = {.lex_state = 5, .external_lex_state = 25}, + [801] = {.lex_state = 5, .external_lex_state = 25}, + [802] = {.lex_state = 5, .external_lex_state = 25}, + [803] = {.lex_state = 5, .external_lex_state = 25}, + [804] = {.lex_state = 5, .external_lex_state = 27}, + [805] = {.lex_state = 5, .external_lex_state = 25}, [806] = {.lex_state = 5, .external_lex_state = 27}, - [807] = {.lex_state = 5, .external_lex_state = 24}, - [808] = {.lex_state = 5, .external_lex_state = 27}, - [809] = {.lex_state = 5, .external_lex_state = 27}, - [810] = {.lex_state = 5, .external_lex_state = 24}, + [807] = {.lex_state = 5, .external_lex_state = 25}, + [808] = {.lex_state = 5, .external_lex_state = 25}, + [809] = {.lex_state = 5, .external_lex_state = 25}, + [810] = {.lex_state = 5, .external_lex_state = 27}, [811] = {.lex_state = 5, .external_lex_state = 27}, - [812] = {.lex_state = 5, .external_lex_state = 24}, + [812] = {.lex_state = 5, .external_lex_state = 25}, [813] = {.lex_state = 5, .external_lex_state = 27}, [814] = {.lex_state = 5, .external_lex_state = 25}, - [815] = {.lex_state = 5, .external_lex_state = 27}, + [815] = {.lex_state = 5, .external_lex_state = 25}, [816] = {.lex_state = 5, .external_lex_state = 27}, - [817] = {.lex_state = 5, .external_lex_state = 27}, - [818] = {.lex_state = 5, .external_lex_state = 27}, - [819] = {.lex_state = 5, .external_lex_state = 27}, + [817] = {.lex_state = 5, .external_lex_state = 25}, + [818] = {.lex_state = 5, .external_lex_state = 25}, + [819] = {.lex_state = 5, .external_lex_state = 23}, [820] = {.lex_state = 5, .external_lex_state = 27}, - [821] = {.lex_state = 5, .external_lex_state = 24}, - [822] = {.lex_state = 5, .external_lex_state = 27}, - [823] = {.lex_state = 5, .external_lex_state = 24}, - [824] = {.lex_state = 5, .external_lex_state = 24}, - [825] = {.lex_state = 5, .external_lex_state = 24}, - [826] = {.lex_state = 5, .external_lex_state = 24}, - [827] = {.lex_state = 5, .external_lex_state = 27}, - [828] = {.lex_state = 5, .external_lex_state = 27}, - [829] = {.lex_state = 5, .external_lex_state = 27}, - [830] = {.lex_state = 5, .external_lex_state = 40}, - [831] = {.lex_state = 5, .external_lex_state = 27}, - [832] = {.lex_state = 5, .external_lex_state = 25}, - [833] = {.lex_state = 5, .external_lex_state = 25}, - [834] = {.lex_state = 5, .external_lex_state = 20}, - [835] = {.lex_state = 5, .external_lex_state = 24}, - [836] = {.lex_state = 5, .external_lex_state = 24}, - [837] = {.lex_state = 5, .external_lex_state = 28}, - [838] = {.lex_state = 5, .external_lex_state = 24}, - [839] = {.lex_state = 5, .external_lex_state = 24}, - [840] = {.lex_state = 5, .external_lex_state = 24}, - [841] = {.lex_state = 5, .external_lex_state = 24}, - [842] = {.lex_state = 5, .external_lex_state = 24}, - [843] = {.lex_state = 5, .external_lex_state = 24}, - [844] = {.lex_state = 5, .external_lex_state = 27}, - [845] = {.lex_state = 5, .external_lex_state = 24}, - [846] = {.lex_state = 5, .external_lex_state = 24}, - [847] = {.lex_state = 5, .external_lex_state = 24}, - [848] = {.lex_state = 5, .external_lex_state = 24}, - [849] = {.lex_state = 5, .external_lex_state = 24}, - [850] = {.lex_state = 5, .external_lex_state = 24}, - [851] = {.lex_state = 5, .external_lex_state = 24}, - [852] = {.lex_state = 10, .external_lex_state = 54}, - [853] = {.lex_state = 5, .external_lex_state = 27}, - [854] = {.lex_state = 5, .external_lex_state = 27}, - [855] = {.lex_state = 5, .external_lex_state = 24}, - [856] = {.lex_state = 5, .external_lex_state = 24}, - [857] = {.lex_state = 5, .external_lex_state = 27}, - [858] = {.lex_state = 5, .external_lex_state = 24}, - [859] = {.lex_state = 5, .external_lex_state = 24}, - [860] = {.lex_state = 5, .external_lex_state = 27}, - [861] = {.lex_state = 5, .external_lex_state = 24}, + [821] = {.lex_state = 10, .external_lex_state = 54}, + [822] = {.lex_state = 5, .external_lex_state = 25}, + [823] = {.lex_state = 5, .external_lex_state = 25}, + [824] = {.lex_state = 5, .external_lex_state = 25}, + [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 = 25}, + [831] = {.lex_state = 5, .external_lex_state = 25}, + [832] = {.lex_state = 5, .external_lex_state = 23}, + [833] = {.lex_state = 10, .external_lex_state = 54}, + [834] = {.lex_state = 5, .external_lex_state = 25}, + [835] = {.lex_state = 5, .external_lex_state = 25}, + [836] = {.lex_state = 5, .external_lex_state = 27}, + [837] = {.lex_state = 5, .external_lex_state = 27}, + [838] = {.lex_state = 5, .external_lex_state = 23}, + [839] = {.lex_state = 5, .external_lex_state = 25}, + [840] = {.lex_state = 5, .external_lex_state = 25}, + [841] = {.lex_state = 5, .external_lex_state = 28}, + [842] = {.lex_state = 5, .external_lex_state = 27}, + [843] = {.lex_state = 5, .external_lex_state = 27}, + [844] = {.lex_state = 5, .external_lex_state = 25}, + [845] = {.lex_state = 5, .external_lex_state = 27}, + [846] = {.lex_state = 5, .external_lex_state = 25}, + [847] = {.lex_state = 5, .external_lex_state = 25}, + [848] = {.lex_state = 5, .external_lex_state = 25}, + [849] = {.lex_state = 5, .external_lex_state = 25}, + [850] = {.lex_state = 5, .external_lex_state = 25}, + [851] = {.lex_state = 5, .external_lex_state = 25}, + [852] = {.lex_state = 5, .external_lex_state = 25}, + [853] = {.lex_state = 5, .external_lex_state = 25}, + [854] = {.lex_state = 5, .external_lex_state = 25}, + [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 = 25}, + [860] = {.lex_state = 5, .external_lex_state = 25}, + [861] = {.lex_state = 5, .external_lex_state = 25}, [862] = {.lex_state = 5, .external_lex_state = 27}, - [863] = {.lex_state = 5, .external_lex_state = 24}, - [864] = {.lex_state = 5, .external_lex_state = 27}, - [865] = {.lex_state = 5, .external_lex_state = 27}, - [866] = {.lex_state = 5, .external_lex_state = 24}, + [863] = {.lex_state = 5, .external_lex_state = 25}, + [864] = {.lex_state = 5, .external_lex_state = 25}, + [865] = {.lex_state = 5, .external_lex_state = 25}, + [866] = {.lex_state = 5, .external_lex_state = 25}, [867] = {.lex_state = 5, .external_lex_state = 28}, [868] = {.lex_state = 5, .external_lex_state = 28}, - [869] = {.lex_state = 5, .external_lex_state = 28}, - [870] = {.lex_state = 10, .external_lex_state = 28}, + [869] = {.lex_state = 6, .external_lex_state = 36}, + [870] = {.lex_state = 5, .external_lex_state = 28}, [871] = {.lex_state = 5, .external_lex_state = 28}, [872] = {.lex_state = 10, .external_lex_state = 28}, [873] = {.lex_state = 5, .external_lex_state = 28}, [874] = {.lex_state = 5, .external_lex_state = 28}, - [875] = {.lex_state = 5, .external_lex_state = 28}, - [876] = {.lex_state = 10, .external_lex_state = 28}, - [877] = {.lex_state = 5, .external_lex_state = 24}, - [878] = {.lex_state = 10, .external_lex_state = 28}, + [875] = {.lex_state = 5, .external_lex_state = 21}, + [876] = {.lex_state = 5, .external_lex_state = 28}, + [877] = {.lex_state = 5, .external_lex_state = 28}, + [878] = {.lex_state = 5, .external_lex_state = 28}, [879] = {.lex_state = 5, .external_lex_state = 28}, - [880] = {.lex_state = 5, .external_lex_state = 27}, - [881] = {.lex_state = 5, .external_lex_state = 24}, - [882] = {.lex_state = 10, .external_lex_state = 49}, + [880] = {.lex_state = 5, .external_lex_state = 28}, + [881] = {.lex_state = 5, .external_lex_state = 28}, + [882] = {.lex_state = 5, .external_lex_state = 28}, [883] = {.lex_state = 5, .external_lex_state = 28}, - [884] = {.lex_state = 5, .external_lex_state = 28}, - [885] = {.lex_state = 5, .external_lex_state = 24}, - [886] = {.lex_state = 5, .external_lex_state = 24}, - [887] = {.lex_state = 5, .external_lex_state = 28}, - [888] = {.lex_state = 5, .external_lex_state = 28}, - [889] = {.lex_state = 5, .external_lex_state = 28}, - [890] = {.lex_state = 10, .external_lex_state = 28}, - [891] = {.lex_state = 5, .external_lex_state = 28}, - [892] = {.lex_state = 5, .external_lex_state = 28}, - [893] = {.lex_state = 5, .external_lex_state = 28}, - [894] = {.lex_state = 5, .external_lex_state = 24}, - [895] = {.lex_state = 5, .external_lex_state = 24}, + [884] = {.lex_state = 5, .external_lex_state = 25}, + [885] = {.lex_state = 10, .external_lex_state = 28}, + [886] = {.lex_state = 7}, + [887] = {.lex_state = 7}, + [888] = {.lex_state = 7}, + [889] = {.lex_state = 7}, + [890] = {.lex_state = 7}, + [891] = {.lex_state = 7}, + [892] = {.lex_state = 7}, + [893] = {.lex_state = 5, .external_lex_state = 25}, + [894] = {.lex_state = 5, .external_lex_state = 25}, + [895] = {.lex_state = 7}, [896] = {.lex_state = 5, .external_lex_state = 28}, [897] = {.lex_state = 5, .external_lex_state = 28}, [898] = {.lex_state = 5, .external_lex_state = 28}, - [899] = {.lex_state = 6, .external_lex_state = 36}, - [900] = {.lex_state = 5, .external_lex_state = 24}, + [899] = {.lex_state = 5, .external_lex_state = 25}, + [900] = {.lex_state = 5, .external_lex_state = 28}, [901] = {.lex_state = 5, .external_lex_state = 28}, - [902] = {.lex_state = 5, .external_lex_state = 28}, - [903] = {.lex_state = 5, .external_lex_state = 28}, - [904] = {.lex_state = 5, .external_lex_state = 27}, - [905] = {.lex_state = 5, .external_lex_state = 28}, - [906] = {.lex_state = 5, .external_lex_state = 28}, - [907] = {.lex_state = 5, .external_lex_state = 28}, + [902] = {.lex_state = 10, .external_lex_state = 28}, + [903] = {.lex_state = 5, .external_lex_state = 25}, + [904] = {.lex_state = 5, .external_lex_state = 28}, + [905] = {.lex_state = 5, .external_lex_state = 25}, + [906] = {.lex_state = 7}, + [907] = {.lex_state = 7}, [908] = {.lex_state = 5, .external_lex_state = 28}, [909] = {.lex_state = 5, .external_lex_state = 28}, - [910] = {.lex_state = 10, .external_lex_state = 28}, - [911] = {.lex_state = 5, .external_lex_state = 28}, - [912] = {.lex_state = 5, .external_lex_state = 28}, - [913] = {.lex_state = 5, .external_lex_state = 21}, - [914] = {.lex_state = 5, .external_lex_state = 28}, - [915] = {.lex_state = 10, .external_lex_state = 28}, + [910] = {.lex_state = 5, .external_lex_state = 25}, + [911] = {.lex_state = 7}, + [912] = {.lex_state = 7}, + [913] = {.lex_state = 7}, + [914] = {.lex_state = 5, .external_lex_state = 25}, + [915] = {.lex_state = 5, .external_lex_state = 27}, [916] = {.lex_state = 5, .external_lex_state = 28}, [917] = {.lex_state = 5, .external_lex_state = 28}, - [918] = {.lex_state = 5, .external_lex_state = 27}, + [918] = {.lex_state = 5, .external_lex_state = 28}, [919] = {.lex_state = 5, .external_lex_state = 28}, - [920] = {.lex_state = 5, .external_lex_state = 27}, - [921] = {.lex_state = 5, .external_lex_state = 27}, + [920] = {.lex_state = 5, .external_lex_state = 28}, + [921] = {.lex_state = 5, .external_lex_state = 28}, [922] = {.lex_state = 5, .external_lex_state = 28}, - [923] = {.lex_state = 10, .external_lex_state = 28}, - [924] = {.lex_state = 5, .external_lex_state = 27}, - [925] = {.lex_state = 5, .external_lex_state = 28}, - [926] = {.lex_state = 5, .external_lex_state = 28}, - [927] = {.lex_state = 5, .external_lex_state = 24}, - [928] = {.lex_state = 5, .external_lex_state = 28}, + [923] = {.lex_state = 5, .external_lex_state = 28}, + [924] = {.lex_state = 5, .external_lex_state = 28}, + [925] = {.lex_state = 7}, + [926] = {.lex_state = 7}, + [927] = {.lex_state = 7}, + [928] = {.lex_state = 5, .external_lex_state = 23}, [929] = {.lex_state = 5, .external_lex_state = 28}, - [930] = {.lex_state = 5, .external_lex_state = 24}, + [930] = {.lex_state = 5, .external_lex_state = 28}, [931] = {.lex_state = 5, .external_lex_state = 28}, - [932] = {.lex_state = 5, .external_lex_state = 24}, + [932] = {.lex_state = 5, .external_lex_state = 28}, [933] = {.lex_state = 5, .external_lex_state = 28}, - [934] = {.lex_state = 5, .external_lex_state = 28}, + [934] = {.lex_state = 7}, [935] = {.lex_state = 5, .external_lex_state = 28}, - [936] = {.lex_state = 5, .external_lex_state = 24}, + [936] = {.lex_state = 5, .external_lex_state = 28}, [937] = {.lex_state = 5, .external_lex_state = 28}, - [938] = {.lex_state = 5, .external_lex_state = 24}, - [939] = {.lex_state = 10, .external_lex_state = 28}, - [940] = {.lex_state = 5, .external_lex_state = 25}, + [938] = {.lex_state = 5, .external_lex_state = 28}, + [939] = {.lex_state = 7}, + [940] = {.lex_state = 7}, [941] = {.lex_state = 5, .external_lex_state = 28}, - [942] = {.lex_state = 5, .external_lex_state = 28}, - [943] = {.lex_state = 5, .external_lex_state = 28}, + [942] = {.lex_state = 6, .external_lex_state = 36}, + [943] = {.lex_state = 7}, [944] = {.lex_state = 5, .external_lex_state = 28}, - [945] = {.lex_state = 5, .external_lex_state = 28}, + [945] = {.lex_state = 7}, [946] = {.lex_state = 5, .external_lex_state = 28}, - [947] = {.lex_state = 10, .external_lex_state = 28}, + [947] = {.lex_state = 7}, [948] = {.lex_state = 5, .external_lex_state = 28}, - [949] = {.lex_state = 5, .external_lex_state = 27}, - [950] = {.lex_state = 5, .external_lex_state = 27}, - [951] = {.lex_state = 5, .external_lex_state = 27}, + [949] = {.lex_state = 5, .external_lex_state = 28}, + [950] = {.lex_state = 10, .external_lex_state = 28}, + [951] = {.lex_state = 5, .external_lex_state = 28}, [952] = {.lex_state = 5, .external_lex_state = 28}, [953] = {.lex_state = 5, .external_lex_state = 28}, [954] = {.lex_state = 5, .external_lex_state = 28}, - [955] = {.lex_state = 5, .external_lex_state = 27}, - [956] = {.lex_state = 5, .external_lex_state = 28}, - [957] = {.lex_state = 5, .external_lex_state = 28}, + [955] = {.lex_state = 5, .external_lex_state = 25}, + [956] = {.lex_state = 7}, + [957] = {.lex_state = 10, .external_lex_state = 28}, [958] = {.lex_state = 5, .external_lex_state = 28}, - [959] = {.lex_state = 5, .external_lex_state = 27}, - [960] = {.lex_state = 5, .external_lex_state = 28}, - [961] = {.lex_state = 5, .external_lex_state = 28}, + [959] = {.lex_state = 5, .external_lex_state = 28}, + [960] = {.lex_state = 7}, + [961] = {.lex_state = 7}, [962] = {.lex_state = 5, .external_lex_state = 28}, [963] = {.lex_state = 5, .external_lex_state = 28}, [964] = {.lex_state = 5, .external_lex_state = 28}, - [965] = {.lex_state = 5, .external_lex_state = 28}, + [965] = {.lex_state = 10, .external_lex_state = 28}, [966] = {.lex_state = 5, .external_lex_state = 27}, - [967] = {.lex_state = 5, .external_lex_state = 28}, + [967] = {.lex_state = 7}, [968] = {.lex_state = 5, .external_lex_state = 28}, - [969] = {.lex_state = 10, .external_lex_state = 28}, - [970] = {.lex_state = 5, .external_lex_state = 20}, - [971] = {.lex_state = 5, .external_lex_state = 28}, - [972] = {.lex_state = 5, .external_lex_state = 28}, - [973] = {.lex_state = 5, .external_lex_state = 28}, - [974] = {.lex_state = 5, .external_lex_state = 28}, - [975] = {.lex_state = 5, .external_lex_state = 27}, - [976] = {.lex_state = 5, .external_lex_state = 28}, - [977] = {.lex_state = 5, .external_lex_state = 28}, - [978] = {.lex_state = 5, .external_lex_state = 28}, - [979] = {.lex_state = 5, .external_lex_state = 24}, - [980] = {.lex_state = 5, .external_lex_state = 28}, + [969] = {.lex_state = 5, .external_lex_state = 28}, + [970] = {.lex_state = 5, .external_lex_state = 28}, + [971] = {.lex_state = 10, .external_lex_state = 28}, + [972] = {.lex_state = 10, .external_lex_state = 28}, + [973] = {.lex_state = 7}, + [974] = {.lex_state = 10, .external_lex_state = 49}, + [975] = {.lex_state = 5, .external_lex_state = 25}, + [976] = {.lex_state = 5, .external_lex_state = 22}, + [977] = {.lex_state = 7}, + [978] = {.lex_state = 7}, + [979] = {.lex_state = 7}, + [980] = {.lex_state = 5, .external_lex_state = 27}, [981] = {.lex_state = 5, .external_lex_state = 28}, - [982] = {.lex_state = 6, .external_lex_state = 36}, - [983] = {.lex_state = 5, .external_lex_state = 28}, - [984] = {.lex_state = 5, .external_lex_state = 28}, - [985] = {.lex_state = 5, .external_lex_state = 28}, + [982] = {.lex_state = 5, .external_lex_state = 28}, + [983] = {.lex_state = 7}, + [984] = {.lex_state = 7}, + [985] = {.lex_state = 5, .external_lex_state = 25}, [986] = {.lex_state = 5, .external_lex_state = 28}, - [987] = {.lex_state = 5, .external_lex_state = 28}, - [988] = {.lex_state = 13, .external_lex_state = 55}, - [989] = {.lex_state = 7}, - [990] = {.lex_state = 13, .external_lex_state = 55}, + [987] = {.lex_state = 5, .external_lex_state = 27}, + [988] = {.lex_state = 10, .external_lex_state = 28}, + [989] = {.lex_state = 5, .external_lex_state = 28}, + [990] = {.lex_state = 5, .external_lex_state = 28}, [991] = {.lex_state = 7}, - [992] = {.lex_state = 7}, + [992] = {.lex_state = 5, .external_lex_state = 28}, [993] = {.lex_state = 7}, [994] = {.lex_state = 7}, [995] = {.lex_state = 7}, [996] = {.lex_state = 7}, [997] = {.lex_state = 7}, - [998] = {.lex_state = 13, .external_lex_state = 55}, - [999] = {.lex_state = 13, .external_lex_state = 55}, - [1000] = {.lex_state = 13, .external_lex_state = 55}, - [1001] = {.lex_state = 7}, - [1002] = {.lex_state = 13, .external_lex_state = 55}, + [998] = {.lex_state = 5, .external_lex_state = 28}, + [999] = {.lex_state = 5, .external_lex_state = 28}, + [1000] = {.lex_state = 5, .external_lex_state = 28}, + [1001] = {.lex_state = 5, .external_lex_state = 27}, + [1002] = {.lex_state = 5, .external_lex_state = 28}, [1003] = {.lex_state = 7}, [1004] = {.lex_state = 5, .external_lex_state = 28}, [1005] = {.lex_state = 5, .external_lex_state = 28}, [1006] = {.lex_state = 7}, - [1007] = {.lex_state = 7}, - [1008] = {.lex_state = 13, .external_lex_state = 55}, - [1009] = {.lex_state = 7}, - [1010] = {.lex_state = 7}, - [1011] = {.lex_state = 7}, - [1012] = {.lex_state = 7}, - [1013] = {.lex_state = 7}, - [1014] = {.lex_state = 7}, - [1015] = {.lex_state = 5, .external_lex_state = 24}, - [1016] = {.lex_state = 5, .external_lex_state = 24}, - [1017] = {.lex_state = 5, .external_lex_state = 27}, - [1018] = {.lex_state = 5, .external_lex_state = 27}, - [1019] = {.lex_state = 5, .external_lex_state = 27}, - [1020] = {.lex_state = 5, .external_lex_state = 27}, + [1007] = {.lex_state = 5, .external_lex_state = 28}, + [1008] = {.lex_state = 5, .external_lex_state = 27}, + [1009] = {.lex_state = 10, .external_lex_state = 28}, + [1010] = {.lex_state = 5, .external_lex_state = 28}, + [1011] = {.lex_state = 5, .external_lex_state = 27}, + [1012] = {.lex_state = 5, .external_lex_state = 27}, + [1013] = {.lex_state = 5, .external_lex_state = 27}, + [1014] = {.lex_state = 5, .external_lex_state = 27}, + [1015] = {.lex_state = 5, .external_lex_state = 27}, + [1016] = {.lex_state = 5, .external_lex_state = 28}, + [1017] = {.lex_state = 5, .external_lex_state = 28}, + [1018] = {.lex_state = 5, .external_lex_state = 25}, + [1019] = {.lex_state = 5, .external_lex_state = 28}, + [1020] = {.lex_state = 5, .external_lex_state = 25}, [1021] = {.lex_state = 5, .external_lex_state = 27}, - [1022] = {.lex_state = 7}, - [1023] = {.lex_state = 7}, - [1024] = {.lex_state = 7}, - [1025] = {.lex_state = 7}, - [1026] = {.lex_state = 13, .external_lex_state = 55}, - [1027] = {.lex_state = 7}, - [1028] = {.lex_state = 7}, - [1029] = {.lex_state = 7}, - [1030] = {.lex_state = 13, .external_lex_state = 55}, - [1031] = {.lex_state = 7}, - [1032] = {.lex_state = 13, .external_lex_state = 55}, - [1033] = {.lex_state = 13, .external_lex_state = 55}, - [1034] = {.lex_state = 7}, - [1035] = {.lex_state = 5, .external_lex_state = 24}, - [1036] = {.lex_state = 13, .external_lex_state = 55}, - [1037] = {.lex_state = 7}, - [1038] = {.lex_state = 10, .external_lex_state = 28}, - [1039] = {.lex_state = 5, .external_lex_state = 28}, + [1022] = {.lex_state = 10, .external_lex_state = 28}, + [1023] = {.lex_state = 5, .external_lex_state = 28}, + [1024] = {.lex_state = 5, .external_lex_state = 27}, + [1025] = {.lex_state = 5, .external_lex_state = 28}, + [1026] = {.lex_state = 5, .external_lex_state = 28}, + [1027] = {.lex_state = 5, .external_lex_state = 28}, + [1028] = {.lex_state = 13, .external_lex_state = 55}, + [1029] = {.lex_state = 5, .external_lex_state = 27}, + [1030] = {.lex_state = 7}, + [1031] = {.lex_state = 5, .external_lex_state = 27}, + [1032] = {.lex_state = 10, .external_lex_state = 50}, + [1033] = {.lex_state = 7}, + [1034] = {.lex_state = 5, .external_lex_state = 25}, + [1035] = {.lex_state = 10, .external_lex_state = 50}, + [1036] = {.lex_state = 5, .external_lex_state = 27}, + [1037] = {.lex_state = 13, .external_lex_state = 55}, + [1038] = {.lex_state = 5, .external_lex_state = 27}, + [1039] = {.lex_state = 5, .external_lex_state = 27}, [1040] = {.lex_state = 5, .external_lex_state = 28}, - [1041] = {.lex_state = 7}, - [1042] = {.lex_state = 5, .external_lex_state = 28}, + [1041] = {.lex_state = 5, .external_lex_state = 27}, + [1042] = {.lex_state = 13, .external_lex_state = 55}, [1043] = {.lex_state = 7}, - [1044] = {.lex_state = 13, .external_lex_state = 55}, - [1045] = {.lex_state = 13, .external_lex_state = 55}, - [1046] = {.lex_state = 5, .external_lex_state = 27}, - [1047] = {.lex_state = 5, .external_lex_state = 27}, - [1048] = {.lex_state = 5, .external_lex_state = 28}, - [1049] = {.lex_state = 5, .external_lex_state = 27}, - [1050] = {.lex_state = 7}, - [1051] = {.lex_state = 5, .external_lex_state = 24}, - [1052] = {.lex_state = 7}, - [1053] = {.lex_state = 5, .external_lex_state = 28}, - [1054] = {.lex_state = 5, .external_lex_state = 24}, + [1044] = {.lex_state = 5, .external_lex_state = 25}, + [1045] = {.lex_state = 10, .external_lex_state = 50}, + [1046] = {.lex_state = 7}, + [1047] = {.lex_state = 10, .external_lex_state = 50}, + [1048] = {.lex_state = 13, .external_lex_state = 55}, + [1049] = {.lex_state = 13, .external_lex_state = 55}, + [1050] = {.lex_state = 13, .external_lex_state = 55}, + [1051] = {.lex_state = 5, .external_lex_state = 27}, + [1052] = {.lex_state = 5, .external_lex_state = 27}, + [1053] = {.lex_state = 13, .external_lex_state = 55}, + [1054] = {.lex_state = 7}, [1055] = {.lex_state = 13, .external_lex_state = 55}, - [1056] = {.lex_state = 5, .external_lex_state = 24}, - [1057] = {.lex_state = 7}, - [1058] = {.lex_state = 7}, - [1059] = {.lex_state = 5, .external_lex_state = 24}, + [1056] = {.lex_state = 7}, + [1057] = {.lex_state = 10, .external_lex_state = 28}, + [1058] = {.lex_state = 5, .external_lex_state = 28}, + [1059] = {.lex_state = 13, .external_lex_state = 55}, [1060] = {.lex_state = 5, .external_lex_state = 27}, - [1061] = {.lex_state = 5, .external_lex_state = 27}, + [1061] = {.lex_state = 7}, [1062] = {.lex_state = 13, .external_lex_state = 55}, - [1063] = {.lex_state = 5, .external_lex_state = 28}, - [1064] = {.lex_state = 5, .external_lex_state = 28}, - [1065] = {.lex_state = 13, .external_lex_state = 55}, - [1066] = {.lex_state = 5, .external_lex_state = 24}, - [1067] = {.lex_state = 7}, - [1068] = {.lex_state = 13, .external_lex_state = 55}, - [1069] = {.lex_state = 7}, + [1063] = {.lex_state = 5, .external_lex_state = 25}, + [1064] = {.lex_state = 5, .external_lex_state = 25}, + [1065] = {.lex_state = 5, .external_lex_state = 25}, + [1066] = {.lex_state = 5, .external_lex_state = 28}, + [1067] = {.lex_state = 5, .external_lex_state = 28}, + [1068] = {.lex_state = 5, .external_lex_state = 28}, + [1069] = {.lex_state = 5, .external_lex_state = 25}, [1070] = {.lex_state = 13, .external_lex_state = 55}, - [1071] = {.lex_state = 5, .external_lex_state = 27}, - [1072] = {.lex_state = 13, .external_lex_state = 55}, - [1073] = {.lex_state = 7}, + [1071] = {.lex_state = 5, .external_lex_state = 25}, + [1072] = {.lex_state = 5, .external_lex_state = 25}, + [1073] = {.lex_state = 5, .external_lex_state = 27}, [1074] = {.lex_state = 7}, - [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 7}, + [1075] = {.lex_state = 13, .external_lex_state = 55}, + [1076] = {.lex_state = 13, .external_lex_state = 55}, [1077] = {.lex_state = 7}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 7}, - [1080] = {.lex_state = 7}, - [1081] = {.lex_state = 7}, - [1082] = {.lex_state = 5, .external_lex_state = 24}, - [1083] = {.lex_state = 5, .external_lex_state = 24}, - [1084] = {.lex_state = 7}, - [1085] = {.lex_state = 5, .external_lex_state = 24}, - [1086] = {.lex_state = 7}, - [1087] = {.lex_state = 13, .external_lex_state = 55}, - [1088] = {.lex_state = 7}, - [1089] = {.lex_state = 13, .external_lex_state = 55}, - [1090] = {.lex_state = 10, .external_lex_state = 50}, + [1078] = {.lex_state = 13, .external_lex_state = 55}, + [1079] = {.lex_state = 13, .external_lex_state = 55}, + [1080] = {.lex_state = 5, .external_lex_state = 25}, + [1081] = {.lex_state = 5, .external_lex_state = 27}, + [1082] = {.lex_state = 7}, + [1083] = {.lex_state = 13, .external_lex_state = 55}, + [1084] = {.lex_state = 5, .external_lex_state = 28}, + [1085] = {.lex_state = 5, .external_lex_state = 28}, + [1086] = {.lex_state = 13, .external_lex_state = 55}, + [1087] = {.lex_state = 5, .external_lex_state = 28}, + [1088] = {.lex_state = 13, .external_lex_state = 55}, + [1089] = {.lex_state = 5, .external_lex_state = 25}, + [1090] = {.lex_state = 13, .external_lex_state = 55}, [1091] = {.lex_state = 13, .external_lex_state = 55}, [1092] = {.lex_state = 13, .external_lex_state = 55}, - [1093] = {.lex_state = 10, .external_lex_state = 50}, - [1094] = {.lex_state = 10, .external_lex_state = 50}, - [1095] = {.lex_state = 13, .external_lex_state = 55}, + [1093] = {.lex_state = 13, .external_lex_state = 55}, + [1094] = {.lex_state = 5, .external_lex_state = 25}, + [1095] = {.lex_state = 5, .external_lex_state = 28}, [1096] = {.lex_state = 13, .external_lex_state = 55}, - [1097] = {.lex_state = 7}, - [1098] = {.lex_state = 7}, - [1099] = {.lex_state = 10, .external_lex_state = 50}, + [1097] = {.lex_state = 13, .external_lex_state = 55}, + [1098] = {.lex_state = 13, .external_lex_state = 55}, + [1099] = {.lex_state = 13, .external_lex_state = 55}, [1100] = {.lex_state = 7}, [1101] = {.lex_state = 7}, - [1102] = {.lex_state = 10, .external_lex_state = 56}, - [1103] = {.lex_state = 7, .external_lex_state = 57}, - [1104] = {.lex_state = 7, .external_lex_state = 57}, - [1105] = {.lex_state = 7, .external_lex_state = 58}, - [1106] = {.lex_state = 15, .external_lex_state = 36}, - [1107] = {.lex_state = 15, .external_lex_state = 36}, - [1108] = {.lex_state = 16, .external_lex_state = 36}, - [1109] = {.lex_state = 6, .external_lex_state = 38}, + [1102] = {.lex_state = 7, .external_lex_state = 56}, + [1103] = {.lex_state = 10, .external_lex_state = 57}, + [1104] = {.lex_state = 7, .external_lex_state = 56}, + [1105] = {.lex_state = 7}, + [1106] = {.lex_state = 6, .external_lex_state = 38}, + [1107] = {.lex_state = 16, .external_lex_state = 36}, + [1108] = {.lex_state = 6, .external_lex_state = 38}, + [1109] = {.lex_state = 7}, [1110] = {.lex_state = 16, .external_lex_state = 36}, - [1111] = {.lex_state = 7}, - [1112] = {.lex_state = 6, .external_lex_state = 38}, - [1113] = {.lex_state = 13, .external_lex_state = 59}, + [1111] = {.lex_state = 15, .external_lex_state = 36}, + [1112] = {.lex_state = 15, .external_lex_state = 36}, + [1113] = {.lex_state = 7, .external_lex_state = 58}, [1114] = {.lex_state = 13, .external_lex_state = 59}, [1115] = {.lex_state = 13, .external_lex_state = 60}, - [1116] = {.lex_state = 13, .external_lex_state = 59}, - [1117] = {.lex_state = 13, .external_lex_state = 59}, - [1118] = {.lex_state = 13, .external_lex_state = 59}, + [1116] = {.lex_state = 10, .external_lex_state = 40}, + [1117] = {.lex_state = 13, .external_lex_state = 60}, + [1118] = {.lex_state = 13, .external_lex_state = 60}, [1119] = {.lex_state = 13, .external_lex_state = 60}, - [1120] = {.lex_state = 13, .external_lex_state = 59}, + [1120] = {.lex_state = 13, .external_lex_state = 60}, [1121] = {.lex_state = 13, .external_lex_state = 60}, - [1122] = {.lex_state = 13, .external_lex_state = 60}, - [1123] = {.lex_state = 13, .external_lex_state = 60}, - [1124] = {.lex_state = 13, .external_lex_state = 60}, - [1125] = {.lex_state = 13, .external_lex_state = 59}, - [1126] = {.lex_state = 7}, + [1122] = {.lex_state = 13, .external_lex_state = 59}, + [1123] = {.lex_state = 13, .external_lex_state = 59}, + [1124] = {.lex_state = 13, .external_lex_state = 59}, + [1125] = {.lex_state = 13, .external_lex_state = 60}, + [1126] = {.lex_state = 13, .external_lex_state = 59}, [1127] = {.lex_state = 13, .external_lex_state = 59}, - [1128] = {.lex_state = 13, .external_lex_state = 59}, - [1129] = {.lex_state = 13, .external_lex_state = 59}, - [1130] = {.lex_state = 13, .external_lex_state = 60}, - [1131] = {.lex_state = 13, .external_lex_state = 60}, + [1128] = {.lex_state = 13, .external_lex_state = 60}, + [1129] = {.lex_state = 13, .external_lex_state = 60}, + [1130] = {.lex_state = 13, .external_lex_state = 59}, + [1131] = {.lex_state = 7, .external_lex_state = 61}, [1132] = {.lex_state = 13, .external_lex_state = 60}, - [1133] = {.lex_state = 13, .external_lex_state = 59}, + [1133] = {.lex_state = 13, .external_lex_state = 60}, [1134] = {.lex_state = 13, .external_lex_state = 59}, [1135] = {.lex_state = 13, .external_lex_state = 59}, [1136] = {.lex_state = 13, .external_lex_state = 60}, [1137] = {.lex_state = 13, .external_lex_state = 60}, - [1138] = {.lex_state = 13, .external_lex_state = 60}, - [1139] = {.lex_state = 13, .external_lex_state = 59}, - [1140] = {.lex_state = 7}, + [1138] = {.lex_state = 13, .external_lex_state = 59}, + [1139] = {.lex_state = 13, .external_lex_state = 60}, + [1140] = {.lex_state = 13, .external_lex_state = 60}, [1141] = {.lex_state = 13, .external_lex_state = 60}, - [1142] = {.lex_state = 13, .external_lex_state = 60}, + [1142] = {.lex_state = 10, .external_lex_state = 23}, [1143] = {.lex_state = 13, .external_lex_state = 59}, [1144] = {.lex_state = 13, .external_lex_state = 59}, - [1145] = {.lex_state = 7, .external_lex_state = 61}, - [1146] = {.lex_state = 7}, - [1147] = {.lex_state = 13, .external_lex_state = 59}, + [1145] = {.lex_state = 13, .external_lex_state = 59}, + [1146] = {.lex_state = 13, .external_lex_state = 59}, + [1147] = {.lex_state = 13, .external_lex_state = 60}, [1148] = {.lex_state = 13, .external_lex_state = 60}, [1149] = {.lex_state = 13, .external_lex_state = 60}, - [1150] = {.lex_state = 7}, + [1150] = {.lex_state = 13, .external_lex_state = 59}, [1151] = {.lex_state = 13, .external_lex_state = 59}, - [1152] = {.lex_state = 13, .external_lex_state = 59}, - [1153] = {.lex_state = 13, .external_lex_state = 60}, - [1154] = {.lex_state = 13, .external_lex_state = 60}, + [1152] = {.lex_state = 7, .external_lex_state = 62}, + [1153] = {.lex_state = 7, .external_lex_state = 62}, + [1154] = {.lex_state = 13, .external_lex_state = 59}, [1155] = {.lex_state = 7, .external_lex_state = 62}, - [1156] = {.lex_state = 7, .external_lex_state = 62}, - [1157] = {.lex_state = 7, .external_lex_state = 62}, - [1158] = {.lex_state = 7, .external_lex_state = 62}, - [1159] = {.lex_state = 13, .external_lex_state = 60}, + [1156] = {.lex_state = 13, .external_lex_state = 59}, + [1157] = {.lex_state = 13, .external_lex_state = 59}, + [1158] = {.lex_state = 7}, + [1159] = {.lex_state = 7, .external_lex_state = 62}, [1160] = {.lex_state = 13, .external_lex_state = 60}, [1161] = {.lex_state = 13, .external_lex_state = 59}, [1162] = {.lex_state = 13, .external_lex_state = 60}, - [1163] = {.lex_state = 13, .external_lex_state = 59}, - [1164] = {.lex_state = 13, .external_lex_state = 60}, + [1163] = {.lex_state = 13, .external_lex_state = 60}, + [1164] = {.lex_state = 13, .external_lex_state = 59}, [1165] = {.lex_state = 13, .external_lex_state = 59}, - [1166] = {.lex_state = 13, .external_lex_state = 60}, - [1167] = {.lex_state = 10, .external_lex_state = 40}, - [1168] = {.lex_state = 10, .external_lex_state = 25}, + [1166] = {.lex_state = 7}, + [1167] = {.lex_state = 13, .external_lex_state = 59}, + [1168] = {.lex_state = 13, .external_lex_state = 60}, [1169] = {.lex_state = 13, .external_lex_state = 59}, [1170] = {.lex_state = 13, .external_lex_state = 60}, - [1171] = {.lex_state = 13, .external_lex_state = 59}, - [1172] = {.lex_state = 13, .external_lex_state = 60}, - [1173] = {.lex_state = 13, .external_lex_state = 59}, - [1174] = {.lex_state = 13, .external_lex_state = 60}, - [1175] = {.lex_state = 13, .external_lex_state = 59}, - [1176] = {.lex_state = 13, .external_lex_state = 60}, - [1177] = {.lex_state = 13, .external_lex_state = 59}, + [1171] = {.lex_state = 13, .external_lex_state = 60}, + [1172] = {.lex_state = 13, .external_lex_state = 59}, + [1173] = {.lex_state = 13, .external_lex_state = 60}, + [1174] = {.lex_state = 13, .external_lex_state = 59}, + [1175] = {.lex_state = 7}, + [1176] = {.lex_state = 13, .external_lex_state = 59}, + [1177] = {.lex_state = 13, .external_lex_state = 60}, [1178] = {.lex_state = 13, .external_lex_state = 59}, - [1179] = {.lex_state = 13, .external_lex_state = 60}, - [1180] = {.lex_state = 13, .external_lex_state = 59}, + [1179] = {.lex_state = 7}, + [1180] = {.lex_state = 13, .external_lex_state = 60}, [1181] = {.lex_state = 13, .external_lex_state = 60}, - [1182] = {.lex_state = 13, .external_lex_state = 59}, - [1183] = {.lex_state = 13, .external_lex_state = 60}, - [1184] = {.lex_state = 13, .external_lex_state = 63}, + [1182] = {.lex_state = 13, .external_lex_state = 60}, + [1183] = {.lex_state = 13, .external_lex_state = 59}, + [1184] = {.lex_state = 13, .external_lex_state = 59}, [1185] = {.lex_state = 7}, - [1186] = {.lex_state = 13, .external_lex_state = 60}, - [1187] = {.lex_state = 7}, - [1188] = {.lex_state = 7, .external_lex_state = 64}, - [1189] = {.lex_state = 7, .external_lex_state = 64}, - [1190] = {.lex_state = 7, .external_lex_state = 64}, - [1191] = {.lex_state = 10, .external_lex_state = 28}, - [1192] = {.lex_state = 7, .external_lex_state = 64}, - [1193] = {.lex_state = 7, .external_lex_state = 64}, - [1194] = {.lex_state = 13, .external_lex_state = 60}, - [1195] = {.lex_state = 7, .external_lex_state = 64}, - [1196] = {.lex_state = 7, .external_lex_state = 64}, - [1197] = {.lex_state = 7, .external_lex_state = 57}, - [1198] = {.lex_state = 7, .external_lex_state = 64}, - [1199] = {.lex_state = 7, .external_lex_state = 64}, - [1200] = {.lex_state = 7}, - [1201] = {.lex_state = 7, .external_lex_state = 64}, - [1202] = {.lex_state = 7, .external_lex_state = 64}, - [1203] = {.lex_state = 7, .external_lex_state = 64}, - [1204] = {.lex_state = 7, .external_lex_state = 64}, - [1205] = {.lex_state = 7, .external_lex_state = 64}, - [1206] = {.lex_state = 7, .external_lex_state = 64}, - [1207] = {.lex_state = 14, .external_lex_state = 65}, - [1208] = {.lex_state = 10, .external_lex_state = 28}, - [1209] = {.lex_state = 8, .external_lex_state = 65}, - [1210] = {.lex_state = 7, .external_lex_state = 64}, - [1211] = {.lex_state = 7, .external_lex_state = 64}, - [1212] = {.lex_state = 7, .external_lex_state = 64}, - [1213] = {.lex_state = 7, .external_lex_state = 64}, - [1214] = {.lex_state = 7, .external_lex_state = 64}, - [1215] = {.lex_state = 7, .external_lex_state = 64}, - [1216] = {.lex_state = 7, .external_lex_state = 64}, - [1217] = {.lex_state = 7, .external_lex_state = 64}, - [1218] = {.lex_state = 11, .external_lex_state = 65}, - [1219] = {.lex_state = 12, .external_lex_state = 65}, - [1220] = {.lex_state = 7, .external_lex_state = 64}, - [1221] = {.lex_state = 7, .external_lex_state = 64}, - [1222] = {.lex_state = 7, .external_lex_state = 64}, - [1223] = {.lex_state = 7, .external_lex_state = 64}, - [1224] = {.lex_state = 7, .external_lex_state = 64}, - [1225] = {.lex_state = 7, .external_lex_state = 64}, - [1226] = {.lex_state = 13, .external_lex_state = 66}, - [1227] = {.lex_state = 7, .external_lex_state = 64}, - [1228] = {.lex_state = 7, .external_lex_state = 64}, - [1229] = {.lex_state = 7, .external_lex_state = 64}, - [1230] = {.lex_state = 7, .external_lex_state = 57}, - [1231] = {.lex_state = 7, .external_lex_state = 64}, - [1232] = {.lex_state = 7, .external_lex_state = 64}, - [1233] = {.lex_state = 7, .external_lex_state = 64}, - [1234] = {.lex_state = 7, .external_lex_state = 64}, - [1235] = {.lex_state = 7, .external_lex_state = 64}, - [1236] = {.lex_state = 7, .external_lex_state = 64}, - [1237] = {.lex_state = 13, .external_lex_state = 59}, - [1238] = {.lex_state = 7, .external_lex_state = 57}, - [1239] = {.lex_state = 13, .external_lex_state = 67}, - [1240] = {.lex_state = 7, .external_lex_state = 64}, - [1241] = {.lex_state = 7, .external_lex_state = 64}, - [1242] = {.lex_state = 7, .external_lex_state = 64}, - [1243] = {.lex_state = 7, .external_lex_state = 64}, - [1244] = {.lex_state = 13, .external_lex_state = 68}, - [1245] = {.lex_state = 7}, - [1246] = {.lex_state = 13, .external_lex_state = 68}, + [1186] = {.lex_state = 13, .external_lex_state = 59}, + [1187] = {.lex_state = 7, .external_lex_state = 63}, + [1188] = {.lex_state = 7, .external_lex_state = 63}, + [1189] = {.lex_state = 7, .external_lex_state = 63}, + [1190] = {.lex_state = 7, .external_lex_state = 63}, + [1191] = {.lex_state = 7, .external_lex_state = 63}, + [1192] = {.lex_state = 7, .external_lex_state = 63}, + [1193] = {.lex_state = 7, .external_lex_state = 56}, + [1194] = {.lex_state = 13, .external_lex_state = 64}, + [1195] = {.lex_state = 7}, + [1196] = {.lex_state = 7}, + [1197] = {.lex_state = 7, .external_lex_state = 63}, + [1198] = {.lex_state = 7}, + [1199] = {.lex_state = 13, .external_lex_state = 60}, + [1200] = {.lex_state = 7, .external_lex_state = 63}, + [1201] = {.lex_state = 13, .external_lex_state = 64}, + [1202] = {.lex_state = 7}, + [1203] = {.lex_state = 7, .external_lex_state = 56}, + [1204] = {.lex_state = 13, .external_lex_state = 65}, + [1205] = {.lex_state = 13, .external_lex_state = 66}, + [1206] = {.lex_state = 13, .external_lex_state = 60}, + [1207] = {.lex_state = 13, .external_lex_state = 64}, + [1208] = {.lex_state = 7, .external_lex_state = 63}, + [1209] = {.lex_state = 7, .external_lex_state = 63}, + [1210] = {.lex_state = 12, .external_lex_state = 67}, + [1211] = {.lex_state = 7, .external_lex_state = 63}, + [1212] = {.lex_state = 7, .external_lex_state = 63}, + [1213] = {.lex_state = 7, .external_lex_state = 63}, + [1214] = {.lex_state = 7, .external_lex_state = 63}, + [1215] = {.lex_state = 7}, + [1216] = {.lex_state = 7, .external_lex_state = 63}, + [1217] = {.lex_state = 7, .external_lex_state = 63}, + [1218] = {.lex_state = 7}, + [1219] = {.lex_state = 7, .external_lex_state = 63}, + [1220] = {.lex_state = 7}, + [1221] = {.lex_state = 7, .external_lex_state = 63}, + [1222] = {.lex_state = 7, .external_lex_state = 63}, + [1223] = {.lex_state = 7, .external_lex_state = 63}, + [1224] = {.lex_state = 7, .external_lex_state = 63}, + [1225] = {.lex_state = 7, .external_lex_state = 63}, + [1226] = {.lex_state = 7, .external_lex_state = 63}, + [1227] = {.lex_state = 7, .external_lex_state = 63}, + [1228] = {.lex_state = 7, .external_lex_state = 63}, + [1229] = {.lex_state = 7}, + [1230] = {.lex_state = 7, .external_lex_state = 63}, + [1231] = {.lex_state = 7, .external_lex_state = 63}, + [1232] = {.lex_state = 7, .external_lex_state = 63}, + [1233] = {.lex_state = 11, .external_lex_state = 67}, + [1234] = {.lex_state = 7, .external_lex_state = 63}, + [1235] = {.lex_state = 7, .external_lex_state = 63}, + [1236] = {.lex_state = 7, .external_lex_state = 63}, + [1237] = {.lex_state = 13, .external_lex_state = 64}, + [1238] = {.lex_state = 7, .external_lex_state = 63}, + [1239] = {.lex_state = 7, .external_lex_state = 63}, + [1240] = {.lex_state = 7, .external_lex_state = 63}, + [1241] = {.lex_state = 8, .external_lex_state = 67}, + [1242] = {.lex_state = 7, .external_lex_state = 63}, + [1243] = {.lex_state = 10, .external_lex_state = 28}, + [1244] = {.lex_state = 13, .external_lex_state = 59}, + [1245] = {.lex_state = 7, .external_lex_state = 56}, + [1246] = {.lex_state = 7, .external_lex_state = 63}, [1247] = {.lex_state = 7}, - [1248] = {.lex_state = 13, .external_lex_state = 59}, - [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 13, .external_lex_state = 68}, - [1252] = {.lex_state = 7}, + [1248] = {.lex_state = 13, .external_lex_state = 68}, + [1249] = {.lex_state = 7, .external_lex_state = 63}, + [1250] = {.lex_state = 7, .external_lex_state = 63}, + [1251] = {.lex_state = 7}, + [1252] = {.lex_state = 10, .external_lex_state = 28}, [1253] = {.lex_state = 7}, - [1254] = {.lex_state = 7}, - [1255] = {.lex_state = 13, .external_lex_state = 68}, - [1256] = {.lex_state = 7}, - [1257] = {.lex_state = 11, .external_lex_state = 69}, - [1258] = {.lex_state = 8, .external_lex_state = 57}, - [1259] = {.lex_state = 13, .external_lex_state = 69}, - [1260] = {.lex_state = 13, .external_lex_state = 69}, - [1261] = {.lex_state = 8, .external_lex_state = 69}, - [1262] = {.lex_state = 14, .external_lex_state = 69}, - [1263] = {.lex_state = 8, .external_lex_state = 69}, - [1264] = {.lex_state = 11, .external_lex_state = 69}, - [1265] = {.lex_state = 8, .external_lex_state = 57}, - [1266] = {.lex_state = 11, .external_lex_state = 69}, - [1267] = {.lex_state = 14, .external_lex_state = 69}, - [1268] = {.lex_state = 8, .external_lex_state = 69}, - [1269] = {.lex_state = 8, .external_lex_state = 57}, - [1270] = {.lex_state = 12, .external_lex_state = 69}, - [1271] = {.lex_state = 11, .external_lex_state = 69}, - [1272] = {.lex_state = 14, .external_lex_state = 69}, + [1254] = {.lex_state = 14, .external_lex_state = 67}, + [1255] = {.lex_state = 7}, + [1256] = {.lex_state = 7, .external_lex_state = 63}, + [1257] = {.lex_state = 7, .external_lex_state = 63}, + [1258] = {.lex_state = 7, .external_lex_state = 63}, + [1259] = {.lex_state = 7, .external_lex_state = 63}, + [1260] = {.lex_state = 14, .external_lex_state = 69}, + [1261] = {.lex_state = 8, .external_lex_state = 70}, + [1262] = {.lex_state = 8, .external_lex_state = 70}, + [1263] = {.lex_state = 8, .external_lex_state = 70}, + [1264] = {.lex_state = 8, .external_lex_state = 70}, + [1265] = {.lex_state = 14, .external_lex_state = 70}, + [1266] = {.lex_state = 14, .external_lex_state = 70}, + [1267] = {.lex_state = 14, .external_lex_state = 70}, + [1268] = {.lex_state = 11, .external_lex_state = 69}, + [1269] = {.lex_state = 14, .external_lex_state = 69}, + [1270] = {.lex_state = 14, .external_lex_state = 70}, + [1271] = {.lex_state = 8, .external_lex_state = 56}, + [1272] = {.lex_state = 8, .external_lex_state = 69}, [1273] = {.lex_state = 8, .external_lex_state = 69}, - [1274] = {.lex_state = 11, .external_lex_state = 69}, - [1275] = {.lex_state = 7}, - [1276] = {.lex_state = 12, .external_lex_state = 69}, + [1274] = {.lex_state = 8, .external_lex_state = 56}, + [1275] = {.lex_state = 14, .external_lex_state = 69}, + [1276] = {.lex_state = 11, .external_lex_state = 69}, [1277] = {.lex_state = 12, .external_lex_state = 69}, - [1278] = {.lex_state = 11, .external_lex_state = 69}, - [1279] = {.lex_state = 8, .external_lex_state = 57}, - [1280] = {.lex_state = 12, .external_lex_state = 69}, - [1281] = {.lex_state = 7}, - [1282] = {.lex_state = 8, .external_lex_state = 61}, - [1283] = {.lex_state = 8, .external_lex_state = 69}, + [1278] = {.lex_state = 12, .external_lex_state = 69}, + [1279] = {.lex_state = 11, .external_lex_state = 69}, + [1280] = {.lex_state = 13, .external_lex_state = 67}, + [1281] = {.lex_state = 8, .external_lex_state = 69}, + [1282] = {.lex_state = 11, .external_lex_state = 69}, + [1283] = {.lex_state = 12, .external_lex_state = 69}, [1284] = {.lex_state = 14, .external_lex_state = 69}, - [1285] = {.lex_state = 13, .external_lex_state = 69}, - [1286] = {.lex_state = 14, .external_lex_state = 69}, - [1287] = {.lex_state = 14, .external_lex_state = 69}, - [1288] = {.lex_state = 8, .external_lex_state = 69}, - [1289] = {.lex_state = 8, .external_lex_state = 57}, - [1290] = {.lex_state = 11, .external_lex_state = 69}, - [1291] = {.lex_state = 12, .external_lex_state = 69}, - [1292] = {.lex_state = 11, .external_lex_state = 69}, - [1293] = {.lex_state = 8, .external_lex_state = 57}, - [1294] = {.lex_state = 8, .external_lex_state = 69}, - [1295] = {.lex_state = 12, .external_lex_state = 69}, - [1296] = {.lex_state = 14, .external_lex_state = 69}, - [1297] = {.lex_state = 11, .external_lex_state = 69}, - [1298] = {.lex_state = 8, .external_lex_state = 69}, - [1299] = {.lex_state = 14, .external_lex_state = 69}, - [1300] = {.lex_state = 12, .external_lex_state = 69}, - [1301] = {.lex_state = 12, .external_lex_state = 69}, - [1302] = {.lex_state = 13, .external_lex_state = 69}, - [1303] = {.lex_state = 16, .external_lex_state = 38}, + [1285] = {.lex_state = 13, .external_lex_state = 71}, + [1286] = {.lex_state = 12, .external_lex_state = 69}, + [1287] = {.lex_state = 8, .external_lex_state = 61}, + [1288] = {.lex_state = 13, .external_lex_state = 69}, + [1289] = {.lex_state = 14, .external_lex_state = 69}, + [1290] = {.lex_state = 8, .external_lex_state = 69}, + [1291] = {.lex_state = 11, .external_lex_state = 69}, + [1292] = {.lex_state = 7}, + [1293] = {.lex_state = 12, .external_lex_state = 69}, + [1294] = {.lex_state = 11, .external_lex_state = 70}, + [1295] = {.lex_state = 11, .external_lex_state = 70}, + [1296] = {.lex_state = 11, .external_lex_state = 70}, + [1297] = {.lex_state = 11, .external_lex_state = 70}, + [1298] = {.lex_state = 12, .external_lex_state = 69}, + [1299] = {.lex_state = 12, .external_lex_state = 70}, + [1300] = {.lex_state = 12, .external_lex_state = 70}, + [1301] = {.lex_state = 14, .external_lex_state = 69}, + [1302] = {.lex_state = 11, .external_lex_state = 69}, + [1303] = {.lex_state = 8, .external_lex_state = 69}, [1304] = {.lex_state = 14, .external_lex_state = 69}, - [1305] = {.lex_state = 8, .external_lex_state = 69}, - [1306] = {.lex_state = 13, .external_lex_state = 69}, - [1307] = {.lex_state = 11, .external_lex_state = 69}, - [1308] = {.lex_state = 12, .external_lex_state = 69}, - [1309] = {.lex_state = 13, .external_lex_state = 70}, - [1310] = {.lex_state = 12, .external_lex_state = 69}, - [1311] = {.lex_state = 11, .external_lex_state = 69}, - [1312] = {.lex_state = 8, .external_lex_state = 69}, - [1313] = {.lex_state = 14, .external_lex_state = 69}, - [1314] = {.lex_state = 7}, - [1315] = {.lex_state = 14, .external_lex_state = 69}, - [1316] = {.lex_state = 8, .external_lex_state = 69}, - [1317] = {.lex_state = 7}, - [1318] = {.lex_state = 13, .external_lex_state = 71}, - [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 11, .external_lex_state = 69}, - [1321] = {.lex_state = 12, .external_lex_state = 69}, - [1322] = {.lex_state = 13, .external_lex_state = 72}, - [1323] = {.lex_state = 16, .external_lex_state = 38}, - [1324] = {.lex_state = 13, .external_lex_state = 72}, - [1325] = {.lex_state = 13, .external_lex_state = 70}, + [1305] = {.lex_state = 12, .external_lex_state = 70}, + [1306] = {.lex_state = 12, .external_lex_state = 70}, + [1307] = {.lex_state = 8, .external_lex_state = 69}, + [1308] = {.lex_state = 16, .external_lex_state = 38}, + [1309] = {.lex_state = 11, .external_lex_state = 69}, + [1310] = {.lex_state = 15, .external_lex_state = 38}, + [1311] = {.lex_state = 13, .external_lex_state = 55}, + [1312] = {.lex_state = 12, .external_lex_state = 69}, + [1313] = {.lex_state = 13, .external_lex_state = 69}, + [1314] = {.lex_state = 13, .external_lex_state = 55}, + [1315] = {.lex_state = 12, .external_lex_state = 69}, + [1316] = {.lex_state = 7}, + [1317] = {.lex_state = 14, .external_lex_state = 69}, + [1318] = {.lex_state = 8, .external_lex_state = 69}, + [1319] = {.lex_state = 12, .external_lex_state = 61}, + [1320] = {.lex_state = 13, .external_lex_state = 55}, + [1321] = {.lex_state = 14, .external_lex_state = 69}, + [1322] = {.lex_state = 13, .external_lex_state = 55}, + [1323] = {.lex_state = 11, .external_lex_state = 69}, + [1324] = {.lex_state = 8, .external_lex_state = 69}, + [1325] = {.lex_state = 14, .external_lex_state = 69}, [1326] = {.lex_state = 7}, - [1327] = {.lex_state = 7}, - [1328] = {.lex_state = 14, .external_lex_state = 69}, - [1329] = {.lex_state = 13, .external_lex_state = 55}, - [1330] = {.lex_state = 13, .external_lex_state = 55}, - [1331] = {.lex_state = 13, .external_lex_state = 55}, - [1332] = {.lex_state = 13, .external_lex_state = 55}, - [1333] = {.lex_state = 12, .external_lex_state = 69}, - [1334] = {.lex_state = 12, .external_lex_state = 73}, - [1335] = {.lex_state = 11, .external_lex_state = 69}, - [1336] = {.lex_state = 8, .external_lex_state = 69}, - [1337] = {.lex_state = 14, .external_lex_state = 69}, - [1338] = {.lex_state = 12, .external_lex_state = 73}, - [1339] = {.lex_state = 12, .external_lex_state = 73}, - [1340] = {.lex_state = 12, .external_lex_state = 73}, - [1341] = {.lex_state = 11, .external_lex_state = 73}, - [1342] = {.lex_state = 11, .external_lex_state = 73}, - [1343] = {.lex_state = 12, .external_lex_state = 69}, - [1344] = {.lex_state = 11, .external_lex_state = 73}, - [1345] = {.lex_state = 11, .external_lex_state = 73}, - [1346] = {.lex_state = 11, .external_lex_state = 61}, - [1347] = {.lex_state = 12, .external_lex_state = 69}, - [1348] = {.lex_state = 8, .external_lex_state = 73}, - [1349] = {.lex_state = 8, .external_lex_state = 73}, - [1350] = {.lex_state = 11, .external_lex_state = 69}, - [1351] = {.lex_state = 8, .external_lex_state = 69}, - [1352] = {.lex_state = 8, .external_lex_state = 73}, - [1353] = {.lex_state = 8, .external_lex_state = 73}, - [1354] = {.lex_state = 14, .external_lex_state = 73}, - [1355] = {.lex_state = 14, .external_lex_state = 73}, - [1356] = {.lex_state = 14, .external_lex_state = 73}, - [1357] = {.lex_state = 11, .external_lex_state = 69}, - [1358] = {.lex_state = 14, .external_lex_state = 73}, - [1359] = {.lex_state = 13, .external_lex_state = 70}, - [1360] = {.lex_state = 8, .external_lex_state = 69}, - [1361] = {.lex_state = 13, .external_lex_state = 70}, - [1362] = {.lex_state = 8, .external_lex_state = 69}, - [1363] = {.lex_state = 14, .external_lex_state = 69}, - [1364] = {.lex_state = 11, .external_lex_state = 69}, - [1365] = {.lex_state = 13, .external_lex_state = 72}, - [1366] = {.lex_state = 7}, - [1367] = {.lex_state = 14, .external_lex_state = 69}, - [1368] = {.lex_state = 14, .external_lex_state = 69}, - [1369] = {.lex_state = 8, .external_lex_state = 69}, - [1370] = {.lex_state = 13, .external_lex_state = 72}, + [1327] = {.lex_state = 12, .external_lex_state = 69}, + [1328] = {.lex_state = 16, .external_lex_state = 38}, + [1329] = {.lex_state = 8, .external_lex_state = 56}, + [1330] = {.lex_state = 8, .external_lex_state = 69}, + [1331] = {.lex_state = 12, .external_lex_state = 69}, + [1332] = {.lex_state = 11, .external_lex_state = 69}, + [1333] = {.lex_state = 11, .external_lex_state = 69}, + [1334] = {.lex_state = 8, .external_lex_state = 69}, + [1335] = {.lex_state = 14, .external_lex_state = 69}, + [1336] = {.lex_state = 11, .external_lex_state = 69}, + [1337] = {.lex_state = 15, .external_lex_state = 38}, + [1338] = {.lex_state = 13, .external_lex_state = 71}, + [1339] = {.lex_state = 12, .external_lex_state = 69}, + [1340] = {.lex_state = 14, .external_lex_state = 69}, + [1341] = {.lex_state = 12, .external_lex_state = 69}, + [1342] = {.lex_state = 8, .external_lex_state = 69}, + [1343] = {.lex_state = 14, .external_lex_state = 69}, + [1344] = {.lex_state = 11, .external_lex_state = 69}, + [1345] = {.lex_state = 8, .external_lex_state = 69}, + [1346] = {.lex_state = 8, .external_lex_state = 69}, + [1347] = {.lex_state = 14, .external_lex_state = 69}, + [1348] = {.lex_state = 11, .external_lex_state = 69}, + [1349] = {.lex_state = 7}, + [1350] = {.lex_state = 12, .external_lex_state = 69}, + [1351] = {.lex_state = 11, .external_lex_state = 61}, + [1352] = {.lex_state = 13, .external_lex_state = 72}, + [1353] = {.lex_state = 13, .external_lex_state = 71}, + [1354] = {.lex_state = 13, .external_lex_state = 71}, + [1355] = {.lex_state = 13, .external_lex_state = 69}, + [1356] = {.lex_state = 7}, + [1357] = {.lex_state = 14, .external_lex_state = 69}, + [1358] = {.lex_state = 8, .external_lex_state = 69}, + [1359] = {.lex_state = 11, .external_lex_state = 69}, + [1360] = {.lex_state = 11, .external_lex_state = 69}, + [1361] = {.lex_state = 11, .external_lex_state = 69}, + [1362] = {.lex_state = 12, .external_lex_state = 69}, + [1363] = {.lex_state = 12, .external_lex_state = 69}, + [1364] = {.lex_state = 12, .external_lex_state = 69}, + [1365] = {.lex_state = 12, .external_lex_state = 69}, + [1366] = {.lex_state = 12, .external_lex_state = 69}, + [1367] = {.lex_state = 13, .external_lex_state = 73}, + [1368] = {.lex_state = 11, .external_lex_state = 69}, + [1369] = {.lex_state = 8, .external_lex_state = 56}, + [1370] = {.lex_state = 7}, [1371] = {.lex_state = 11, .external_lex_state = 69}, - [1372] = {.lex_state = 12, .external_lex_state = 69}, - [1373] = {.lex_state = 12, .external_lex_state = 69}, - [1374] = {.lex_state = 12, .external_lex_state = 69}, - [1375] = {.lex_state = 11, .external_lex_state = 69}, - [1376] = {.lex_state = 8, .external_lex_state = 69}, - [1377] = {.lex_state = 14, .external_lex_state = 69}, - [1378] = {.lex_state = 14, .external_lex_state = 69}, - [1379] = {.lex_state = 8, .external_lex_state = 69}, - [1380] = {.lex_state = 11, .external_lex_state = 69}, - [1381] = {.lex_state = 12, .external_lex_state = 61}, - [1382] = {.lex_state = 12, .external_lex_state = 69}, - [1383] = {.lex_state = 8, .external_lex_state = 69}, - [1384] = {.lex_state = 14, .external_lex_state = 69}, + [1372] = {.lex_state = 14, .external_lex_state = 69}, + [1373] = {.lex_state = 8, .external_lex_state = 69}, + [1374] = {.lex_state = 14, .external_lex_state = 69}, + [1375] = {.lex_state = 8, .external_lex_state = 69}, + [1376] = {.lex_state = 13, .external_lex_state = 72}, + [1377] = {.lex_state = 13, .external_lex_state = 69}, + [1378] = {.lex_state = 13, .external_lex_state = 69}, + [1379] = {.lex_state = 13, .external_lex_state = 72}, + [1380] = {.lex_state = 13, .external_lex_state = 72}, + [1381] = {.lex_state = 12, .external_lex_state = 69}, + [1382] = {.lex_state = 11, .external_lex_state = 69}, + [1383] = {.lex_state = 8, .external_lex_state = 56}, + [1384] = {.lex_state = 8, .external_lex_state = 69}, [1385] = {.lex_state = 14, .external_lex_state = 69}, - [1386] = {.lex_state = 8, .external_lex_state = 69}, - [1387] = {.lex_state = 11, .external_lex_state = 69}, - [1388] = {.lex_state = 12, .external_lex_state = 69}, - [1389] = {.lex_state = 12, .external_lex_state = 69}, - [1390] = {.lex_state = 12, .external_lex_state = 69}, - [1391] = {.lex_state = 12, .external_lex_state = 69}, - [1392] = {.lex_state = 15, .external_lex_state = 38}, - [1393] = {.lex_state = 13, .external_lex_state = 65}, + [1386] = {.lex_state = 14, .external_lex_state = 69}, + [1387] = {.lex_state = 8, .external_lex_state = 69}, + [1388] = {.lex_state = 11, .external_lex_state = 69}, + [1389] = {.lex_state = 14, .external_lex_state = 69}, + [1390] = {.lex_state = 8, .external_lex_state = 69}, + [1391] = {.lex_state = 7}, + [1392] = {.lex_state = 7}, + [1393] = {.lex_state = 14, .external_lex_state = 69}, [1394] = {.lex_state = 14, .external_lex_state = 69}, - [1395] = {.lex_state = 8, .external_lex_state = 69}, - [1396] = {.lex_state = 11, .external_lex_state = 69}, - [1397] = {.lex_state = 11, .external_lex_state = 69}, + [1395] = {.lex_state = 12, .external_lex_state = 69}, + [1396] = {.lex_state = 8, .external_lex_state = 69}, + [1397] = {.lex_state = 8, .external_lex_state = 69}, [1398] = {.lex_state = 12, .external_lex_state = 69}, - [1399] = {.lex_state = 8, .external_lex_state = 69}, + [1399] = {.lex_state = 8, .external_lex_state = 56}, [1400] = {.lex_state = 11, .external_lex_state = 69}, - [1401] = {.lex_state = 8, .external_lex_state = 69}, - [1402] = {.lex_state = 15, .external_lex_state = 38}, - [1403] = {.lex_state = 14, .external_lex_state = 69}, - [1404] = {.lex_state = 14, .external_lex_state = 69}, - [1405] = {.lex_state = 13, .external_lex_state = 74}, - [1406] = {.lex_state = 11, .external_lex_state = 64}, - [1407] = {.lex_state = 12}, + [1401] = {.lex_state = 12, .external_lex_state = 69}, + [1402] = {.lex_state = 12, .external_lex_state = 69}, + [1403] = {.lex_state = 11, .external_lex_state = 69}, + [1404] = {.lex_state = 8, .external_lex_state = 69}, + [1405] = {.lex_state = 8, .external_lex_state = 69}, + [1406] = {.lex_state = 11, .external_lex_state = 69}, + [1407] = {.lex_state = 14, .external_lex_state = 69}, [1408] = {.lex_state = 13, .external_lex_state = 69}, - [1409] = {.lex_state = 13, .external_lex_state = 61}, + [1409] = {.lex_state = 13, .external_lex_state = 69}, [1410] = {.lex_state = 13, .external_lex_state = 69}, [1411] = {.lex_state = 13, .external_lex_state = 69}, [1412] = {.lex_state = 8}, - [1413] = {.lex_state = 13, .external_lex_state = 69}, - [1414] = {.lex_state = 13, .external_lex_state = 69}, - [1415] = {.lex_state = 13, .external_lex_state = 69}, - [1416] = {.lex_state = 8}, - [1417] = {.lex_state = 11, .external_lex_state = 64}, + [1413] = {.lex_state = 8}, + [1414] = {.lex_state = 13}, + [1415] = {.lex_state = 13}, + [1416] = {.lex_state = 13, .external_lex_state = 69}, + [1417] = {.lex_state = 13, .external_lex_state = 61}, [1418] = {.lex_state = 13, .external_lex_state = 69}, [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 = 69}, - [1423] = {.lex_state = 13, .external_lex_state = 69}, - [1424] = {.lex_state = 13, .external_lex_state = 69}, - [1425] = {.lex_state = 13, .external_lex_state = 73}, - [1426] = {.lex_state = 13, .external_lex_state = 73}, + [1421] = {.lex_state = 13}, + [1422] = {.lex_state = 11, .external_lex_state = 63}, + [1423] = {.lex_state = 13}, + [1424] = {.lex_state = 11, .external_lex_state = 63}, + [1425] = {.lex_state = 13, .external_lex_state = 69}, + [1426] = {.lex_state = 13, .external_lex_state = 69}, [1427] = {.lex_state = 13, .external_lex_state = 69}, [1428] = {.lex_state = 13, .external_lex_state = 69}, [1429] = {.lex_state = 13, .external_lex_state = 69}, - [1430] = {.lex_state = 13, .external_lex_state = 73}, + [1430] = {.lex_state = 13, .external_lex_state = 69}, [1431] = {.lex_state = 13, .external_lex_state = 69}, [1432] = {.lex_state = 13, .external_lex_state = 69}, [1433] = {.lex_state = 13, .external_lex_state = 69}, [1434] = {.lex_state = 13, .external_lex_state = 69}, - [1435] = {.lex_state = 13}, + [1435] = {.lex_state = 11, .external_lex_state = 63}, [1436] = {.lex_state = 13, .external_lex_state = 69}, [1437] = {.lex_state = 13, .external_lex_state = 69}, - [1438] = {.lex_state = 7}, + [1438] = {.lex_state = 13, .external_lex_state = 69}, [1439] = {.lex_state = 13, .external_lex_state = 69}, - [1440] = {.lex_state = 13, .external_lex_state = 74}, + [1440] = {.lex_state = 8, .external_lex_state = 63}, [1441] = {.lex_state = 13, .external_lex_state = 69}, - [1442] = {.lex_state = 13, .external_lex_state = 69}, + [1442] = {.lex_state = 11, .external_lex_state = 63}, [1443] = {.lex_state = 13, .external_lex_state = 69}, - [1444] = {.lex_state = 13, .external_lex_state = 69}, - [1445] = {.lex_state = 13, .external_lex_state = 74}, + [1444] = {.lex_state = 13, .external_lex_state = 70}, + [1445] = {.lex_state = 13, .external_lex_state = 70}, [1446] = {.lex_state = 13, .external_lex_state = 69}, [1447] = {.lex_state = 13, .external_lex_state = 69}, [1448] = {.lex_state = 13, .external_lex_state = 69}, [1449] = {.lex_state = 13, .external_lex_state = 69}, - [1450] = {.lex_state = 7}, - [1451] = {.lex_state = 13, .external_lex_state = 74}, + [1450] = {.lex_state = 13, .external_lex_state = 69}, + [1451] = {.lex_state = 12}, [1452] = {.lex_state = 13, .external_lex_state = 69}, [1453] = {.lex_state = 13, .external_lex_state = 69}, [1454] = {.lex_state = 13, .external_lex_state = 69}, - [1455] = {.lex_state = 13, .external_lex_state = 69}, - [1456] = {.lex_state = 13, .external_lex_state = 69}, - [1457] = {.lex_state = 13, .external_lex_state = 69}, - [1458] = {.lex_state = 13, .external_lex_state = 74}, - [1459] = {.lex_state = 13, .external_lex_state = 74}, - [1460] = {.lex_state = 13, .external_lex_state = 74}, + [1455] = {.lex_state = 11}, + [1456] = {.lex_state = 8}, + [1457] = {.lex_state = 7}, + [1458] = {.lex_state = 13, .external_lex_state = 69}, + [1459] = {.lex_state = 13, .external_lex_state = 69}, + [1460] = {.lex_state = 13, .external_lex_state = 69}, [1461] = {.lex_state = 13, .external_lex_state = 69}, [1462] = {.lex_state = 13, .external_lex_state = 69}, [1463] = {.lex_state = 13, .external_lex_state = 69}, [1464] = {.lex_state = 13, .external_lex_state = 69}, [1465] = {.lex_state = 13, .external_lex_state = 69}, - [1466] = {.lex_state = 13, .external_lex_state = 74}, + [1466] = {.lex_state = 13, .external_lex_state = 69}, [1467] = {.lex_state = 13, .external_lex_state = 69}, - [1468] = {.lex_state = 13}, + [1468] = {.lex_state = 13, .external_lex_state = 69}, [1469] = {.lex_state = 13, .external_lex_state = 69}, - [1470] = {.lex_state = 13}, - [1471] = {.lex_state = 12, .external_lex_state = 64}, - [1472] = {.lex_state = 12, .external_lex_state = 64}, - [1473] = {.lex_state = 13, .external_lex_state = 74}, - [1474] = {.lex_state = 13, .external_lex_state = 69}, - [1475] = {.lex_state = 7}, - [1476] = {.lex_state = 8}, - [1477] = {.lex_state = 8}, - [1478] = {.lex_state = 13, .external_lex_state = 74}, - [1479] = {.lex_state = 13, .external_lex_state = 74}, - [1480] = {.lex_state = 7}, - [1481] = {.lex_state = 8}, - [1482] = {.lex_state = 13, .external_lex_state = 74}, - [1483] = {.lex_state = 13, .external_lex_state = 69}, - [1484] = {.lex_state = 12, .external_lex_state = 64}, - [1485] = {.lex_state = 13, .external_lex_state = 74}, - [1486] = {.lex_state = 11}, - [1487] = {.lex_state = 13, .external_lex_state = 69}, + [1470] = {.lex_state = 13, .external_lex_state = 69}, + [1471] = {.lex_state = 13, .external_lex_state = 69}, + [1472] = {.lex_state = 13, .external_lex_state = 69}, + [1473] = {.lex_state = 12}, + [1474] = {.lex_state = 13}, + [1475] = {.lex_state = 13}, + [1476] = {.lex_state = 12, .external_lex_state = 63}, + [1477] = {.lex_state = 12, .external_lex_state = 63}, + [1478] = {.lex_state = 13, .external_lex_state = 69}, + [1479] = {.lex_state = 13, .external_lex_state = 69}, + [1480] = {.lex_state = 13, .external_lex_state = 70}, + [1481] = {.lex_state = 13, .external_lex_state = 69}, + [1482] = {.lex_state = 8}, + [1483] = {.lex_state = 8}, + [1484] = {.lex_state = 7}, + [1485] = {.lex_state = 13, .external_lex_state = 69}, + [1486] = {.lex_state = 13, .external_lex_state = 69}, + [1487] = {.lex_state = 8}, [1488] = {.lex_state = 13, .external_lex_state = 69}, - [1489] = {.lex_state = 13, .external_lex_state = 69}, + [1489] = {.lex_state = 12, .external_lex_state = 63}, [1490] = {.lex_state = 13, .external_lex_state = 69}, [1491] = {.lex_state = 13, .external_lex_state = 69}, - [1492] = {.lex_state = 8}, + [1492] = {.lex_state = 13, .external_lex_state = 69}, [1493] = {.lex_state = 13, .external_lex_state = 69}, - [1494] = {.lex_state = 11}, + [1494] = {.lex_state = 13, .external_lex_state = 69}, [1495] = {.lex_state = 13, .external_lex_state = 69}, [1496] = {.lex_state = 13, .external_lex_state = 69}, - [1497] = {.lex_state = 12}, - [1498] = {.lex_state = 12}, + [1497] = {.lex_state = 13, .external_lex_state = 69}, + [1498] = {.lex_state = 13, .external_lex_state = 69}, [1499] = {.lex_state = 13, .external_lex_state = 69}, [1500] = {.lex_state = 13, .external_lex_state = 69}, [1501] = {.lex_state = 13, .external_lex_state = 69}, @@ -25027,327 +25034,327 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1504] = {.lex_state = 13, .external_lex_state = 69}, [1505] = {.lex_state = 13, .external_lex_state = 69}, [1506] = {.lex_state = 13, .external_lex_state = 69}, - [1507] = {.lex_state = 8}, + [1507] = {.lex_state = 13, .external_lex_state = 69}, [1508] = {.lex_state = 8}, [1509] = {.lex_state = 13, .external_lex_state = 69}, [1510] = {.lex_state = 13, .external_lex_state = 69}, [1511] = {.lex_state = 13, .external_lex_state = 69}, [1512] = {.lex_state = 13, .external_lex_state = 69}, - [1513] = {.lex_state = 13, .external_lex_state = 74}, + [1513] = {.lex_state = 13, .external_lex_state = 69}, [1514] = {.lex_state = 13, .external_lex_state = 69}, [1515] = {.lex_state = 13, .external_lex_state = 69}, [1516] = {.lex_state = 13, .external_lex_state = 69}, - [1517] = {.lex_state = 13, .external_lex_state = 74}, + [1517] = {.lex_state = 13, .external_lex_state = 69}, [1518] = {.lex_state = 13, .external_lex_state = 69}, - [1519] = {.lex_state = 13, .external_lex_state = 74}, - [1520] = {.lex_state = 13, .external_lex_state = 74}, - [1521] = {.lex_state = 12, .external_lex_state = 64}, - [1522] = {.lex_state = 13, .external_lex_state = 69}, - [1523] = {.lex_state = 13, .external_lex_state = 74}, - [1524] = {.lex_state = 7}, + [1519] = {.lex_state = 8}, + [1520] = {.lex_state = 8}, + [1521] = {.lex_state = 13, .external_lex_state = 69}, + [1522] = {.lex_state = 8}, + [1523] = {.lex_state = 13, .external_lex_state = 69}, + [1524] = {.lex_state = 13, .external_lex_state = 69}, [1525] = {.lex_state = 13, .external_lex_state = 69}, - [1526] = {.lex_state = 7}, + [1526] = {.lex_state = 13, .external_lex_state = 69}, [1527] = {.lex_state = 13, .external_lex_state = 69}, - [1528] = {.lex_state = 13, .external_lex_state = 74}, - [1529] = {.lex_state = 11, .external_lex_state = 64}, + [1528] = {.lex_state = 13, .external_lex_state = 69}, + [1529] = {.lex_state = 13, .external_lex_state = 69}, [1530] = {.lex_state = 13, .external_lex_state = 69}, - [1531] = {.lex_state = 13, .external_lex_state = 74}, - [1532] = {.lex_state = 13, .external_lex_state = 74}, - [1533] = {.lex_state = 13, .external_lex_state = 74}, - [1534] = {.lex_state = 8, .external_lex_state = 64}, - [1535] = {.lex_state = 8}, - [1536] = {.lex_state = 8}, - [1537] = {.lex_state = 13, .external_lex_state = 74}, - [1538] = {.lex_state = 8, .external_lex_state = 64}, - [1539] = {.lex_state = 7, .external_lex_state = 75}, - [1540] = {.lex_state = 7}, - [1541] = {.lex_state = 13, .external_lex_state = 74}, - [1542] = {.lex_state = 13, .external_lex_state = 69}, - [1543] = {.lex_state = 13, .external_lex_state = 69}, - [1544] = {.lex_state = 13, .external_lex_state = 74}, - [1545] = {.lex_state = 13}, - [1546] = {.lex_state = 11}, - [1547] = {.lex_state = 7, .external_lex_state = 75}, + [1531] = {.lex_state = 12, .external_lex_state = 63}, + [1532] = {.lex_state = 13, .external_lex_state = 69}, + [1533] = {.lex_state = 13, .external_lex_state = 69}, + [1534] = {.lex_state = 13, .external_lex_state = 69}, + [1535] = {.lex_state = 13, .external_lex_state = 69}, + [1536] = {.lex_state = 13, .external_lex_state = 69}, + [1537] = {.lex_state = 13, .external_lex_state = 69}, + [1538] = {.lex_state = 8, .external_lex_state = 63}, + [1539] = {.lex_state = 13, .external_lex_state = 69}, + [1540] = {.lex_state = 13, .external_lex_state = 69}, + [1541] = {.lex_state = 13, .external_lex_state = 69}, + [1542] = {.lex_state = 7}, + [1543] = {.lex_state = 7}, + [1544] = {.lex_state = 13, .external_lex_state = 69}, + [1545] = {.lex_state = 8, .external_lex_state = 63}, + [1546] = {.lex_state = 8, .external_lex_state = 63}, + [1547] = {.lex_state = 7}, [1548] = {.lex_state = 13, .external_lex_state = 69}, [1549] = {.lex_state = 13, .external_lex_state = 69}, - [1550] = {.lex_state = 13}, - [1551] = {.lex_state = 12}, - [1552] = {.lex_state = 13, .external_lex_state = 73}, - [1553] = {.lex_state = 13, .external_lex_state = 69}, - [1554] = {.lex_state = 13, .external_lex_state = 69}, - [1555] = {.lex_state = 8, .external_lex_state = 64}, - [1556] = {.lex_state = 13, .external_lex_state = 69}, - [1557] = {.lex_state = 11}, - [1558] = {.lex_state = 13, .external_lex_state = 74}, - [1559] = {.lex_state = 8}, - [1560] = {.lex_state = 11, .external_lex_state = 64}, + [1550] = {.lex_state = 13, .external_lex_state = 69}, + [1551] = {.lex_state = 13, .external_lex_state = 69}, + [1552] = {.lex_state = 8}, + [1553] = {.lex_state = 8}, + [1554] = {.lex_state = 7, .external_lex_state = 74}, + [1555] = {.lex_state = 8}, + [1556] = {.lex_state = 7, .external_lex_state = 74}, + [1557] = {.lex_state = 13, .external_lex_state = 69}, + [1558] = {.lex_state = 8}, + [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}, + [1563] = {.lex_state = 11}, [1564] = {.lex_state = 13, .external_lex_state = 69}, - [1565] = {.lex_state = 13, .external_lex_state = 74}, - [1566] = {.lex_state = 7}, - [1567] = {.lex_state = 7}, - [1568] = {.lex_state = 13, .external_lex_state = 69}, + [1565] = {.lex_state = 13, .external_lex_state = 69}, + [1566] = {.lex_state = 8}, + [1567] = {.lex_state = 13, .external_lex_state = 69}, + [1568] = {.lex_state = 8}, [1569] = {.lex_state = 13, .external_lex_state = 69}, [1570] = {.lex_state = 13, .external_lex_state = 69}, - [1571] = {.lex_state = 13, .external_lex_state = 74}, - [1572] = {.lex_state = 13, .external_lex_state = 74}, - [1573] = {.lex_state = 8, .external_lex_state = 64}, + [1571] = {.lex_state = 13, .external_lex_state = 69}, + [1572] = {.lex_state = 13, .external_lex_state = 75}, + [1573] = {.lex_state = 12}, [1574] = {.lex_state = 13, .external_lex_state = 69}, [1575] = {.lex_state = 13, .external_lex_state = 69}, - [1576] = {.lex_state = 13, .external_lex_state = 69}, + [1576] = {.lex_state = 11}, [1577] = {.lex_state = 13, .external_lex_state = 69}, - [1578] = {.lex_state = 13, .external_lex_state = 69}, - [1579] = {.lex_state = 13, .external_lex_state = 74}, - [1580] = {.lex_state = 7}, - [1581] = {.lex_state = 13, .external_lex_state = 69}, - [1582] = {.lex_state = 13, .external_lex_state = 69}, - [1583] = {.lex_state = 13, .external_lex_state = 69}, - [1584] = {.lex_state = 13, .external_lex_state = 69}, - [1585] = {.lex_state = 13, .external_lex_state = 69}, - [1586] = {.lex_state = 13, .external_lex_state = 74}, - [1587] = {.lex_state = 13, .external_lex_state = 69}, - [1588] = {.lex_state = 13, .external_lex_state = 69}, - [1589] = {.lex_state = 13, .external_lex_state = 69}, - [1590] = {.lex_state = 13, .external_lex_state = 69}, - [1591] = {.lex_state = 13, .external_lex_state = 69}, - [1592] = {.lex_state = 13, .external_lex_state = 69}, - [1593] = {.lex_state = 13, .external_lex_state = 69}, - [1594] = {.lex_state = 13, .external_lex_state = 69}, - [1595] = {.lex_state = 13, .external_lex_state = 69}, - [1596] = {.lex_state = 13, .external_lex_state = 69}, - [1597] = {.lex_state = 13, .external_lex_state = 69}, + [1578] = {.lex_state = 8}, + [1579] = {.lex_state = 8}, + [1580] = {.lex_state = 13, .external_lex_state = 75}, + [1581] = {.lex_state = 7}, + [1582] = {.lex_state = 13, .external_lex_state = 75}, + [1583] = {.lex_state = 13, .external_lex_state = 75}, + [1584] = {.lex_state = 7}, + [1585] = {.lex_state = 13, .external_lex_state = 70}, + [1586] = {.lex_state = 7}, + [1587] = {.lex_state = 13, .external_lex_state = 75}, + [1588] = {.lex_state = 13, .external_lex_state = 75}, + [1589] = {.lex_state = 13, .external_lex_state = 75}, + [1590] = {.lex_state = 13, .external_lex_state = 75}, + [1591] = {.lex_state = 7}, + [1592] = {.lex_state = 13, .external_lex_state = 75}, + [1593] = {.lex_state = 7}, + [1594] = {.lex_state = 7}, + [1595] = {.lex_state = 7}, + [1596] = {.lex_state = 13, .external_lex_state = 75}, + [1597] = {.lex_state = 13, .external_lex_state = 75}, [1598] = {.lex_state = 13, .external_lex_state = 69}, [1599] = {.lex_state = 13, .external_lex_state = 69}, [1600] = {.lex_state = 13, .external_lex_state = 69}, - [1601] = {.lex_state = 8}, - [1602] = {.lex_state = 13, .external_lex_state = 69}, - [1603] = {.lex_state = 13, .external_lex_state = 69}, + [1601] = {.lex_state = 13, .external_lex_state = 69}, + [1602] = {.lex_state = 13, .external_lex_state = 75}, + [1603] = {.lex_state = 13, .external_lex_state = 75}, [1604] = {.lex_state = 13, .external_lex_state = 69}, - [1605] = {.lex_state = 13, .external_lex_state = 69}, - [1606] = {.lex_state = 13, .external_lex_state = 69}, - [1607] = {.lex_state = 13, .external_lex_state = 69}, - [1608] = {.lex_state = 13, .external_lex_state = 69}, - [1609] = {.lex_state = 13, .external_lex_state = 69}, - [1610] = {.lex_state = 13, .external_lex_state = 74}, - [1611] = {.lex_state = 13, .external_lex_state = 74}, - [1612] = {.lex_state = 13, .external_lex_state = 69}, - [1613] = {.lex_state = 13, .external_lex_state = 69}, - [1614] = {.lex_state = 13, .external_lex_state = 74}, - [1615] = {.lex_state = 8}, - [1616] = {.lex_state = 13, .external_lex_state = 74}, + [1605] = {.lex_state = 13, .external_lex_state = 75}, + [1606] = {.lex_state = 13, .external_lex_state = 75}, + [1607] = {.lex_state = 13, .external_lex_state = 75}, + [1608] = {.lex_state = 13, .external_lex_state = 75}, + [1609] = {.lex_state = 13, .external_lex_state = 75}, + [1610] = {.lex_state = 13, .external_lex_state = 75}, + [1611] = {.lex_state = 13, .external_lex_state = 69}, + [1612] = {.lex_state = 13, .external_lex_state = 75}, + [1613] = {.lex_state = 13, .external_lex_state = 75}, + [1614] = {.lex_state = 13, .external_lex_state = 69}, + [1615] = {.lex_state = 13, .external_lex_state = 69}, + [1616] = {.lex_state = 13, .external_lex_state = 75}, [1617] = {.lex_state = 13, .external_lex_state = 69}, - [1618] = {.lex_state = 13, .external_lex_state = 74}, - [1619] = {.lex_state = 13, .external_lex_state = 74}, - [1620] = {.lex_state = 13, .external_lex_state = 74}, - [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 7}, - [1623] = {.lex_state = 8}, - [1624] = {.lex_state = 8}, - [1625] = {.lex_state = 13, .external_lex_state = 69}, - [1626] = {.lex_state = 13, .external_lex_state = 69}, + [1618] = {.lex_state = 12}, + [1619] = {.lex_state = 13, .external_lex_state = 75}, + [1620] = {.lex_state = 13, .external_lex_state = 75}, + [1621] = {.lex_state = 13, .external_lex_state = 75}, + [1622] = {.lex_state = 13, .external_lex_state = 75}, + [1623] = {.lex_state = 13, .external_lex_state = 75}, + [1624] = {.lex_state = 13, .external_lex_state = 75}, + [1625] = {.lex_state = 13, .external_lex_state = 75}, + [1626] = {.lex_state = 13, .external_lex_state = 75}, [1627] = {.lex_state = 13, .external_lex_state = 69}, - [1628] = {.lex_state = 13, .external_lex_state = 69}, - [1629] = {.lex_state = 13}, - [1630] = {.lex_state = 13, .external_lex_state = 74}, - [1631] = {.lex_state = 13, .external_lex_state = 69}, - [1632] = {.lex_state = 13, .external_lex_state = 74}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 8}, - [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 13, .external_lex_state = 74}, - [1637] = {.lex_state = 13, .external_lex_state = 74}, - [1638] = {.lex_state = 13, .external_lex_state = 69}, - [1639] = {.lex_state = 7}, - [1640] = {.lex_state = 13, .external_lex_state = 64}, - [1641] = {.lex_state = 7, .external_lex_state = 75}, - [1642] = {.lex_state = 7, .external_lex_state = 57}, - [1643] = {.lex_state = 7, .external_lex_state = 57}, - [1644] = {.lex_state = 13, .external_lex_state = 64}, - [1645] = {.lex_state = 13, .external_lex_state = 64}, - [1646] = {.lex_state = 13, .external_lex_state = 64}, - [1647] = {.lex_state = 13}, - [1648] = {.lex_state = 7, .external_lex_state = 57}, - [1649] = {.lex_state = 7, .external_lex_state = 57}, + [1628] = {.lex_state = 11}, + [1629] = {.lex_state = 13, .external_lex_state = 75}, + [1630] = {.lex_state = 13, .external_lex_state = 75}, + [1631] = {.lex_state = 13, .external_lex_state = 75}, + [1632] = {.lex_state = 8}, + [1633] = {.lex_state = 13, .external_lex_state = 75}, + [1634] = {.lex_state = 13, .external_lex_state = 75}, + [1635] = {.lex_state = 13, .external_lex_state = 75}, + [1636] = {.lex_state = 13, .external_lex_state = 75}, + [1637] = {.lex_state = 13, .external_lex_state = 69}, + [1638] = {.lex_state = 13, .external_lex_state = 75}, + [1639] = {.lex_state = 13, .external_lex_state = 75}, + [1640] = {.lex_state = 13, .external_lex_state = 75}, + [1641] = {.lex_state = 13, .external_lex_state = 75}, + [1642] = {.lex_state = 13, .external_lex_state = 75}, + [1643] = {.lex_state = 7, .external_lex_state = 56}, + [1644] = {.lex_state = 7, .external_lex_state = 56}, + [1645] = {.lex_state = 13, .external_lex_state = 63}, + [1646] = {.lex_state = 13, .external_lex_state = 63}, + [1647] = {.lex_state = 7}, + [1648] = {.lex_state = 13}, + [1649] = {.lex_state = 13, .external_lex_state = 63}, [1650] = {.lex_state = 13, .external_lex_state = 64}, - [1651] = {.lex_state = 13, .external_lex_state = 64}, - [1652] = {.lex_state = 13, .external_lex_state = 64}, - [1653] = {.lex_state = 13, .external_lex_state = 64}, - [1654] = {.lex_state = 13, .external_lex_state = 64}, - [1655] = {.lex_state = 13, .external_lex_state = 64}, - [1656] = {.lex_state = 13, .external_lex_state = 64}, - [1657] = {.lex_state = 13, .external_lex_state = 64}, - [1658] = {.lex_state = 13, .external_lex_state = 64}, - [1659] = {.lex_state = 13}, - [1660] = {.lex_state = 13, .external_lex_state = 64}, + [1651] = {.lex_state = 13}, + [1652] = {.lex_state = 13, .external_lex_state = 63}, + [1653] = {.lex_state = 13, .external_lex_state = 63}, + [1654] = {.lex_state = 13, .external_lex_state = 63}, + [1655] = {.lex_state = 13, .external_lex_state = 63}, + [1656] = {.lex_state = 13, .external_lex_state = 63}, + [1657] = {.lex_state = 13, .external_lex_state = 63}, + [1658] = {.lex_state = 13, .external_lex_state = 63}, + [1659] = {.lex_state = 13, .external_lex_state = 63}, + [1660] = {.lex_state = 13, .external_lex_state = 63}, [1661] = {.lex_state = 13, .external_lex_state = 64}, - [1662] = {.lex_state = 13, .external_lex_state = 64}, - [1663] = {.lex_state = 13, .external_lex_state = 64}, - [1664] = {.lex_state = 13, .external_lex_state = 64}, - [1665] = {.lex_state = 13}, - [1666] = {.lex_state = 13, .external_lex_state = 64}, - [1667] = {.lex_state = 13, .external_lex_state = 64}, - [1668] = {.lex_state = 13, .external_lex_state = 64}, - [1669] = {.lex_state = 13, .external_lex_state = 64}, - [1670] = {.lex_state = 13, .external_lex_state = 64}, - [1671] = {.lex_state = 7, .external_lex_state = 76}, - [1672] = {.lex_state = 13, .external_lex_state = 64}, - [1673] = {.lex_state = 13, .external_lex_state = 64}, - [1674] = {.lex_state = 13}, - [1675] = {.lex_state = 13, .external_lex_state = 64}, - [1676] = {.lex_state = 13}, - [1677] = {.lex_state = 13, .external_lex_state = 64}, - [1678] = {.lex_state = 13, .external_lex_state = 64}, - [1679] = {.lex_state = 13, .external_lex_state = 64}, - [1680] = {.lex_state = 13, .external_lex_state = 64}, - [1681] = {.lex_state = 13, .external_lex_state = 64}, - [1682] = {.lex_state = 13, .external_lex_state = 64}, - [1683] = {.lex_state = 13}, - [1684] = {.lex_state = 13, .external_lex_state = 64}, - [1685] = {.lex_state = 13, .external_lex_state = 64}, - [1686] = {.lex_state = 13, .external_lex_state = 64}, - [1687] = {.lex_state = 13}, - [1688] = {.lex_state = 13, .external_lex_state = 64}, - [1689] = {.lex_state = 13, .external_lex_state = 64}, - [1690] = {.lex_state = 13, .external_lex_state = 64}, - [1691] = {.lex_state = 7, .external_lex_state = 57}, - [1692] = {.lex_state = 13, .external_lex_state = 64}, - [1693] = {.lex_state = 13, .external_lex_state = 64}, - [1694] = {.lex_state = 13, .external_lex_state = 68}, - [1695] = {.lex_state = 13, .external_lex_state = 64}, - [1696] = {.lex_state = 13, .external_lex_state = 64}, - [1697] = {.lex_state = 7, .external_lex_state = 57}, - [1698] = {.lex_state = 7, .external_lex_state = 57}, - [1699] = {.lex_state = 13, .external_lex_state = 68}, - [1700] = {.lex_state = 7, .external_lex_state = 57}, - [1701] = {.lex_state = 7, .external_lex_state = 57}, - [1702] = {.lex_state = 13, .external_lex_state = 68}, - [1703] = {.lex_state = 13, .external_lex_state = 68}, - [1704] = {.lex_state = 13, .external_lex_state = 77}, - [1705] = {.lex_state = 7}, - [1706] = {.lex_state = 7}, - [1707] = {.lex_state = 13, .external_lex_state = 78}, - [1708] = {.lex_state = 7, .external_lex_state = 57}, + [1662] = {.lex_state = 13, .external_lex_state = 63}, + [1663] = {.lex_state = 13, .external_lex_state = 63}, + [1664] = {.lex_state = 13, .external_lex_state = 63}, + [1665] = {.lex_state = 13, .external_lex_state = 63}, + [1666] = {.lex_state = 13, .external_lex_state = 63}, + [1667] = {.lex_state = 13, .external_lex_state = 63}, + [1668] = {.lex_state = 13, .external_lex_state = 63}, + [1669] = {.lex_state = 13, .external_lex_state = 63}, + [1670] = {.lex_state = 13, .external_lex_state = 63}, + [1671] = {.lex_state = 13, .external_lex_state = 63}, + [1672] = {.lex_state = 13, .external_lex_state = 63}, + [1673] = {.lex_state = 13, .external_lex_state = 63}, + [1674] = {.lex_state = 13, .external_lex_state = 63}, + [1675] = {.lex_state = 7, .external_lex_state = 56}, + [1676] = {.lex_state = 13, .external_lex_state = 63}, + [1677] = {.lex_state = 13, .external_lex_state = 63}, + [1678] = {.lex_state = 13, .external_lex_state = 63}, + [1679] = {.lex_state = 13, .external_lex_state = 63}, + [1680] = {.lex_state = 13, .external_lex_state = 63}, + [1681] = {.lex_state = 13, .external_lex_state = 63}, + [1682] = {.lex_state = 13, .external_lex_state = 63}, + [1683] = {.lex_state = 7, .external_lex_state = 76}, + [1684] = {.lex_state = 13, .external_lex_state = 63}, + [1685] = {.lex_state = 13, .external_lex_state = 63}, + [1686] = {.lex_state = 13, .external_lex_state = 63}, + [1687] = {.lex_state = 13, .external_lex_state = 63}, + [1688] = {.lex_state = 13, .external_lex_state = 63}, + [1689] = {.lex_state = 13, .external_lex_state = 63}, + [1690] = {.lex_state = 13, .external_lex_state = 63}, + [1691] = {.lex_state = 13, .external_lex_state = 63}, + [1692] = {.lex_state = 13}, + [1693] = {.lex_state = 13}, + [1694] = {.lex_state = 13, .external_lex_state = 64}, + [1695] = {.lex_state = 13, .external_lex_state = 63}, + [1696] = {.lex_state = 13}, + [1697] = {.lex_state = 7, .external_lex_state = 56}, + [1698] = {.lex_state = 7, .external_lex_state = 74}, + [1699] = {.lex_state = 7, .external_lex_state = 56}, + [1700] = {.lex_state = 13}, + [1701] = {.lex_state = 13}, + [1702] = {.lex_state = 7, .external_lex_state = 56}, + [1703] = {.lex_state = 7, .external_lex_state = 56}, + [1704] = {.lex_state = 13, .external_lex_state = 63}, + [1705] = {.lex_state = 13, .external_lex_state = 64}, + [1706] = {.lex_state = 7, .external_lex_state = 56}, + [1707] = {.lex_state = 7, .external_lex_state = 56}, + [1708] = {.lex_state = 7, .external_lex_state = 56}, [1709] = {.lex_state = 7}, - [1710] = {.lex_state = 8, .external_lex_state = 79}, - [1711] = {.lex_state = 7}, - [1712] = {.lex_state = 7}, + [1710] = {.lex_state = 7}, + [1711] = {.lex_state = 13, .external_lex_state = 77}, + [1712] = {.lex_state = 13, .external_lex_state = 78}, [1713] = {.lex_state = 7}, - [1714] = {.lex_state = 7}, + [1714] = {.lex_state = 11, .external_lex_state = 79}, [1715] = {.lex_state = 7}, - [1716] = {.lex_state = 13, .external_lex_state = 80}, + [1716] = {.lex_state = 8, .external_lex_state = 79}, [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 7}, + [1718] = {.lex_state = 13, .external_lex_state = 80}, [1719] = {.lex_state = 10}, - [1720] = {.lex_state = 7}, - [1721] = {.lex_state = 11, .external_lex_state = 79}, + [1720] = {.lex_state = 10}, + [1721] = {.lex_state = 12, .external_lex_state = 79}, [1722] = {.lex_state = 7}, [1723] = {.lex_state = 7}, [1724] = {.lex_state = 7}, [1725] = {.lex_state = 7}, [1726] = {.lex_state = 7}, - [1727] = {.lex_state = 7}, - [1728] = {.lex_state = 7}, + [1727] = {.lex_state = 13, .external_lex_state = 77}, + [1728] = {.lex_state = 14, .external_lex_state = 79}, [1729] = {.lex_state = 7}, [1730] = {.lex_state = 7}, - [1731] = {.lex_state = 7}, - [1732] = {.lex_state = 14, .external_lex_state = 81}, - [1733] = {.lex_state = 10}, + [1731] = {.lex_state = 13, .external_lex_state = 81}, + [1732] = {.lex_state = 11, .external_lex_state = 82}, + [1733] = {.lex_state = 7}, [1734] = {.lex_state = 7}, [1735] = {.lex_state = 7}, [1736] = {.lex_state = 7}, - [1737] = {.lex_state = 7}, + [1737] = {.lex_state = 8, .external_lex_state = 82}, [1738] = {.lex_state = 7}, - [1739] = {.lex_state = 8, .external_lex_state = 81}, - [1740] = {.lex_state = 13, .external_lex_state = 82}, - [1741] = {.lex_state = 13, .external_lex_state = 83}, - [1742] = {.lex_state = 13, .external_lex_state = 84}, - [1743] = {.lex_state = 12, .external_lex_state = 79}, - [1744] = {.lex_state = 11, .external_lex_state = 81}, - [1745] = {.lex_state = 7}, - [1746] = {.lex_state = 10}, + [1739] = {.lex_state = 7, .external_lex_state = 56}, + [1740] = {.lex_state = 7}, + [1741] = {.lex_state = 7}, + [1742] = {.lex_state = 7}, + [1743] = {.lex_state = 14, .external_lex_state = 82}, + [1744] = {.lex_state = 7}, + [1745] = {.lex_state = 10}, + [1746] = {.lex_state = 7}, [1747] = {.lex_state = 7}, - [1748] = {.lex_state = 13, .external_lex_state = 80}, - [1749] = {.lex_state = 12, .external_lex_state = 81}, + [1748] = {.lex_state = 7}, + [1749] = {.lex_state = 7}, [1750] = {.lex_state = 7}, [1751] = {.lex_state = 7}, - [1752] = {.lex_state = 14, .external_lex_state = 79}, + [1752] = {.lex_state = 12, .external_lex_state = 82}, [1753] = {.lex_state = 7}, [1754] = {.lex_state = 7}, - [1755] = {.lex_state = 11, .external_lex_state = 57}, - [1756] = {.lex_state = 12, .external_lex_state = 69}, + [1755] = {.lex_state = 7}, + [1756] = {.lex_state = 13, .external_lex_state = 83}, [1757] = {.lex_state = 7}, - [1758] = {.lex_state = 13, .external_lex_state = 79}, + [1758] = {.lex_state = 13, .external_lex_state = 84}, [1759] = {.lex_state = 11, .external_lex_state = 69}, - [1760] = {.lex_state = 7}, - [1761] = {.lex_state = 13, .external_lex_state = 59}, - [1762] = {.lex_state = 7}, - [1763] = {.lex_state = 8, .external_lex_state = 57}, - [1764] = {.lex_state = 13, .external_lex_state = 85}, - [1765] = {.lex_state = 13, .external_lex_state = 60}, - [1766] = {.lex_state = 8, .external_lex_state = 76}, - [1767] = {.lex_state = 8, .external_lex_state = 69}, + [1760] = {.lex_state = 13, .external_lex_state = 82}, + [1761] = {.lex_state = 11, .external_lex_state = 56}, + [1762] = {.lex_state = 13, .external_lex_state = 82}, + [1763] = {.lex_state = 13, .external_lex_state = 82}, + [1764] = {.lex_state = 8, .external_lex_state = 69}, + [1765] = {.lex_state = 8, .external_lex_state = 56}, + [1766] = {.lex_state = 12, .external_lex_state = 76}, + [1767] = {.lex_state = 13, .external_lex_state = 85}, [1768] = {.lex_state = 7}, - [1769] = {.lex_state = 14, .external_lex_state = 69}, - [1770] = {.lex_state = 8, .external_lex_state = 69}, - [1771] = {.lex_state = 14, .external_lex_state = 69}, - [1772] = {.lex_state = 13, .external_lex_state = 79}, - [1773] = {.lex_state = 8, .external_lex_state = 57}, - [1774] = {.lex_state = 7}, - [1775] = {.lex_state = 13}, - [1776] = {.lex_state = 12, .external_lex_state = 76}, - [1777] = {.lex_state = 13, .external_lex_state = 60}, - [1778] = {.lex_state = 13, .external_lex_state = 79}, - [1779] = {.lex_state = 13, .external_lex_state = 81}, - [1780] = {.lex_state = 13, .external_lex_state = 86}, - [1781] = {.lex_state = 12, .external_lex_state = 57}, - [1782] = {.lex_state = 13, .external_lex_state = 59}, - [1783] = {.lex_state = 11, .external_lex_state = 69}, + [1769] = {.lex_state = 11, .external_lex_state = 69}, + [1770] = {.lex_state = 12, .external_lex_state = 69}, + [1771] = {.lex_state = 11, .external_lex_state = 76}, + [1772] = {.lex_state = 7}, + [1773] = {.lex_state = 13, .external_lex_state = 59}, + [1774] = {.lex_state = 13, .external_lex_state = 82}, + [1775] = {.lex_state = 13, .external_lex_state = 59}, + [1776] = {.lex_state = 13, .external_lex_state = 60}, + [1777] = {.lex_state = 7}, + [1778] = {.lex_state = 13, .external_lex_state = 60}, + [1779] = {.lex_state = 8, .external_lex_state = 69}, + [1780] = {.lex_state = 14, .external_lex_state = 69}, + [1781] = {.lex_state = 13, .external_lex_state = 79}, + [1782] = {.lex_state = 13, .external_lex_state = 86}, + [1783] = {.lex_state = 12, .external_lex_state = 56}, [1784] = {.lex_state = 7}, [1785] = {.lex_state = 12, .external_lex_state = 69}, - [1786] = {.lex_state = 13, .external_lex_state = 79}, + [1786] = {.lex_state = 7}, [1787] = {.lex_state = 7}, - [1788] = {.lex_state = 11, .external_lex_state = 76}, - [1789] = {.lex_state = 13, .external_lex_state = 57}, - [1790] = {.lex_state = 11}, - [1791] = {.lex_state = 13, .external_lex_state = 68}, - [1792] = {.lex_state = 13, .external_lex_state = 68}, - [1793] = {.lex_state = 13, .external_lex_state = 68}, - [1794] = {.lex_state = 12}, - [1795] = {.lex_state = 13, .external_lex_state = 76}, - [1796] = {.lex_state = 13, .external_lex_state = 69}, - [1797] = {.lex_state = 13, .external_lex_state = 69}, - [1798] = {.lex_state = 8}, - [1799] = {.lex_state = 11}, - [1800] = {.lex_state = 8}, + [1788] = {.lex_state = 8, .external_lex_state = 56}, + [1789] = {.lex_state = 13}, + [1790] = {.lex_state = 8, .external_lex_state = 76}, + [1791] = {.lex_state = 7}, + [1792] = {.lex_state = 7}, + [1793] = {.lex_state = 14, .external_lex_state = 69}, + [1794] = {.lex_state = 13, .external_lex_state = 64}, + [1795] = {.lex_state = 13, .external_lex_state = 69}, + [1796] = {.lex_state = 11}, + [1797] = {.lex_state = 13, .external_lex_state = 64}, + [1798] = {.lex_state = 11}, + [1799] = {.lex_state = 13, .external_lex_state = 64}, + [1800] = {.lex_state = 13, .external_lex_state = 64}, [1801] = {.lex_state = 13, .external_lex_state = 69}, - [1802] = {.lex_state = 13, .external_lex_state = 69}, - [1803] = {.lex_state = 13, .external_lex_state = 69}, - [1804] = {.lex_state = 13, .external_lex_state = 68}, - [1805] = {.lex_state = 13, .external_lex_state = 69}, - [1806] = {.lex_state = 13, .external_lex_state = 69}, - [1807] = {.lex_state = 13, .external_lex_state = 68}, - [1808] = {.lex_state = 13, .external_lex_state = 68}, - [1809] = {.lex_state = 13, .external_lex_state = 68}, - [1810] = {.lex_state = 13, .external_lex_state = 68}, - [1811] = {.lex_state = 13, .external_lex_state = 68}, - [1812] = {.lex_state = 13, .external_lex_state = 68}, - [1813] = {.lex_state = 13, .external_lex_state = 68}, - [1814] = {.lex_state = 13, .external_lex_state = 68}, - [1815] = {.lex_state = 12}, - [1816] = {.lex_state = 13, .external_lex_state = 57}, - [1817] = {.lex_state = 8}, - [1818] = {.lex_state = 13, .external_lex_state = 68}, - [1819] = {.lex_state = 13, .external_lex_state = 68}, - [1820] = {.lex_state = 13, .external_lex_state = 68}, - [1821] = {.lex_state = 13, .external_lex_state = 57}, - [1822] = {.lex_state = 13, .external_lex_state = 68}, - [1823] = {.lex_state = 13}, - [1824] = {.lex_state = 10, .external_lex_state = 57}, - [1825] = {.lex_state = 13}, - [1826] = {.lex_state = 13}, - [1827] = {.lex_state = 10, .external_lex_state = 76}, + [1802] = {.lex_state = 13, .external_lex_state = 56}, + [1803] = {.lex_state = 13, .external_lex_state = 56}, + [1804] = {.lex_state = 13, .external_lex_state = 69}, + [1805] = {.lex_state = 13, .external_lex_state = 64}, + [1806] = {.lex_state = 13, .external_lex_state = 64}, + [1807] = {.lex_state = 13, .external_lex_state = 69}, + [1808] = {.lex_state = 13, .external_lex_state = 64}, + [1809] = {.lex_state = 8}, + [1810] = {.lex_state = 8}, + [1811] = {.lex_state = 13, .external_lex_state = 64}, + [1812] = {.lex_state = 13, .external_lex_state = 64}, + [1813] = {.lex_state = 13, .external_lex_state = 76}, + [1814] = {.lex_state = 13, .external_lex_state = 64}, + [1815] = {.lex_state = 13, .external_lex_state = 69}, + [1816] = {.lex_state = 13, .external_lex_state = 64}, + [1817] = {.lex_state = 13, .external_lex_state = 56}, + [1818] = {.lex_state = 13, .external_lex_state = 69}, + [1819] = {.lex_state = 13, .external_lex_state = 69}, + [1820] = {.lex_state = 12}, + [1821] = {.lex_state = 13, .external_lex_state = 64}, + [1822] = {.lex_state = 13, .external_lex_state = 64}, + [1823] = {.lex_state = 12}, + [1824] = {.lex_state = 13, .external_lex_state = 64}, + [1825] = {.lex_state = 8}, + [1826] = {.lex_state = 13, .external_lex_state = 64}, + [1827] = {.lex_state = 13, .external_lex_state = 64}, [1828] = {.lex_state = 13}, [1829] = {.lex_state = 13}, [1830] = {.lex_state = 13}, @@ -25361,57 +25368,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1838] = {.lex_state = 13}, [1839] = {.lex_state = 13}, [1840] = {.lex_state = 13}, - [1841] = {.lex_state = 13}, - [1842] = {.lex_state = 13}, - [1843] = {.lex_state = 10}, - [1844] = {.lex_state = 10}, + [1841] = {.lex_state = 10, .external_lex_state = 56}, + [1842] = {.lex_state = 10, .external_lex_state = 76}, + [1843] = {.lex_state = 13}, + [1844] = {.lex_state = 13}, [1845] = {.lex_state = 13}, [1846] = {.lex_state = 13}, [1847] = {.lex_state = 13}, - [1848] = {.lex_state = 0, .external_lex_state = 64}, - [1849] = {.lex_state = 0, .external_lex_state = 64}, - [1850] = {.lex_state = 0, .external_lex_state = 64}, - [1851] = {.lex_state = 0, .external_lex_state = 64}, - [1852] = {.lex_state = 0, .external_lex_state = 64}, - [1853] = {.lex_state = 0, .external_lex_state = 64}, - [1854] = {.lex_state = 0, .external_lex_state = 64}, - [1855] = {.lex_state = 0, .external_lex_state = 64}, - [1856] = {.lex_state = 0, .external_lex_state = 64}, - [1857] = {.lex_state = 0, .external_lex_state = 64}, - [1858] = {.lex_state = 0, .external_lex_state = 64}, - [1859] = {.lex_state = 0, .external_lex_state = 64}, - [1860] = {.lex_state = 0, .external_lex_state = 64}, - [1861] = {.lex_state = 0, .external_lex_state = 64}, - [1862] = {.lex_state = 0, .external_lex_state = 64}, - [1863] = {.lex_state = 0, .external_lex_state = 64}, - [1864] = {.lex_state = 0, .external_lex_state = 64}, - [1865] = {.lex_state = 0, .external_lex_state = 64}, - [1866] = {.lex_state = 0, .external_lex_state = 64}, - [1867] = {.lex_state = 0, .external_lex_state = 64}, - [1868] = {.lex_state = 0, .external_lex_state = 64}, - [1869] = {.lex_state = 0, .external_lex_state = 64}, - [1870] = {.lex_state = 0, .external_lex_state = 64}, - [1871] = {.lex_state = 0, .external_lex_state = 64}, - [1872] = {.lex_state = 0, .external_lex_state = 64}, - [1873] = {.lex_state = 0, .external_lex_state = 64}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0, .external_lex_state = 64}, - [1876] = {.lex_state = 0, .external_lex_state = 64}, - [1877] = {.lex_state = 0, .external_lex_state = 64}, - [1878] = {.lex_state = 0, .external_lex_state = 64}, - [1879] = {.lex_state = 0, .external_lex_state = 64}, - [1880] = {.lex_state = 0, .external_lex_state = 64}, - [1881] = {.lex_state = 0, .external_lex_state = 64}, - [1882] = {.lex_state = 0, .external_lex_state = 64}, - [1883] = {.lex_state = 0, .external_lex_state = 64}, - [1884] = {.lex_state = 0, .external_lex_state = 64}, - [1885] = {.lex_state = 0, .external_lex_state = 64}, - [1886] = {.lex_state = 0, .external_lex_state = 64}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, + [1848] = {.lex_state = 10}, + [1849] = {.lex_state = 10}, + [1850] = {.lex_state = 13}, + [1851] = {.lex_state = 13}, + [1852] = {.lex_state = 13}, + [1853] = {.lex_state = 0, .external_lex_state = 63}, + [1854] = {.lex_state = 0, .external_lex_state = 63}, + [1855] = {.lex_state = 0, .external_lex_state = 63}, + [1856] = {.lex_state = 0, .external_lex_state = 63}, + [1857] = {.lex_state = 0, .external_lex_state = 63}, + [1858] = {.lex_state = 0, .external_lex_state = 63}, + [1859] = {.lex_state = 0, .external_lex_state = 63}, + [1860] = {.lex_state = 0, .external_lex_state = 63}, + [1861] = {.lex_state = 0, .external_lex_state = 63}, + [1862] = {.lex_state = 0, .external_lex_state = 63}, + [1863] = {.lex_state = 0, .external_lex_state = 63}, + [1864] = {.lex_state = 0, .external_lex_state = 63}, + [1865] = {.lex_state = 0, .external_lex_state = 63}, + [1866] = {.lex_state = 0, .external_lex_state = 63}, + [1867] = {.lex_state = 0, .external_lex_state = 63}, + [1868] = {.lex_state = 0, .external_lex_state = 63}, + [1869] = {.lex_state = 0, .external_lex_state = 63}, + [1870] = {.lex_state = 0, .external_lex_state = 63}, + [1871] = {.lex_state = 0, .external_lex_state = 63}, + [1872] = {.lex_state = 0, .external_lex_state = 63}, + [1873] = {.lex_state = 0, .external_lex_state = 63}, + [1874] = {.lex_state = 0, .external_lex_state = 63}, + [1875] = {.lex_state = 0, .external_lex_state = 63}, + [1876] = {.lex_state = 0, .external_lex_state = 63}, + [1877] = {.lex_state = 0, .external_lex_state = 63}, + [1878] = {.lex_state = 0, .external_lex_state = 63}, + [1879] = {.lex_state = 0, .external_lex_state = 63}, + [1880] = {.lex_state = 0, .external_lex_state = 63}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0, .external_lex_state = 63}, + [1883] = {.lex_state = 0, .external_lex_state = 63}, + [1884] = {.lex_state = 0, .external_lex_state = 63}, + [1885] = {.lex_state = 0, .external_lex_state = 63}, + [1886] = {.lex_state = 0, .external_lex_state = 63}, + [1887] = {.lex_state = 0, .external_lex_state = 63}, + [1888] = {.lex_state = 0, .external_lex_state = 63}, + [1889] = {.lex_state = 0, .external_lex_state = 63}, + [1890] = {.lex_state = 0, .external_lex_state = 63}, + [1891] = {.lex_state = 0, .external_lex_state = 63}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, [1894] = {.lex_state = 0}, @@ -25419,184 +25426,184 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 15}, - [1900] = {.lex_state = 16}, - [1901] = {.lex_state = 15}, + [1899] = {.lex_state = 0}, + [1900] = {.lex_state = 0}, + [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 16}, - [1905] = {.lex_state = 15}, - [1906] = {.lex_state = 15}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0, .external_lex_state = 87}, - [1909] = {.lex_state = 0}, + [1904] = {.lex_state = 15}, + [1905] = {.lex_state = 16}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 15}, + [1908] = {.lex_state = 15}, + [1909] = {.lex_state = 15}, [1910] = {.lex_state = 15}, - [1911] = {.lex_state = 16}, + [1911] = {.lex_state = 15}, [1912] = {.lex_state = 15}, - [1913] = {.lex_state = 16}, + [1913] = {.lex_state = 15, .external_lex_state = 61}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 16, .external_lex_state = 61}, - [1917] = {.lex_state = 15}, + [1915] = {.lex_state = 16}, + [1916] = {.lex_state = 16}, + [1917] = {.lex_state = 0}, [1918] = {.lex_state = 15}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 15}, + [1919] = {.lex_state = 15}, + [1920] = {.lex_state = 0}, [1921] = {.lex_state = 15}, [1922] = {.lex_state = 15}, - [1923] = {.lex_state = 15, .external_lex_state = 61}, + [1923] = {.lex_state = 16}, [1924] = {.lex_state = 15}, [1925] = {.lex_state = 15}, [1926] = {.lex_state = 15}, - [1927] = {.lex_state = 16, .external_lex_state = 64}, - [1928] = {.lex_state = 15, .external_lex_state = 64}, - [1929] = {.lex_state = 15, .external_lex_state = 64}, - [1930] = {.lex_state = 15, .external_lex_state = 64}, - [1931] = {.lex_state = 15}, - [1932] = {.lex_state = 16, .external_lex_state = 64}, - [1933] = {.lex_state = 16, .external_lex_state = 64}, - [1934] = {.lex_state = 16, .external_lex_state = 64}, - [1935] = {.lex_state = 16, .external_lex_state = 64}, - [1936] = {.lex_state = 16, .external_lex_state = 64}, - [1937] = {.lex_state = 16, .external_lex_state = 64}, - [1938] = {.lex_state = 15, .external_lex_state = 64}, - [1939] = {.lex_state = 16, .external_lex_state = 64}, - [1940] = {.lex_state = 16, .external_lex_state = 64}, - [1941] = {.lex_state = 16, .external_lex_state = 64}, - [1942] = {.lex_state = 15, .external_lex_state = 64}, - [1943] = {.lex_state = 16, .external_lex_state = 64}, - [1944] = {.lex_state = 15, .external_lex_state = 64}, - [1945] = {.lex_state = 15, .external_lex_state = 64}, - [1946] = {.lex_state = 16, .external_lex_state = 64}, - [1947] = {.lex_state = 15}, - [1948] = {.lex_state = 15, .external_lex_state = 64}, - [1949] = {.lex_state = 0, .external_lex_state = 88}, - [1950] = {.lex_state = 0, .external_lex_state = 88}, - [1951] = {.lex_state = 0, .external_lex_state = 88}, - [1952] = {.lex_state = 0, .external_lex_state = 88}, - [1953] = {.lex_state = 16, .external_lex_state = 64}, - [1954] = {.lex_state = 16, .external_lex_state = 64}, - [1955] = {.lex_state = 15, .external_lex_state = 64}, - [1956] = {.lex_state = 15, .external_lex_state = 64}, - [1957] = {.lex_state = 16, .external_lex_state = 64}, - [1958] = {.lex_state = 16, .external_lex_state = 64}, - [1959] = {.lex_state = 16, .external_lex_state = 64}, - [1960] = {.lex_state = 15}, - [1961] = {.lex_state = 15, .external_lex_state = 64}, - [1962] = {.lex_state = 16, .external_lex_state = 64}, - [1963] = {.lex_state = 15, .external_lex_state = 64}, - [1964] = {.lex_state = 15, .external_lex_state = 64}, - [1965] = {.lex_state = 15, .external_lex_state = 64}, - [1966] = {.lex_state = 16, .external_lex_state = 64}, - [1967] = {.lex_state = 15, .external_lex_state = 64}, - [1968] = {.lex_state = 16, .external_lex_state = 64}, - [1969] = {.lex_state = 16, .external_lex_state = 64}, - [1970] = {.lex_state = 16, .external_lex_state = 64}, - [1971] = {.lex_state = 15, .external_lex_state = 64}, - [1972] = {.lex_state = 15, .external_lex_state = 64}, - [1973] = {.lex_state = 15, .external_lex_state = 64}, - [1974] = {.lex_state = 16, .external_lex_state = 64}, - [1975] = {.lex_state = 15, .external_lex_state = 64}, - [1976] = {.lex_state = 16, .external_lex_state = 64}, - [1977] = {.lex_state = 16, .external_lex_state = 64}, - [1978] = {.lex_state = 16, .external_lex_state = 64}, - [1979] = {.lex_state = 16, .external_lex_state = 64}, - [1980] = {.lex_state = 16, .external_lex_state = 64}, - [1981] = {.lex_state = 16, .external_lex_state = 64}, - [1982] = {.lex_state = 16, .external_lex_state = 64}, - [1983] = {.lex_state = 16, .external_lex_state = 64}, - [1984] = {.lex_state = 16, .external_lex_state = 64}, - [1985] = {.lex_state = 16, .external_lex_state = 64}, - [1986] = {.lex_state = 15}, - [1987] = {.lex_state = 15}, - [1988] = {.lex_state = 16, .external_lex_state = 64}, - [1989] = {.lex_state = 15, .external_lex_state = 64}, - [1990] = {.lex_state = 15, .external_lex_state = 64}, - [1991] = {.lex_state = 15, .external_lex_state = 64}, - [1992] = {.lex_state = 15, .external_lex_state = 64}, - [1993] = {.lex_state = 15, .external_lex_state = 64}, - [1994] = {.lex_state = 16, .external_lex_state = 64}, - [1995] = {.lex_state = 16, .external_lex_state = 64}, - [1996] = {.lex_state = 15, .external_lex_state = 64}, - [1997] = {.lex_state = 15, .external_lex_state = 64}, - [1998] = {.lex_state = 15}, - [1999] = {.lex_state = 15, .external_lex_state = 64}, - [2000] = {.lex_state = 15, .external_lex_state = 64}, - [2001] = {.lex_state = 15, .external_lex_state = 64}, - [2002] = {.lex_state = 15, .external_lex_state = 64}, - [2003] = {.lex_state = 15}, - [2004] = {.lex_state = 16, .external_lex_state = 64}, - [2005] = {.lex_state = 16, .external_lex_state = 64}, - [2006] = {.lex_state = 16, .external_lex_state = 64}, - [2007] = {.lex_state = 15, .external_lex_state = 64}, - [2008] = {.lex_state = 15, .external_lex_state = 64}, - [2009] = {.lex_state = 15, .external_lex_state = 64}, - [2010] = {.lex_state = 15, .external_lex_state = 64}, - [2011] = {.lex_state = 16}, - [2012] = {.lex_state = 15, .external_lex_state = 64}, - [2013] = {.lex_state = 15, .external_lex_state = 64}, - [2014] = {.lex_state = 15, .external_lex_state = 64}, - [2015] = {.lex_state = 15, .external_lex_state = 64}, - [2016] = {.lex_state = 15, .external_lex_state = 64}, - [2017] = {.lex_state = 15, .external_lex_state = 64}, - [2018] = {.lex_state = 16, .external_lex_state = 64}, - [2019] = {.lex_state = 15, .external_lex_state = 64}, - [2020] = {.lex_state = 16, .external_lex_state = 64}, - [2021] = {.lex_state = 15, .external_lex_state = 64}, - [2022] = {.lex_state = 16, .external_lex_state = 64}, - [2023] = {.lex_state = 2901}, - [2024] = {.lex_state = 2901}, - [2025] = {.lex_state = 2901}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 0, .external_lex_state = 89}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 0, .external_lex_state = 87}, + [1930] = {.lex_state = 16, .external_lex_state = 61}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 15, .external_lex_state = 63}, + [1933] = {.lex_state = 15}, + [1934] = {.lex_state = 15}, + [1935] = {.lex_state = 15, .external_lex_state = 63}, + [1936] = {.lex_state = 15, .external_lex_state = 63}, + [1937] = {.lex_state = 15, .external_lex_state = 63}, + [1938] = {.lex_state = 15, .external_lex_state = 63}, + [1939] = {.lex_state = 15, .external_lex_state = 63}, + [1940] = {.lex_state = 15, .external_lex_state = 63}, + [1941] = {.lex_state = 15, .external_lex_state = 63}, + [1942] = {.lex_state = 15, .external_lex_state = 63}, + [1943] = {.lex_state = 15, .external_lex_state = 63}, + [1944] = {.lex_state = 15, .external_lex_state = 63}, + [1945] = {.lex_state = 15, .external_lex_state = 63}, + [1946] = {.lex_state = 15, .external_lex_state = 63}, + [1947] = {.lex_state = 15, .external_lex_state = 63}, + [1948] = {.lex_state = 15, .external_lex_state = 63}, + [1949] = {.lex_state = 15}, + [1950] = {.lex_state = 15}, + [1951] = {.lex_state = 15, .external_lex_state = 63}, + [1952] = {.lex_state = 15, .external_lex_state = 63}, + [1953] = {.lex_state = 15, .external_lex_state = 63}, + [1954] = {.lex_state = 15, .external_lex_state = 63}, + [1955] = {.lex_state = 15, .external_lex_state = 63}, + [1956] = {.lex_state = 15, .external_lex_state = 63}, + [1957] = {.lex_state = 15, .external_lex_state = 63}, + [1958] = {.lex_state = 15, .external_lex_state = 63}, + [1959] = {.lex_state = 15, .external_lex_state = 63}, + [1960] = {.lex_state = 15, .external_lex_state = 63}, + [1961] = {.lex_state = 15, .external_lex_state = 63}, + [1962] = {.lex_state = 15, .external_lex_state = 63}, + [1963] = {.lex_state = 16, .external_lex_state = 63}, + [1964] = {.lex_state = 16, .external_lex_state = 63}, + [1965] = {.lex_state = 15, .external_lex_state = 63}, + [1966] = {.lex_state = 15, .external_lex_state = 63}, + [1967] = {.lex_state = 16, .external_lex_state = 63}, + [1968] = {.lex_state = 16, .external_lex_state = 63}, + [1969] = {.lex_state = 16, .external_lex_state = 63}, + [1970] = {.lex_state = 16, .external_lex_state = 63}, + [1971] = {.lex_state = 15, .external_lex_state = 63}, + [1972] = {.lex_state = 15, .external_lex_state = 63}, + [1973] = {.lex_state = 15, .external_lex_state = 63}, + [1974] = {.lex_state = 16, .external_lex_state = 63}, + [1975] = {.lex_state = 16, .external_lex_state = 63}, + [1976] = {.lex_state = 16, .external_lex_state = 63}, + [1977] = {.lex_state = 15, .external_lex_state = 63}, + [1978] = {.lex_state = 16, .external_lex_state = 63}, + [1979] = {.lex_state = 15, .external_lex_state = 63}, + [1980] = {.lex_state = 16, .external_lex_state = 63}, + [1981] = {.lex_state = 16, .external_lex_state = 63}, + [1982] = {.lex_state = 16, .external_lex_state = 63}, + [1983] = {.lex_state = 16, .external_lex_state = 63}, + [1984] = {.lex_state = 16, .external_lex_state = 63}, + [1985] = {.lex_state = 16, .external_lex_state = 63}, + [1986] = {.lex_state = 16, .external_lex_state = 63}, + [1987] = {.lex_state = 15, .external_lex_state = 63}, + [1988] = {.lex_state = 16, .external_lex_state = 63}, + [1989] = {.lex_state = 15, .external_lex_state = 63}, + [1990] = {.lex_state = 16, .external_lex_state = 63}, + [1991] = {.lex_state = 16, .external_lex_state = 63}, + [1992] = {.lex_state = 15, .external_lex_state = 63}, + [1993] = {.lex_state = 16}, + [1994] = {.lex_state = 16, .external_lex_state = 63}, + [1995] = {.lex_state = 16, .external_lex_state = 63}, + [1996] = {.lex_state = 16, .external_lex_state = 63}, + [1997] = {.lex_state = 16, .external_lex_state = 63}, + [1998] = {.lex_state = 16, .external_lex_state = 63}, + [1999] = {.lex_state = 16, .external_lex_state = 63}, + [2000] = {.lex_state = 16, .external_lex_state = 63}, + [2001] = {.lex_state = 16, .external_lex_state = 63}, + [2002] = {.lex_state = 16, .external_lex_state = 63}, + [2003] = {.lex_state = 16, .external_lex_state = 63}, + [2004] = {.lex_state = 16, .external_lex_state = 63}, + [2005] = {.lex_state = 15, .external_lex_state = 63}, + [2006] = {.lex_state = 16, .external_lex_state = 63}, + [2007] = {.lex_state = 16, .external_lex_state = 63}, + [2008] = {.lex_state = 16, .external_lex_state = 63}, + [2009] = {.lex_state = 16, .external_lex_state = 63}, + [2010] = {.lex_state = 16, .external_lex_state = 63}, + [2011] = {.lex_state = 16, .external_lex_state = 63}, + [2012] = {.lex_state = 16, .external_lex_state = 63}, + [2013] = {.lex_state = 0, .external_lex_state = 88}, + [2014] = {.lex_state = 0, .external_lex_state = 88}, + [2015] = {.lex_state = 0, .external_lex_state = 88}, + [2016] = {.lex_state = 15, .external_lex_state = 63}, + [2017] = {.lex_state = 15, .external_lex_state = 63}, + [2018] = {.lex_state = 15, .external_lex_state = 63}, + [2019] = {.lex_state = 15, .external_lex_state = 63}, + [2020] = {.lex_state = 16, .external_lex_state = 63}, + [2021] = {.lex_state = 16, .external_lex_state = 63}, + [2022] = {.lex_state = 16, .external_lex_state = 63}, + [2023] = {.lex_state = 16, .external_lex_state = 63}, + [2024] = {.lex_state = 0, .external_lex_state = 88}, + [2025] = {.lex_state = 15}, + [2026] = {.lex_state = 15}, + [2027] = {.lex_state = 15}, + [2028] = {.lex_state = 2901}, + [2029] = {.lex_state = 2901}, + [2030] = {.lex_state = 2901}, + [2031] = {.lex_state = 0, .external_lex_state = 89}, + [2032] = {.lex_state = 0}, [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0, .external_lex_state = 89}, + [2036] = {.lex_state = 0}, [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 0, .external_lex_state = 89}, + [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, [2044] = {.lex_state = 0}, [2045] = {.lex_state = 0}, [2046] = {.lex_state = 0}, [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0, .external_lex_state = 89}, - [2050] = {.lex_state = 0, .external_lex_state = 89}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 0}, [2051] = {.lex_state = 0}, [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, + [2053] = {.lex_state = 15}, [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0, .external_lex_state = 89}, - [2056] = {.lex_state = 0, .external_lex_state = 89}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, [2059] = {.lex_state = 0}, [2060] = {.lex_state = 0}, [2061] = {.lex_state = 0}, [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0, .external_lex_state = 89}, - [2064] = {.lex_state = 0}, + [2063] = {.lex_state = 0}, + [2064] = {.lex_state = 0, .external_lex_state = 89}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 0, .external_lex_state = 89}, + [2066] = {.lex_state = 0, .external_lex_state = 89}, + [2067] = {.lex_state = 0, .external_lex_state = 89}, + [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, [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 = 89}, - [2076] = {.lex_state = 0}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 0, .external_lex_state = 89}, [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, [2079] = {.lex_state = 0}, @@ -25606,8 +25613,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 15}, - [2087] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 0, .external_lex_state = 89}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, @@ -25616,8 +25623,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 0}, + [2096] = {.lex_state = 0, .external_lex_state = 89}, + [2097] = {.lex_state = 0, .external_lex_state = 89}, [2098] = {.lex_state = 0}, [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, @@ -25627,85 +25634,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2104] = {.lex_state = 0}, [2105] = {.lex_state = 0}, [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 0, .external_lex_state = 89}, - [2109] = {.lex_state = 0, .external_lex_state = 90}, - [2110] = {.lex_state = 0, .external_lex_state = 89}, - [2111] = {.lex_state = 0, .external_lex_state = 89}, - [2112] = {.lex_state = 0, .external_lex_state = 89}, + [2107] = {.lex_state = 0, .external_lex_state = 89}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 0, .external_lex_state = 89}, + [2110] = {.lex_state = 0}, + [2111] = {.lex_state = 0}, + [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0, .external_lex_state = 89}, [2114] = {.lex_state = 0, .external_lex_state = 89}, [2115] = {.lex_state = 0, .external_lex_state = 89}, - [2116] = {.lex_state = 0, .external_lex_state = 89}, - [2117] = {.lex_state = 16, .external_lex_state = 76}, - [2118] = {.lex_state = 0, .external_lex_state = 89}, - [2119] = {.lex_state = 0, .external_lex_state = 89}, - [2120] = {.lex_state = 15, .external_lex_state = 76}, - [2121] = {.lex_state = 0, .external_lex_state = 91}, - [2122] = {.lex_state = 15}, - [2123] = {.lex_state = 16}, - [2124] = {.lex_state = 16}, - [2125] = {.lex_state = 16}, - [2126] = {.lex_state = 16}, + [2116] = {.lex_state = 16, .external_lex_state = 76}, + [2117] = {.lex_state = 0, .external_lex_state = 89}, + [2118] = {.lex_state = 0, .external_lex_state = 90}, + [2119] = {.lex_state = 15, .external_lex_state = 76}, + [2120] = {.lex_state = 0, .external_lex_state = 89}, + [2121] = {.lex_state = 0, .external_lex_state = 89}, + [2122] = {.lex_state = 0, .external_lex_state = 89}, + [2123] = {.lex_state = 0, .external_lex_state = 89}, + [2124] = {.lex_state = 0, .external_lex_state = 89}, + [2125] = {.lex_state = 0, .external_lex_state = 89}, + [2126] = {.lex_state = 0, .external_lex_state = 91}, [2127] = {.lex_state = 16}, - [2128] = {.lex_state = 0, .external_lex_state = 92}, + [2128] = {.lex_state = 16}, [2129] = {.lex_state = 16}, [2130] = {.lex_state = 16}, - [2131] = {.lex_state = 0, .external_lex_state = 93}, - [2132] = {.lex_state = 0, .external_lex_state = 94}, - [2133] = {.lex_state = 0, .external_lex_state = 92}, - [2134] = {.lex_state = 16}, + [2131] = {.lex_state = 16}, + [2132] = {.lex_state = 16}, + [2133] = {.lex_state = 0, .external_lex_state = 91}, + [2134] = {.lex_state = 0, .external_lex_state = 92}, [2135] = {.lex_state = 16}, - [2136] = {.lex_state = 0, .external_lex_state = 92}, - [2137] = {.lex_state = 16}, + [2136] = {.lex_state = 16}, + [2137] = {.lex_state = 15}, [2138] = {.lex_state = 16}, - [2139] = {.lex_state = 16}, + [2139] = {.lex_state = 0, .external_lex_state = 91}, [2140] = {.lex_state = 16}, [2141] = {.lex_state = 16}, - [2142] = {.lex_state = 0, .external_lex_state = 92}, + [2142] = {.lex_state = 16}, [2143] = {.lex_state = 16}, - [2144] = {.lex_state = 0, .external_lex_state = 89}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0, .external_lex_state = 89}, - [2147] = {.lex_state = 0, .external_lex_state = 89}, - [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0, .external_lex_state = 95}, - [2152] = {.lex_state = 0, .external_lex_state = 95}, - [2153] = {.lex_state = 0, .external_lex_state = 89}, - [2154] = {.lex_state = 0}, + [2144] = {.lex_state = 0, .external_lex_state = 93}, + [2145] = {.lex_state = 16}, + [2146] = {.lex_state = 16}, + [2147] = {.lex_state = 0, .external_lex_state = 94}, + [2148] = {.lex_state = 0, .external_lex_state = 91}, + [2149] = {.lex_state = 0, .external_lex_state = 95}, + [2150] = {.lex_state = 0, .external_lex_state = 89}, + [2151] = {.lex_state = 0}, + [2152] = {.lex_state = 0, .external_lex_state = 89}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 0, .external_lex_state = 89}, [2155] = {.lex_state = 0}, [2156] = {.lex_state = 0}, [2157] = {.lex_state = 0, .external_lex_state = 89}, [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0, .external_lex_state = 89}, - [2160] = {.lex_state = 0, .external_lex_state = 89}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 0, .external_lex_state = 95}, [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0, .external_lex_state = 89}, - [2163] = {.lex_state = 0, .external_lex_state = 89}, + [2162] = {.lex_state = 0, .external_lex_state = 96}, + [2163] = {.lex_state = 0, .external_lex_state = 70}, [2164] = {.lex_state = 0, .external_lex_state = 89}, - [2165] = {.lex_state = 0, .external_lex_state = 95}, - [2166] = {.lex_state = 0, .external_lex_state = 95}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0, .external_lex_state = 89}, - [2169] = {.lex_state = 0, .external_lex_state = 89}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0, .external_lex_state = 96}, - [2172] = {.lex_state = 0, .external_lex_state = 96}, + [2165] = {.lex_state = 0, .external_lex_state = 96}, + [2166] = {.lex_state = 0, .external_lex_state = 96}, + [2167] = {.lex_state = 0, .external_lex_state = 89}, + [2168] = {.lex_state = 0, .external_lex_state = 96}, + [2169] = {.lex_state = 0, .external_lex_state = 95}, + [2170] = {.lex_state = 0, .external_lex_state = 89}, + [2171] = {.lex_state = 0, .external_lex_state = 95}, + [2172] = {.lex_state = 0, .external_lex_state = 89}, [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0}, + [2174] = {.lex_state = 0, .external_lex_state = 89}, [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0, .external_lex_state = 96}, - [2177] = {.lex_state = 0, .external_lex_state = 96}, - [2178] = {.lex_state = 0, .external_lex_state = 73}, - [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0, .external_lex_state = 73}, - [2181] = {.lex_state = 0, .external_lex_state = 89}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 0, .external_lex_state = 89}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 0, .external_lex_state = 70}, + [2180] = {.lex_state = 0, .external_lex_state = 89}, + [2181] = {.lex_state = 0}, [2182] = {.lex_state = 0}, [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, + [2184] = {.lex_state = 0, .external_lex_state = 89}, + [2185] = {.lex_state = 0, .external_lex_state = 89}, [2186] = {.lex_state = 0}, [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, @@ -25721,10 +25728,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2198] = {.lex_state = 0}, [2199] = {.lex_state = 0}, [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0, .external_lex_state = 97}, + [2201] = {.lex_state = 0}, [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 0, .external_lex_state = 97}, - [2204] = {.lex_state = 0, .external_lex_state = 97}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 0}, [2205] = {.lex_state = 0, .external_lex_state = 97}, [2206] = {.lex_state = 0, .external_lex_state = 97}, [2207] = {.lex_state = 0, .external_lex_state = 97}, @@ -25734,450 +25741,455 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2211] = {.lex_state = 0, .external_lex_state = 97}, [2212] = {.lex_state = 0, .external_lex_state = 97}, [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0, .external_lex_state = 97}, + [2214] = {.lex_state = 0}, [2215] = {.lex_state = 0, .external_lex_state = 97}, [2216] = {.lex_state = 0, .external_lex_state = 97}, [2217] = {.lex_state = 0, .external_lex_state = 97}, [2218] = {.lex_state = 0, .external_lex_state = 97}, - [2219] = {.lex_state = 0, .external_lex_state = 97}, + [2219] = {.lex_state = 0}, [2220] = {.lex_state = 0, .external_lex_state = 97}, - [2221] = {.lex_state = 0}, + [2221] = {.lex_state = 0, .external_lex_state = 97}, [2222] = {.lex_state = 0, .external_lex_state = 97}, [2223] = {.lex_state = 0}, [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 0, .external_lex_state = 59}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0}, + [2225] = {.lex_state = 0, .external_lex_state = 97}, + [2226] = {.lex_state = 0, .external_lex_state = 97}, + [2227] = {.lex_state = 0, .external_lex_state = 97}, [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0}, + [2229] = {.lex_state = 0, .external_lex_state = 97}, [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 0, .external_lex_state = 60}, - [2232] = {.lex_state = 0, .external_lex_state = 59}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, [2233] = {.lex_state = 0}, [2234] = {.lex_state = 0, .external_lex_state = 60}, - [2235] = {.lex_state = 0, .external_lex_state = 59}, - [2236] = {.lex_state = 0, .external_lex_state = 60}, - [2237] = {.lex_state = 0, .external_lex_state = 59}, - [2238] = {.lex_state = 0, .external_lex_state = 60}, + [2235] = {.lex_state = 0}, + [2236] = {.lex_state = 0, .external_lex_state = 59}, + [2237] = {.lex_state = 0}, + [2238] = {.lex_state = 0}, [2239] = {.lex_state = 0}, [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0, .external_lex_state = 59}, - [2242] = {.lex_state = 0, .external_lex_state = 60}, - [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0, .external_lex_state = 59}, - [2245] = {.lex_state = 0, .external_lex_state = 59}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 0, .external_lex_state = 60}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 0, .external_lex_state = 60}, [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 0, .external_lex_state = 60}, + [2247] = {.lex_state = 0}, [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, + [2249] = {.lex_state = 0, .external_lex_state = 59}, [2250] = {.lex_state = 0}, [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, + [2252] = {.lex_state = 0, .external_lex_state = 60}, [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0}, + [2254] = {.lex_state = 0, .external_lex_state = 59}, [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, + [2256] = {.lex_state = 0, .external_lex_state = 60}, + [2257] = {.lex_state = 0, .external_lex_state = 59}, + [2258] = {.lex_state = 0, .external_lex_state = 60}, + [2259] = {.lex_state = 0, .external_lex_state = 59}, [2260] = {.lex_state = 0}, [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 0}, + [2262] = {.lex_state = 0, .external_lex_state = 59}, [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, + [2264] = {.lex_state = 0, .external_lex_state = 60}, [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0, .external_lex_state = 59}, + [2266] = {.lex_state = 0, .external_lex_state = 60}, [2267] = {.lex_state = 0, .external_lex_state = 60}, - [2268] = {.lex_state = 0}, + [2268] = {.lex_state = 0, .external_lex_state = 59}, [2269] = {.lex_state = 0}, [2270] = {.lex_state = 0}, [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0, .external_lex_state = 59}, - [2273] = {.lex_state = 0, .external_lex_state = 60}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, [2274] = {.lex_state = 0}, [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0, .external_lex_state = 59}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0, .external_lex_state = 60}, + [2276] = {.lex_state = 0, .external_lex_state = 60}, + [2277] = {.lex_state = 0}, + [2278] = {.lex_state = 0, .external_lex_state = 59}, + [2279] = {.lex_state = 0}, [2280] = {.lex_state = 0}, [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 0}, - [2284] = {.lex_state = 0}, + [2282] = {.lex_state = 0, .external_lex_state = 60}, + [2283] = {.lex_state = 0, .external_lex_state = 60}, + [2284] = {.lex_state = 0, .external_lex_state = 59}, [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 0}, + [2286] = {.lex_state = 0, .external_lex_state = 59}, [2287] = {.lex_state = 0}, [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, + [2289] = {.lex_state = 0, .external_lex_state = 60}, [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0, .external_lex_state = 60}, + [2291] = {.lex_state = 0, .external_lex_state = 59}, + [2292] = {.lex_state = 0}, [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 0}, + [2294] = {.lex_state = 0, .external_lex_state = 60}, [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, + [2296] = {.lex_state = 0, .external_lex_state = 59}, + [2297] = {.lex_state = 0, .external_lex_state = 60}, [2298] = {.lex_state = 0, .external_lex_state = 59}, [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 0, .external_lex_state = 60}, + [2300] = {.lex_state = 0}, [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 0, .external_lex_state = 59}, + [2302] = {.lex_state = 0}, [2303] = {.lex_state = 0}, [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 0, .external_lex_state = 60}, + [2305] = {.lex_state = 0}, [2306] = {.lex_state = 0}, [2307] = {.lex_state = 0}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 0, .external_lex_state = 59}, + [2308] = {.lex_state = 0, .external_lex_state = 59}, + [2309] = {.lex_state = 0}, [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 0, .external_lex_state = 60}, + [2311] = {.lex_state = 0}, [2312] = {.lex_state = 0}, [2313] = {.lex_state = 0}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0, .external_lex_state = 59}, - [2316] = {.lex_state = 0, .external_lex_state = 60}, - [2317] = {.lex_state = 0}, + [2314] = {.lex_state = 0, .external_lex_state = 60}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 0, .external_lex_state = 59}, + [2317] = {.lex_state = 0, .external_lex_state = 59}, [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0, .external_lex_state = 59}, + [2319] = {.lex_state = 0, .external_lex_state = 60}, [2320] = {.lex_state = 0}, - [2321] = {.lex_state = 0, .external_lex_state = 60}, - [2322] = {.lex_state = 0}, + [2321] = {.lex_state = 0}, + [2322] = {.lex_state = 0, .external_lex_state = 59}, [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 0}, - [2325] = {.lex_state = 0, .external_lex_state = 59}, - [2326] = {.lex_state = 0}, - [2327] = {.lex_state = 0, .external_lex_state = 60}, - [2328] = {.lex_state = 0, .external_lex_state = 59}, + [2324] = {.lex_state = 0, .external_lex_state = 60}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 0, .external_lex_state = 59}, + [2327] = {.lex_state = 0}, + [2328] = {.lex_state = 0}, [2329] = {.lex_state = 0}, - [2330] = {.lex_state = 0}, + [2330] = {.lex_state = 0, .external_lex_state = 60}, [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 0}, + [2332] = {.lex_state = 0, .external_lex_state = 59}, [2333] = {.lex_state = 0}, [2334] = {.lex_state = 0}, [2335] = {.lex_state = 0}, - [2336] = {.lex_state = 0, .external_lex_state = 60}, - [2337] = {.lex_state = 0, .external_lex_state = 59}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 0}, [2338] = {.lex_state = 0}, [2339] = {.lex_state = 0}, [2340] = {.lex_state = 0}, [2341] = {.lex_state = 0}, [2342] = {.lex_state = 0}, [2343] = {.lex_state = 0}, - [2344] = {.lex_state = 0, .external_lex_state = 60}, + [2344] = {.lex_state = 0}, [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 0, .external_lex_state = 59}, - [2347] = {.lex_state = 0}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 0, .external_lex_state = 59}, [2348] = {.lex_state = 0}, - [2349] = {.lex_state = 0}, + [2349] = {.lex_state = 0, .external_lex_state = 60}, [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 0}, + [2351] = {.lex_state = 0, .external_lex_state = 60}, [2352] = {.lex_state = 0}, [2353] = {.lex_state = 0}, [2354] = {.lex_state = 0}, [2355] = {.lex_state = 0}, [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0, .external_lex_state = 60}, + [2357] = {.lex_state = 0}, [2358] = {.lex_state = 0}, [2359] = {.lex_state = 0}, [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0, .external_lex_state = 59}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0, .external_lex_state = 60}, + [2361] = {.lex_state = 0}, + [2362] = {.lex_state = 0, .external_lex_state = 60}, + [2363] = {.lex_state = 0}, [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 0, .external_lex_state = 59}, - [2366] = {.lex_state = 0, .external_lex_state = 60}, + [2365] = {.lex_state = 0, .external_lex_state = 60}, + [2366] = {.lex_state = 0, .external_lex_state = 59}, [2367] = {.lex_state = 0}, [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 0, .external_lex_state = 60}, - [2371] = {.lex_state = 0}, + [2369] = {.lex_state = 0, .external_lex_state = 59}, + [2370] = {.lex_state = 0}, + [2371] = {.lex_state = 0, .external_lex_state = 60}, [2372] = {.lex_state = 0, .external_lex_state = 59}, [2373] = {.lex_state = 0}, [2374] = {.lex_state = 0}, - [2375] = {.lex_state = 0, .external_lex_state = 59}, - [2376] = {.lex_state = 0, .external_lex_state = 60}, - [2377] = {.lex_state = 0, .external_lex_state = 59}, - [2378] = {.lex_state = 0, .external_lex_state = 60}, - [2379] = {.lex_state = 0, .external_lex_state = 59}, - [2380] = {.lex_state = 0, .external_lex_state = 59}, - [2381] = {.lex_state = 0, .external_lex_state = 60}, + [2375] = {.lex_state = 0}, + [2376] = {.lex_state = 0}, + [2377] = {.lex_state = 0}, + [2378] = {.lex_state = 0}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 0}, + [2381] = {.lex_state = 0}, [2382] = {.lex_state = 0, .external_lex_state = 59}, [2383] = {.lex_state = 0}, [2384] = {.lex_state = 0}, [2385] = {.lex_state = 0}, [2386] = {.lex_state = 0}, - [2387] = {.lex_state = 0, .external_lex_state = 60}, - [2388] = {.lex_state = 0, .external_lex_state = 60}, + [2387] = {.lex_state = 0}, + [2388] = {.lex_state = 0}, [2389] = {.lex_state = 0}, - [2390] = {.lex_state = 0, .external_lex_state = 59}, + [2390] = {.lex_state = 0, .external_lex_state = 60}, [2391] = {.lex_state = 0}, [2392] = {.lex_state = 0}, [2393] = {.lex_state = 0}, [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 0}, + [2395] = {.lex_state = 0, .external_lex_state = 59}, [2396] = {.lex_state = 0}, - [2397] = {.lex_state = 0}, + [2397] = {.lex_state = 0, .external_lex_state = 59}, [2398] = {.lex_state = 0}, [2399] = {.lex_state = 0}, [2400] = {.lex_state = 0}, - [2401] = {.lex_state = 0, .external_lex_state = 60}, - [2402] = {.lex_state = 0}, + [2401] = {.lex_state = 0}, + [2402] = {.lex_state = 0, .external_lex_state = 60}, [2403] = {.lex_state = 0}, - [2404] = {.lex_state = 0}, - [2405] = {.lex_state = 0, .external_lex_state = 59}, + [2404] = {.lex_state = 0, .external_lex_state = 59}, + [2405] = {.lex_state = 0}, [2406] = {.lex_state = 0, .external_lex_state = 60}, - [2407] = {.lex_state = 0, .external_lex_state = 59}, + [2407] = {.lex_state = 0, .external_lex_state = 60}, [2408] = {.lex_state = 0}, - [2409] = {.lex_state = 0, .external_lex_state = 60}, - [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 0, .external_lex_state = 98}, - [2412] = {.lex_state = 0, .external_lex_state = 99}, - [2413] = {.lex_state = 0, .external_lex_state = 99}, - [2414] = {.lex_state = 0, .external_lex_state = 69}, + [2409] = {.lex_state = 0}, + [2410] = {.lex_state = 0, .external_lex_state = 59}, + [2411] = {.lex_state = 0, .external_lex_state = 60}, + [2412] = {.lex_state = 0, .external_lex_state = 60}, + [2413] = {.lex_state = 0, .external_lex_state = 59}, + [2414] = {.lex_state = 0, .external_lex_state = 59}, [2415] = {.lex_state = 0}, - [2416] = {.lex_state = 0, .external_lex_state = 99}, - [2417] = {.lex_state = 0, .external_lex_state = 69}, - [2418] = {.lex_state = 0, .external_lex_state = 99}, + [2416] = {.lex_state = 0, .external_lex_state = 98}, + [2417] = {.lex_state = 0, .external_lex_state = 99}, + [2418] = {.lex_state = 0, .external_lex_state = 69}, [2419] = {.lex_state = 0, .external_lex_state = 99}, - [2420] = {.lex_state = 0, .external_lex_state = 69}, + [2420] = {.lex_state = 0}, [2421] = {.lex_state = 0, .external_lex_state = 69}, - [2422] = {.lex_state = 0, .external_lex_state = 69}, - [2423] = {.lex_state = 0, .external_lex_state = 98}, - [2424] = {.lex_state = 0, .external_lex_state = 98}, - [2425] = {.lex_state = 0, .external_lex_state = 98}, - [2426] = {.lex_state = 0, .external_lex_state = 69}, - [2427] = {.lex_state = 0, .external_lex_state = 98}, - [2428] = {.lex_state = 0, .external_lex_state = 69}, + [2422] = {.lex_state = 0}, + [2423] = {.lex_state = 0, .external_lex_state = 99}, + [2424] = {.lex_state = 0, .external_lex_state = 99}, + [2425] = {.lex_state = 0, .external_lex_state = 100}, + [2426] = {.lex_state = 0, .external_lex_state = 100}, + [2427] = {.lex_state = 0, .external_lex_state = 100}, + [2428] = {.lex_state = 0, .external_lex_state = 100}, [2429] = {.lex_state = 0, .external_lex_state = 69}, [2430] = {.lex_state = 0, .external_lex_state = 69}, - [2431] = {.lex_state = 0, .external_lex_state = 99}, + [2431] = {.lex_state = 0}, [2432] = {.lex_state = 0, .external_lex_state = 69}, [2433] = {.lex_state = 0, .external_lex_state = 69}, - [2434] = {.lex_state = 0, .external_lex_state = 69}, - [2435] = {.lex_state = 0, .external_lex_state = 69}, - [2436] = {.lex_state = 0, .external_lex_state = 100}, - [2437] = {.lex_state = 0, .external_lex_state = 69}, - [2438] = {.lex_state = 0, .external_lex_state = 69}, - [2439] = {.lex_state = 0, .external_lex_state = 100}, + [2434] = {.lex_state = 0, .external_lex_state = 98}, + [2435] = {.lex_state = 0, .external_lex_state = 98}, + [2436] = {.lex_state = 0, .external_lex_state = 69}, + [2437] = {.lex_state = 0, .external_lex_state = 99}, + [2438] = {.lex_state = 0, .external_lex_state = 99}, + [2439] = {.lex_state = 0, .external_lex_state = 69}, [2440] = {.lex_state = 0, .external_lex_state = 69}, - [2441] = {.lex_state = 0}, - [2442] = {.lex_state = 0, .external_lex_state = 98}, + [2441] = {.lex_state = 0, .external_lex_state = 99}, + [2442] = {.lex_state = 0, .external_lex_state = 69}, [2443] = {.lex_state = 0, .external_lex_state = 69}, - [2444] = {.lex_state = 0}, - [2445] = {.lex_state = 0, .external_lex_state = 98}, - [2446] = {.lex_state = 0, .external_lex_state = 98}, - [2447] = {.lex_state = 0, .external_lex_state = 99}, - [2448] = {.lex_state = 0, .external_lex_state = 99}, + [2444] = {.lex_state = 0, .external_lex_state = 69}, + [2445] = {.lex_state = 0, .external_lex_state = 69}, + [2446] = {.lex_state = 0, .external_lex_state = 69}, + [2447] = {.lex_state = 0, .external_lex_state = 69}, + [2448] = {.lex_state = 0, .external_lex_state = 101}, [2449] = {.lex_state = 0}, - [2450] = {.lex_state = 0, .external_lex_state = 98}, - [2451] = {.lex_state = 0, .external_lex_state = 99}, - [2452] = {.lex_state = 0, .external_lex_state = 98}, - [2453] = {.lex_state = 0, .external_lex_state = 69}, + [2450] = {.lex_state = 0, .external_lex_state = 100}, + [2451] = {.lex_state = 0, .external_lex_state = 69}, + [2452] = {.lex_state = 0, .external_lex_state = 69}, + [2453] = {.lex_state = 0, .external_lex_state = 99}, [2454] = {.lex_state = 0}, - [2455] = {.lex_state = 0, .external_lex_state = 98}, - [2456] = {.lex_state = 0, .external_lex_state = 98}, - [2457] = {.lex_state = 0, .external_lex_state = 98}, - [2458] = {.lex_state = 0, .external_lex_state = 98}, + [2455] = {.lex_state = 0, .external_lex_state = 99}, + [2456] = {.lex_state = 0, .external_lex_state = 99}, + [2457] = {.lex_state = 0, .external_lex_state = 69}, + [2458] = {.lex_state = 0, .external_lex_state = 99}, [2459] = {.lex_state = 0, .external_lex_state = 99}, - [2460] = {.lex_state = 0, .external_lex_state = 98}, - [2461] = {.lex_state = 0, .external_lex_state = 99}, - [2462] = {.lex_state = 0, .external_lex_state = 99}, - [2463] = {.lex_state = 0, .external_lex_state = 98}, - [2464] = {.lex_state = 0, .external_lex_state = 98}, - [2465] = {.lex_state = 0, .external_lex_state = 69}, + [2460] = {.lex_state = 0, .external_lex_state = 100}, + [2461] = {.lex_state = 0, .external_lex_state = 100}, + [2462] = {.lex_state = 0, .external_lex_state = 69}, + [2463] = {.lex_state = 0, .external_lex_state = 99}, + [2464] = {.lex_state = 0, .external_lex_state = 69}, + [2465] = {.lex_state = 0}, [2466] = {.lex_state = 0, .external_lex_state = 100}, - [2467] = {.lex_state = 0, .external_lex_state = 98}, - [2468] = {.lex_state = 0, .external_lex_state = 98}, - [2469] = {.lex_state = 0, .external_lex_state = 99}, - [2470] = {.lex_state = 0, .external_lex_state = 69}, - [2471] = {.lex_state = 0, .external_lex_state = 69}, + [2467] = {.lex_state = 0}, + [2468] = {.lex_state = 0, .external_lex_state = 100}, + [2469] = {.lex_state = 0, .external_lex_state = 69}, + [2470] = {.lex_state = 0}, + [2471] = {.lex_state = 0, .external_lex_state = 98}, [2472] = {.lex_state = 0, .external_lex_state = 98}, [2473] = {.lex_state = 0, .external_lex_state = 69}, - [2474] = {.lex_state = 0, .external_lex_state = 99}, - [2475] = {.lex_state = 0, .external_lex_state = 69}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 0}, [2476] = {.lex_state = 0, .external_lex_state = 99}, - [2477] = {.lex_state = 0, .external_lex_state = 69}, - [2478] = {.lex_state = 0, .external_lex_state = 69}, - [2479] = {.lex_state = 0}, - [2480] = {.lex_state = 0, .external_lex_state = 98}, - [2481] = {.lex_state = 0, .external_lex_state = 98}, - [2482] = {.lex_state = 0, .external_lex_state = 98}, - [2483] = {.lex_state = 0}, - [2484] = {.lex_state = 0, .external_lex_state = 98}, - [2485] = {.lex_state = 0, .external_lex_state = 98}, - [2486] = {.lex_state = 0, .external_lex_state = 98}, - [2487] = {.lex_state = 0, .external_lex_state = 98}, - [2488] = {.lex_state = 0, .external_lex_state = 100}, - [2489] = {.lex_state = 0, .external_lex_state = 98}, - [2490] = {.lex_state = 0, .external_lex_state = 98}, - [2491] = {.lex_state = 0, .external_lex_state = 99}, - [2492] = {.lex_state = 0, .external_lex_state = 99}, - [2493] = {.lex_state = 0, .external_lex_state = 69}, - [2494] = {.lex_state = 0, .external_lex_state = 99}, - [2495] = {.lex_state = 0, .external_lex_state = 69}, - [2496] = {.lex_state = 0}, - [2497] = {.lex_state = 0, .external_lex_state = 69}, - [2498] = {.lex_state = 0, .external_lex_state = 69}, - [2499] = {.lex_state = 0, .external_lex_state = 98}, - [2500] = {.lex_state = 0, .external_lex_state = 98}, - [2501] = {.lex_state = 0, .external_lex_state = 69}, - [2502] = {.lex_state = 0, .external_lex_state = 69}, - [2503] = {.lex_state = 0, .external_lex_state = 69}, - [2504] = {.lex_state = 0, .external_lex_state = 69}, - [2505] = {.lex_state = 0, .external_lex_state = 69}, + [2477] = {.lex_state = 0, .external_lex_state = 99}, + [2478] = {.lex_state = 0, .external_lex_state = 99}, + [2479] = {.lex_state = 0, .external_lex_state = 99}, + [2480] = {.lex_state = 0, .external_lex_state = 99}, + [2481] = {.lex_state = 0, .external_lex_state = 99}, + [2482] = {.lex_state = 0, .external_lex_state = 100}, + [2483] = {.lex_state = 0, .external_lex_state = 100}, + [2484] = {.lex_state = 0, .external_lex_state = 102}, + [2485] = {.lex_state = 0, .external_lex_state = 100}, + [2486] = {.lex_state = 0, .external_lex_state = 100}, + [2487] = {.lex_state = 0, .external_lex_state = 100}, + [2488] = {.lex_state = 0, .external_lex_state = 102}, + [2489] = {.lex_state = 0, .external_lex_state = 100}, + [2490] = {.lex_state = 0, .external_lex_state = 100}, + [2491] = {.lex_state = 0, .external_lex_state = 100}, + [2492] = {.lex_state = 0, .external_lex_state = 100}, + [2493] = {.lex_state = 0, .external_lex_state = 98}, + [2494] = {.lex_state = 0, .external_lex_state = 100}, + [2495] = {.lex_state = 0, .external_lex_state = 100}, + [2496] = {.lex_state = 0, .external_lex_state = 100}, + [2497] = {.lex_state = 0, .external_lex_state = 99}, + [2498] = {.lex_state = 0, .external_lex_state = 100}, + [2499] = {.lex_state = 0, .external_lex_state = 99}, + [2500] = {.lex_state = 0, .external_lex_state = 100}, + [2501] = {.lex_state = 0, .external_lex_state = 100}, + [2502] = {.lex_state = 0, .external_lex_state = 100}, + [2503] = {.lex_state = 0, .external_lex_state = 100}, + [2504] = {.lex_state = 0, .external_lex_state = 100}, + [2505] = {.lex_state = 0, .external_lex_state = 100}, [2506] = {.lex_state = 0, .external_lex_state = 100}, [2507] = {.lex_state = 0, .external_lex_state = 69}, [2508] = {.lex_state = 0, .external_lex_state = 69}, - [2509] = {.lex_state = 0, .external_lex_state = 99}, - [2510] = {.lex_state = 0, .external_lex_state = 99}, - [2511] = {.lex_state = 0, .external_lex_state = 99}, - [2512] = {.lex_state = 0, .external_lex_state = 99}, + [2509] = {.lex_state = 0, .external_lex_state = 69}, + [2510] = {.lex_state = 0, .external_lex_state = 69}, + [2511] = {.lex_state = 0, .external_lex_state = 98}, + [2512] = {.lex_state = 0, .external_lex_state = 69}, [2513] = {.lex_state = 0, .external_lex_state = 69}, - [2514] = {.lex_state = 0, .external_lex_state = 99}, - [2515] = {.lex_state = 0, .external_lex_state = 69}, - [2516] = {.lex_state = 0, .external_lex_state = 98}, - [2517] = {.lex_state = 0, .external_lex_state = 98}, - [2518] = {.lex_state = 0, .external_lex_state = 98}, - [2519] = {.lex_state = 0, .external_lex_state = 101}, + [2514] = {.lex_state = 0, .external_lex_state = 69}, + [2515] = {.lex_state = 0, .external_lex_state = 99}, + [2516] = {.lex_state = 0, .external_lex_state = 69}, + [2517] = {.lex_state = 0, .external_lex_state = 99}, + [2518] = {.lex_state = 0, .external_lex_state = 69}, + [2519] = {.lex_state = 0, .external_lex_state = 69}, [2520] = {.lex_state = 0, .external_lex_state = 69}, - [2521] = {.lex_state = 0, .external_lex_state = 101}, + [2521] = {.lex_state = 0, .external_lex_state = 69}, [2522] = {.lex_state = 0, .external_lex_state = 100}, [2523] = {.lex_state = 0, .external_lex_state = 100}, - [2524] = {.lex_state = 0, .external_lex_state = 100}, - [2525] = {.lex_state = 0, .external_lex_state = 101}, + [2524] = {.lex_state = 0, .external_lex_state = 99}, + [2525] = {.lex_state = 0, .external_lex_state = 69}, [2526] = {.lex_state = 0, .external_lex_state = 69}, - [2527] = {.lex_state = 0, .external_lex_state = 98}, - [2528] = {.lex_state = 0, .external_lex_state = 99}, + [2527] = {.lex_state = 0}, + [2528] = {.lex_state = 0, .external_lex_state = 100}, [2529] = {.lex_state = 0, .external_lex_state = 98}, - [2530] = {.lex_state = 0, .external_lex_state = 99}, - [2531] = {.lex_state = 0, .external_lex_state = 98}, - [2532] = {.lex_state = 0, .external_lex_state = 98}, - [2533] = {.lex_state = 0, .external_lex_state = 102}, - [2534] = {.lex_state = 0, .external_lex_state = 99}, - [2535] = {.lex_state = 0, .external_lex_state = 98}, - [2536] = {.lex_state = 0, .external_lex_state = 98}, - [2537] = {.lex_state = 0, .external_lex_state = 98}, - [2538] = {.lex_state = 0}, - [2539] = {.lex_state = 0, .external_lex_state = 98}, + [2530] = {.lex_state = 0, .external_lex_state = 102}, + [2531] = {.lex_state = 0, .external_lex_state = 69}, + [2532] = {.lex_state = 0, .external_lex_state = 100}, + [2533] = {.lex_state = 0, .external_lex_state = 99}, + [2534] = {.lex_state = 0, .external_lex_state = 69}, + [2535] = {.lex_state = 0, .external_lex_state = 99}, + [2536] = {.lex_state = 0, .external_lex_state = 69}, + [2537] = {.lex_state = 0, .external_lex_state = 69}, + [2538] = {.lex_state = 0, .external_lex_state = 69}, + [2539] = {.lex_state = 0, .external_lex_state = 99}, [2540] = {.lex_state = 0, .external_lex_state = 69}, - [2541] = {.lex_state = 0}, + [2541] = {.lex_state = 0, .external_lex_state = 100}, [2542] = {.lex_state = 0, .external_lex_state = 100}, - [2543] = {.lex_state = 0, .external_lex_state = 69}, - [2544] = {.lex_state = 0, .external_lex_state = 99}, - [2545] = {.lex_state = 0, .external_lex_state = 69}, - [2546] = {.lex_state = 0, .external_lex_state = 99}, - [2547] = {.lex_state = 0}, - [2548] = {.lex_state = 0, .external_lex_state = 99}, - [2549] = {.lex_state = 0, .external_lex_state = 69}, - [2550] = {.lex_state = 0, .external_lex_state = 98}, - [2551] = {.lex_state = 0, .external_lex_state = 69}, - [2552] = {.lex_state = 0, .external_lex_state = 69}, - [2553] = {.lex_state = 0, .external_lex_state = 98}, - [2554] = {.lex_state = 0, .external_lex_state = 98}, + [2543] = {.lex_state = 0, .external_lex_state = 100}, + [2544] = {.lex_state = 0, .external_lex_state = 100}, + [2545] = {.lex_state = 0, .external_lex_state = 100}, + [2546] = {.lex_state = 0, .external_lex_state = 69}, + [2547] = {.lex_state = 0, .external_lex_state = 98}, + [2548] = {.lex_state = 0, .external_lex_state = 69}, + [2549] = {.lex_state = 0, .external_lex_state = 100}, + [2550] = {.lex_state = 0, .external_lex_state = 100}, + [2551] = {.lex_state = 0, .external_lex_state = 99}, + [2552] = {.lex_state = 0, .external_lex_state = 100}, + [2553] = {.lex_state = 0, .external_lex_state = 99}, + [2554] = {.lex_state = 0, .external_lex_state = 100}, [2555] = {.lex_state = 0, .external_lex_state = 69}, - [2556] = {.lex_state = 0, .external_lex_state = 98}, + [2556] = {.lex_state = 0, .external_lex_state = 69}, [2557] = {.lex_state = 0, .external_lex_state = 69}, - [2558] = {.lex_state = 0, .external_lex_state = 98}, + [2558] = {.lex_state = 0, .external_lex_state = 100}, [2559] = {.lex_state = 0, .external_lex_state = 100}, [2560] = {.lex_state = 0, .external_lex_state = 69}, - [2561] = {.lex_state = 0, .external_lex_state = 69}, + [2561] = {.lex_state = 0, .external_lex_state = 100}, [2562] = {.lex_state = 0, .external_lex_state = 69}, - [2563] = {.lex_state = 0, .external_lex_state = 99}, - [2564] = {.lex_state = 0, .external_lex_state = 69}, - [2565] = {.lex_state = 0, .external_lex_state = 99}, + [2563] = {.lex_state = 0, .external_lex_state = 69}, + [2564] = {.lex_state = 0, .external_lex_state = 98}, + [2565] = {.lex_state = 0, .external_lex_state = 69}, [2566] = {.lex_state = 0, .external_lex_state = 69}, [2567] = {.lex_state = 0, .external_lex_state = 69}, - [2568] = {.lex_state = 0}, - [2569] = {.lex_state = 0, .external_lex_state = 98}, - [2570] = {.lex_state = 0, .external_lex_state = 98}, - [2571] = {.lex_state = 0, .external_lex_state = 98}, - [2572] = {.lex_state = 0, .external_lex_state = 98}, + [2568] = {.lex_state = 0, .external_lex_state = 99}, + [2569] = {.lex_state = 0, .external_lex_state = 100}, + [2570] = {.lex_state = 0, .external_lex_state = 99}, + [2571] = {.lex_state = 0, .external_lex_state = 100}, + [2572] = {.lex_state = 0, .external_lex_state = 100}, [2573] = {.lex_state = 0}, - [2574] = {.lex_state = 0, .external_lex_state = 98}, - [2575] = {.lex_state = 0, .external_lex_state = 98}, + [2574] = {.lex_state = 0, .external_lex_state = 100}, + [2575] = {.lex_state = 0, .external_lex_state = 100}, [2576] = {.lex_state = 0, .external_lex_state = 100}, - [2577] = {.lex_state = 0, .external_lex_state = 101}, - [2578] = {.lex_state = 0, .external_lex_state = 98}, - [2579] = {.lex_state = 0, .external_lex_state = 69}, - [2580] = {.lex_state = 0, .external_lex_state = 99}, + [2577] = {.lex_state = 0, .external_lex_state = 99}, + [2578] = {.lex_state = 0}, + [2579] = {.lex_state = 0, .external_lex_state = 100}, + [2580] = {.lex_state = 0, .external_lex_state = 100}, [2581] = {.lex_state = 0, .external_lex_state = 98}, - [2582] = {.lex_state = 0, .external_lex_state = 99}, - [2583] = {.lex_state = 0, .external_lex_state = 98}, + [2582] = {.lex_state = 0, .external_lex_state = 100}, + [2583] = {.lex_state = 0, .external_lex_state = 100}, [2584] = {.lex_state = 0, .external_lex_state = 69}, - [2585] = {.lex_state = 0, .external_lex_state = 102}, - [2586] = {.lex_state = 0, .external_lex_state = 102}, - [2587] = {.lex_state = 0, .external_lex_state = 98}, - [2588] = {.lex_state = 0, .external_lex_state = 98}, - [2589] = {.lex_state = 0, .external_lex_state = 98}, - [2590] = {.lex_state = 0, .external_lex_state = 98}, - [2591] = {.lex_state = 0, .external_lex_state = 69}, - [2592] = {.lex_state = 0, .external_lex_state = 98}, + [2585] = {.lex_state = 0, .external_lex_state = 99}, + [2586] = {.lex_state = 0, .external_lex_state = 69}, + [2587] = {.lex_state = 0, .external_lex_state = 99}, + [2588] = {.lex_state = 0, .external_lex_state = 69}, + [2589] = {.lex_state = 0, .external_lex_state = 69}, + [2590] = {.lex_state = 0, .external_lex_state = 101}, + [2591] = {.lex_state = 0, .external_lex_state = 101}, + [2592] = {.lex_state = 0, .external_lex_state = 100}, [2593] = {.lex_state = 0, .external_lex_state = 100}, - [2594] = {.lex_state = 0, .external_lex_state = 69}, - [2595] = {.lex_state = 0, .external_lex_state = 69}, + [2594] = {.lex_state = 0, .external_lex_state = 100}, + [2595] = {.lex_state = 0, .external_lex_state = 100}, [2596] = {.lex_state = 0, .external_lex_state = 69}, - [2597] = {.lex_state = 0, .external_lex_state = 99}, - [2598] = {.lex_state = 0, .external_lex_state = 99}, - [2599] = {.lex_state = 0, .external_lex_state = 99}, - [2600] = {.lex_state = 0, .external_lex_state = 98}, - [2601] = {.lex_state = 0, .external_lex_state = 98}, - [2602] = {.lex_state = 0, .external_lex_state = 98}, - [2603] = {.lex_state = 0, .external_lex_state = 98}, - [2604] = {.lex_state = 0, .external_lex_state = 100}, - [2605] = {.lex_state = 0, .external_lex_state = 99}, - [2606] = {.lex_state = 0, .external_lex_state = 99}, - [2607] = {.lex_state = 0, .external_lex_state = 98}, - [2608] = {.lex_state = 0, .external_lex_state = 102}, - [2609] = {.lex_state = 0}, - [2610] = {.lex_state = 0, .external_lex_state = 98}, - [2611] = {.lex_state = 0, .external_lex_state = 98}, - [2612] = {.lex_state = 0}, - [2613] = {.lex_state = 0, .external_lex_state = 99}, - [2614] = {.lex_state = 0, .external_lex_state = 99}, - [2615] = {.lex_state = 0, .external_lex_state = 99}, - [2616] = {.lex_state = 0, .external_lex_state = 99}, - [2617] = {.lex_state = 0, .external_lex_state = 98}, + [2597] = {.lex_state = 0, .external_lex_state = 100}, + [2598] = {.lex_state = 0, .external_lex_state = 98}, + [2599] = {.lex_state = 0, .external_lex_state = 69}, + [2600] = {.lex_state = 0, .external_lex_state = 102}, + [2601] = {.lex_state = 0, .external_lex_state = 69}, + [2602] = {.lex_state = 0, .external_lex_state = 99}, + [2603] = {.lex_state = 0, .external_lex_state = 100}, + [2604] = {.lex_state = 0, .external_lex_state = 99}, + [2605] = {.lex_state = 0, .external_lex_state = 100}, + [2606] = {.lex_state = 0, .external_lex_state = 100}, + [2607] = {.lex_state = 0, .external_lex_state = 100}, + [2608] = {.lex_state = 0, .external_lex_state = 100}, + [2609] = {.lex_state = 0, .external_lex_state = 98}, + [2610] = {.lex_state = 0, .external_lex_state = 99}, + [2611] = {.lex_state = 0, .external_lex_state = 99}, + [2612] = {.lex_state = 0, .external_lex_state = 100}, + [2613] = {.lex_state = 0, .external_lex_state = 101}, + [2614] = {.lex_state = 0}, + [2615] = {.lex_state = 0, .external_lex_state = 100}, + [2616] = {.lex_state = 0, .external_lex_state = 100}, + [2617] = {.lex_state = 0}, [2618] = {.lex_state = 0, .external_lex_state = 99}, [2619] = {.lex_state = 0, .external_lex_state = 99}, [2620] = {.lex_state = 0, .external_lex_state = 99}, [2621] = {.lex_state = 0, .external_lex_state = 99}, - [2622] = {.lex_state = 0, .external_lex_state = 98}, + [2622] = {.lex_state = 0, .external_lex_state = 100}, [2623] = {.lex_state = 0, .external_lex_state = 99}, [2624] = {.lex_state = 0, .external_lex_state = 99}, [2625] = {.lex_state = 0, .external_lex_state = 99}, [2626] = {.lex_state = 0, .external_lex_state = 99}, - [2627] = {.lex_state = 0, .external_lex_state = 98}, + [2627] = {.lex_state = 0, .external_lex_state = 100}, [2628] = {.lex_state = 0, .external_lex_state = 99}, [2629] = {.lex_state = 0, .external_lex_state = 99}, [2630] = {.lex_state = 0, .external_lex_state = 99}, [2631] = {.lex_state = 0, .external_lex_state = 99}, - [2632] = {.lex_state = 0, .external_lex_state = 98}, + [2632] = {.lex_state = 0, .external_lex_state = 100}, [2633] = {.lex_state = 0, .external_lex_state = 99}, [2634] = {.lex_state = 0, .external_lex_state = 99}, [2635] = {.lex_state = 0, .external_lex_state = 99}, [2636] = {.lex_state = 0, .external_lex_state = 99}, - [2637] = {.lex_state = 0, .external_lex_state = 98}, + [2637] = {.lex_state = 0, .external_lex_state = 100}, [2638] = {.lex_state = 0, .external_lex_state = 99}, [2639] = {.lex_state = 0, .external_lex_state = 99}, [2640] = {.lex_state = 0, .external_lex_state = 99}, [2641] = {.lex_state = 0, .external_lex_state = 99}, - [2642] = {.lex_state = 0, .external_lex_state = 98}, + [2642] = {.lex_state = 0, .external_lex_state = 100}, [2643] = {.lex_state = 0, .external_lex_state = 99}, [2644] = {.lex_state = 0, .external_lex_state = 99}, [2645] = {.lex_state = 0, .external_lex_state = 99}, [2646] = {.lex_state = 0, .external_lex_state = 99}, - [2647] = {.lex_state = 0, .external_lex_state = 98}, + [2647] = {.lex_state = 0, .external_lex_state = 100}, [2648] = {.lex_state = 0, .external_lex_state = 99}, [2649] = {.lex_state = 0, .external_lex_state = 99}, [2650] = {.lex_state = 0, .external_lex_state = 99}, [2651] = {.lex_state = 0, .external_lex_state = 99}, - [2652] = {.lex_state = 0, .external_lex_state = 98}, + [2652] = {.lex_state = 0, .external_lex_state = 100}, [2653] = {.lex_state = 0, .external_lex_state = 99}, [2654] = {.lex_state = 0, .external_lex_state = 99}, [2655] = {.lex_state = 0, .external_lex_state = 99}, [2656] = {.lex_state = 0, .external_lex_state = 99}, - [2657] = {.lex_state = 0, .external_lex_state = 98}, + [2657] = {.lex_state = 0, .external_lex_state = 100}, + [2658] = {.lex_state = 0, .external_lex_state = 99}, + [2659] = {.lex_state = 0, .external_lex_state = 99}, + [2660] = {.lex_state = 0, .external_lex_state = 99}, + [2661] = {.lex_state = 0, .external_lex_state = 99}, + [2662] = {.lex_state = 0, .external_lex_state = 100}, }; enum { @@ -26389,7 +26401,6 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [4] = { - [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, @@ -26417,6 +26428,7 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, }, [5] = { + [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, @@ -26445,7 +26457,6 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { }, [6] = { [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, @@ -26481,6 +26492,7 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { }, [7] = { [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, @@ -26638,33 +26650,42 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [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, [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__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__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__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26673,8 +26694,6 @@ static const bool ts_external_scanner_states[103][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, @@ -26689,16 +26708,14 @@ static const bool ts_external_scanner_states[103][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, }, [14] = { - [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, @@ -26707,6 +26724,8 @@ static const bool ts_external_scanner_states[103][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, @@ -26721,15 +26740,14 @@ static const bool ts_external_scanner_states[103][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, }, [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, @@ -26744,11 +26762,6 @@ static const bool ts_external_scanner_states[103][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, @@ -26757,12 +26770,9 @@ static const bool ts_external_scanner_states[103][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__last_token_whitespace] = true, }, [16] = { - [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, @@ -26771,6 +26781,8 @@ static const bool ts_external_scanner_states[103][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, @@ -26785,11 +26797,11 @@ static const bool ts_external_scanner_states[103][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, }, [17] = { [ts_external_token__block_close] = true, @@ -26887,20 +26899,6 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [20] = { - [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_punctuation] = 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, - [ts_external_token__last_token_punctuation] = true, - }, - [22] = { [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, @@ -26931,7 +26929,27 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, [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_star] = true, + [ts_external_token__last_token_punctuation] = 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_underscore] = true, + [ts_external_token__last_token_punctuation] = 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__last_token_punctuation] = true, + }, + [24] = { [ts_external_token__block_quote_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, @@ -26955,20 +26973,15 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__emphasis_close_underscore] = true, }, - [24] = { - [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, - }, [25] = { [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_punctuation] = true, + [ts_external_token__emphasis_close_star] = true, }, [26] = { [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, @@ -26983,13 +26996,18 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star] = true, [ts_external_token__list_marker_parenthesis] = true, [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, + [ts_external_token__split_token] = 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, }, [27] = { [ts_external_token__code_span_start] = true, @@ -27004,7 +27022,6 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { }, [29] = { [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, @@ -27019,18 +27036,13 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star] = true, [ts_external_token__list_marker_parenthesis] = true, [ts_external_token__list_marker_dot] = true, - [ts_external_token__list_marker_minus_dont_interrupt] = true, - [ts_external_token__list_marker_plus_dont_interrupt] = true, - [ts_external_token__list_marker_star_dont_interrupt] = true, - [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, - [ts_external_token__list_marker_dot_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, - [ts_external_token__split_token] = 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, }, [30] = { [ts_external_token__block_close] = true, @@ -27094,57 +27106,56 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { }, [32] = { [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__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, }, [33] = { [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__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, }, [34] = { - [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, @@ -27174,6 +27185,7 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, }, [35] = { + [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, @@ -27329,7 +27341,7 @@ static const bool ts_external_scanner_states[103][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, }, [46] = { @@ -27339,7 +27351,7 @@ static const bool ts_external_scanner_states[103][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, }, [47] = { @@ -27348,7 +27360,7 @@ static const bool ts_external_scanner_states[103][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, }, [48] = { @@ -27357,7 +27369,7 @@ static const bool ts_external_scanner_states[103][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, }, [49] = { @@ -27381,14 +27393,14 @@ static const bool ts_external_scanner_states[103][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, }, [52] = { [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, }, [53] = { @@ -27420,15 +27432,15 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [56] = { + [ts_external_token__last_token_punctuation] = true, + }, + [57] = { [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, }, - [57] = { - [ts_external_token__last_token_punctuation] = true, - }, [58] = { [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, @@ -27438,11 +27450,11 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { }, [59] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, }, [60] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [61] = { [ts_external_token__line_ending] = true, @@ -27457,23 +27469,19 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [63] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__last_token_whitespace] = true, }, [64] = { - [ts_external_token__block_continuation] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__code_span_close] = true, }, [65] = { [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, }, [66] = { @@ -27481,7 +27489,7 @@ static const bool ts_external_scanner_states[103][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__blank_line_start] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, [67] = { @@ -27489,11 +27497,15 @@ static const bool ts_external_scanner_states[103][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, }, [68] = { - [ts_external_token__code_span_close] = true, + [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_backtick] = true, + [ts_external_token__last_token_whitespace] = true, }, [69] = { [ts_external_token__block_close] = true, @@ -27502,77 +27514,77 @@ static const bool ts_external_scanner_states[103][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__last_token_whitespace] = true, }, [71] = { - [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_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, [72] = { [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, }, [73] = { - [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, }, [74] = { + [ts_external_token__blank_line_start] = true, + }, + [75] = { [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, }, - [75] = { - [ts_external_token__blank_line_start] = true, - }, [76] = { [ts_external_token__last_token_whitespace] = true, }, [77] = { [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__blank_line_start] = true, }, [78] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_tilde] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, }, [79] = { [ts_external_token__block_close] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, }, [80] = { [ts_external_token__block_close] = true, - [ts_external_token__blank_line_start] = true, + [ts_external_token__close_block] = true, + [ts_external_token__last_token_punctuation] = true, }, [81] = { [ts_external_token__block_close] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__last_token_punctuation] = true, }, [82] = { [ts_external_token__block_close] = true, - [ts_external_token__close_block] = true, [ts_external_token__last_token_punctuation] = true, }, [83] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__last_token_whitespace] = true, }, [84] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__last_token_whitespace] = true, }, [85] = { [ts_external_token__code_span_close] = true, @@ -27607,40 +27619,40 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [91] = { - [ts_external_token__no_indented_chunk] = true, - [ts_external_token__last_token_whitespace] = true, - }, - [92] = { [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__last_token_whitespace] = true, }, - [93] = { + [92] = { [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, }, - [94] = { + [93] = { [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__last_token_whitespace] = true, }, + [94] = { + [ts_external_token__no_indented_chunk] = true, + [ts_external_token__last_token_whitespace] = true, + }, [95] = { [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, }, [96] = { [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__trigger_error] = true, + [ts_external_token__close_block] = true, [ts_external_token__last_token_whitespace] = true, }, [97] = { @@ -27648,25 +27660,27 @@ static const bool ts_external_scanner_states[103][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__soft_line_break_marker] = true, }, [98] = { - [ts_external_token__open_block] = true, + [ts_external_token__line_ending] = true, }, [99] = { [ts_external_token__close_block] = true, }, [100] = { - [ts_external_token__line_ending] = true, + [ts_external_token__open_block] = true, }, [101] = { - [ts_external_token__trigger_error] = true, + [ts_external_token__open_block_dont_interrupt_paragraph] = true, }, [102] = { - [ts_external_token__open_block_dont_interrupt_paragraph] = true, + [ts_external_token__trigger_error] = true, }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), @@ -27695,9 +27709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), [aux_sym__html_block_1_token1] = ACTIONS(1), [aux_sym__html_block_1_token2] = ACTIONS(1), @@ -27772,116 +27784,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(2573), - [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(404), - [sym__html_block_2] = STATE(404), - [sym__html_block_3] = STATE(404), - [sym__html_block_4] = STATE(404), - [sym__html_block_5] = STATE(404), - [sym__html_block_6] = STATE(404), - [sym__html_block_7] = STATE(404), - [sym_link_reference_definition] = STATE(53), - [sym_paragraph] = STATE(366), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(53), - [sym_block_quote] = STATE(53), - [sym_list] = STATE(53), - [sym__list_plus] = STATE(405), - [sym__list_minus] = STATE(405), - [sym__list_star] = STATE(405), - [sym__list_dot] = STATE(405), - [sym__list_parenthesis] = STATE(405), + [sym_document] = STATE(2578), + [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(309), + [sym_fenced_code_block] = STATE(57), + [sym_html_block] = STATE(57), + [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(57), + [sym_paragraph] = STATE(369), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(57), + [sym_block_quote] = STATE(57), + [sym_list] = STATE(57), + [sym__list_plus] = STATE(418), + [sym__list_minus] = STATE(418), + [sym__list_star] = STATE(418), + [sym__list_dot] = STATE(418), + [sym__list_parenthesis] = STATE(418), [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(308), - [sym__list_item_minus] = STATE(307), - [sym__list_item_star] = STATE(306), - [sym__list_item_dot] = STATE(305), - [sym__list_item_parenthesis] = STATE(297), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2568), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(503), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(3), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(149), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(53), - [aux_sym__list_plus_repeat1] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(307), - [aux_sym__list_star_repeat1] = STATE(306), - [aux_sym__list_dot_repeat1] = STATE(305), - [aux_sym__list_parenthesis_repeat1] = STATE(297), + [sym__list_item_plus] = STATE(342), + [sym__list_item_minus] = STATE(343), + [sym__list_item_star] = STATE(344), + [sym__list_item_dot] = STATE(345), + [sym__list_item_parenthesis] = STATE(346), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2573), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(502), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(37), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(206), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(57), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_minus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_dot_repeat1] = STATE(345), + [aux_sym__list_parenthesis_repeat1] = STATE(346), [ts_builtin_sym_end] = ACTIONS(3), - [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_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(17), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(19), [anon_sym_LT_QMARK] = ACTIONS(21), @@ -27933,115 +27945,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(43), }, [2] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2475), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(14), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2452), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -28093,275 +28105,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(93), }, [3] = { - [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(404), - [sym__html_block_2] = STATE(404), - [sym__html_block_3] = STATE(404), - [sym__html_block_4] = STATE(404), - [sym__html_block_5] = STATE(404), - [sym__html_block_6] = STATE(404), - [sym__html_block_7] = STATE(404), - [sym_link_reference_definition] = STATE(49), - [sym_paragraph] = STATE(366), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(49), - [sym_block_quote] = STATE(49), - [sym_list] = STATE(49), - [sym__list_plus] = STATE(405), - [sym__list_minus] = STATE(405), - [sym__list_star] = STATE(405), - [sym__list_dot] = STATE(405), - [sym__list_parenthesis] = STATE(405), - [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(308), - [sym__list_item_minus] = STATE(307), - [sym__list_item_star] = STATE(306), - [sym__list_item_dot] = STATE(305), - [sym__list_item_parenthesis] = STATE(297), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2568), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(503), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(149), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(49), - [aux_sym__list_plus_repeat1] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(307), - [aux_sym__list_star_repeat1] = STATE(306), - [aux_sym__list_dot_repeat1] = STATE(305), - [aux_sym__list_parenthesis_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(109), - [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(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), - [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_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__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(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(111), - }, - [4] = { [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(323), + [sym__indented_chunk] = STATE(328), [sym_fenced_code_block] = STATE(47), [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(47), [sym_block_quote] = STATE(47), [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2414), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), [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(315), - [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), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -28383,6 +28234,7 @@ 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(109), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), @@ -28412,115 +28264,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), [sym__last_token_whitespace] = ACTIONS(111), }, - [5] = { - [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(323), - [sym_fenced_code_block] = STATE(48), - [sym_html_block] = STATE(48), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(48), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(48), - [sym_block_quote] = STATE(48), - [sym_list] = STATE(48), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [4] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2457), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -28542,9 +28395,8 @@ 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(113), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [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), @@ -28570,117 +28422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [6] = { + [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(323), + [sym__indented_chunk] = STATE(328), [sym_fenced_code_block] = STATE(56), [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), [sym__blank_line] = STATE(56), [sym_block_quote] = STATE(56), [sym_list] = STATE(56), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(5), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(36), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), [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(315), - [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), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -28702,9 +28554,9 @@ 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(117), - [sym__block_continuation] = ACTIONS(119), - [sym__block_quote_continuation] = ACTIONS(119), + [sym__block_close] = ACTIONS(113), + [sym__block_continuation] = ACTIONS(115), + [sym__block_quote_continuation] = ACTIONS(115), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -28730,118 +28582,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(115), }, - [7] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [6] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2417), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2538), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -28863,8 +28715,8 @@ 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_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), @@ -28890,118 +28742,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [8] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [7] = { + [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(328), + [sym_fenced_code_block] = STATE(51), + [sym_html_block] = STATE(51), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(51), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(51), + [sym_block_quote] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2420), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(3), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(51), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29023,8 +28874,9 @@ 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_close] = ACTIONS(117), + [sym__block_continuation] = ACTIONS(119), + [sym__block_quote_continuation] = ACTIONS(119), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -29050,118 +28902,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(119), }, - [9] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [8] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2421), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2464), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29183,8 +29035,8 @@ 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_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), @@ -29210,118 +29062,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [10] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [9] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2422), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2469), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29343,8 +29195,8 @@ 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_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), @@ -29370,117 +29222,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [11] = { + [10] = { [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(323), + [sym__indented_chunk] = STATE(328), [sym_fenced_code_block] = STATE(55), [sym_html_block] = STATE(55), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), [sym_link_reference_definition] = STATE(55), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), [sym__blank_line] = STATE(55), [sym_block_quote] = STATE(55), [sym_list] = STATE(55), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(13), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), [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(315), - [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), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29503,8 +29355,8 @@ 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(121), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_continuation] = ACTIONS(123), + [sym__block_quote_continuation] = ACTIONS(123), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -29530,117 +29382,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(123), }, - [12] = { - [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(323), - [sym_fenced_code_block] = STATE(46), - [sym_html_block] = STATE(46), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(46), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(46), - [sym_block_quote] = STATE(46), - [sym_list] = STATE(46), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [11] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(11), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2508), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(6), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29662,7 +29515,6 @@ 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(95), @@ -29692,116 +29544,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), [sym__last_token_whitespace] = ACTIONS(125), }, - [13] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [12] = { + [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(328), + [sym_fenced_code_block] = STATE(59), + [sym_html_block] = STATE(59), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(59), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(59), + [sym_block_quote] = STATE(59), + [sym_list] = STATE(59), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2428), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(59), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29823,6 +29674,7 @@ 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(111), [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), @@ -29852,116 +29704,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), [sym__last_token_whitespace] = ACTIONS(111), }, - [14] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [13] = { + [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(328), + [sym_fenced_code_block] = STATE(69), + [sym_html_block] = STATE(69), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(69), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(69), + [sym_block_quote] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2430), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(69), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -29983,6 +29834,7 @@ 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(129), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), @@ -30012,115 +29864,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), [sym__last_token_whitespace] = ACTIONS(111), }, - [15] = { - [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(323), - [sym_fenced_code_block] = STATE(57), - [sym_html_block] = STATE(57), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(57), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(57), - [sym_block_quote] = STATE(57), - [sym_list] = STATE(57), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [14] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(16), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(57), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2512), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(4), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -30142,9 +29995,8 @@ 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_continuation] = ACTIONS(131), + [sym__block_quote_continuation] = ACTIONS(131), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -30170,117 +30022,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(131), }, - [16] = { - [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(323), - [sym_fenced_code_block] = STATE(58), - [sym_html_block] = STATE(58), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(58), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(58), - [sym_block_quote] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [15] = { + [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(328), + [sym_fenced_code_block] = STATE(65), + [sym_html_block] = STATE(65), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(65), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(65), + [sym_block_quote] = STATE(65), + [sym_list] = STATE(65), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(33), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(65), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -30302,9 +30154,9 @@ 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(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_close] = ACTIONS(133), + [sym__block_continuation] = ACTIONS(135), + [sym__block_quote_continuation] = ACTIONS(135), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -30330,118 +30182,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(135), }, - [17] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2432), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2525), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(8), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -30463,8 +30315,8 @@ 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_continuation] = ACTIONS(137), + [sym__block_quote_continuation] = ACTIONS(137), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -30490,118 +30342,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(137), }, - [18] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [17] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2435), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2531), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(9), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -30623,8 +30475,8 @@ 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_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), @@ -30650,117 +30502,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(139), }, - [19] = { - [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(323), - [sym_fenced_code_block] = STATE(65), - [sym_html_block] = STATE(65), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(65), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(65), - [sym_block_quote] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(35), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2462), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -30782,9 +30635,8 @@ 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_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), @@ -30810,117 +30662,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [20] = { - [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(323), - [sym_fenced_code_block] = STATE(62), - [sym_html_block] = STATE(62), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(62), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(62), - [sym_block_quote] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [19] = { + [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(328), + [sym_fenced_code_block] = STATE(52), + [sym_html_block] = STATE(52), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(52), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(52), + [sym_block_quote] = STATE(52), + [sym_list] = STATE(52), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(21), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(52), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -30942,9 +30794,9 @@ 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(139), - [sym__block_quote_continuation] = ACTIONS(139), + [sym__block_close] = ACTIONS(141), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -30970,117 +30822,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(139), + [sym__last_token_whitespace] = ACTIONS(111), }, - [21] = { - [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(323), - [sym_fenced_code_block] = STATE(66), - [sym_html_block] = STATE(66), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(66), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(66), - [sym_block_quote] = STATE(66), - [sym_list] = STATE(66), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [20] = { + [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(328), + [sym_fenced_code_block] = STATE(46), + [sym_html_block] = STATE(46), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(46), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(46), + [sym_block_quote] = STATE(46), + [sym_list] = STATE(46), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(19), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -31102,9 +30954,9 @@ 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(141), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [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), @@ -31130,118 +30982,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(145), }, - [22] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [21] = { + [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(328), + [sym_fenced_code_block] = STATE(54), + [sym_html_block] = STATE(54), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(54), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(54), + [sym_block_quote] = STATE(54), + [sym_list] = STATE(54), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2440), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(203), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(54), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -31263,6 +31114,7 @@ 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(147), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), @@ -31292,116 +31144,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), [sym__last_token_whitespace] = ACTIONS(111), }, - [23] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [22] = { + [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(328), + [sym_fenced_code_block] = STATE(58), + [sym_html_block] = STATE(58), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(58), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(58), + [sym_block_quote] = STATE(58), + [sym_list] = STATE(58), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2470), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(13), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(12), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(58), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -31423,8 +31274,9 @@ 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(143), - [sym__block_quote_continuation] = ACTIONS(143), + [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), @@ -31450,118 +31302,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(143), + [sym__last_token_whitespace] = ACTIONS(151), }, - [24] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [23] = { + [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(328), + [sym_fenced_code_block] = STATE(60), + [sym_html_block] = STATE(60), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(60), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(60), + [sym_block_quote] = STATE(60), + [sym_list] = STATE(60), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2477), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(17), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(21), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(60), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -31583,8 +31434,9 @@ 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(145), - [sym__block_quote_continuation] = ACTIONS(145), + [sym__block_close] = ACTIONS(153), + [sym__block_continuation] = ACTIONS(155), + [sym__block_quote_continuation] = ACTIONS(155), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -31610,118 +31462,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(145), + [sym__last_token_whitespace] = ACTIONS(155), }, - [25] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [24] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2478), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2514), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), [aux_sym__ignore_matching_tokens] = STATE(18), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -31743,8 +31595,8 @@ 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(147), - [sym__block_quote_continuation] = ACTIONS(147), + [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), @@ -31770,117 +31622,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(157), }, - [26] = { - [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(323), - [sym_fenced_code_block] = STATE(67), - [sym_html_block] = STATE(67), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(67), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(67), - [sym_block_quote] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [25] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(67), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2436), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -31902,9 +31755,8 @@ 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(115), - [sym__block_quote_continuation] = ACTIONS(115), + [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), @@ -31930,117 +31782,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [27] = { - [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(323), - [sym_fenced_code_block] = STATE(69), - [sym_html_block] = STATE(69), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(69), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(69), - [sym_block_quote] = STATE(69), - [sym_list] = STATE(69), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [26] = { + [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(328), + [sym_fenced_code_block] = STATE(66), + [sym_html_block] = STATE(66), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(66), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(66), + [sym_block_quote] = STATE(66), + [sym_list] = STATE(66), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(26), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(30), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(66), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -32062,9 +31914,9 @@ 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(153), - [sym__block_quote_continuation] = ACTIONS(153), + [sym__block_close] = ACTIONS(159), + [sym__block_continuation] = ACTIONS(161), + [sym__block_quote_continuation] = ACTIONS(161), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -32090,117 +31942,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(153), + [sym__last_token_whitespace] = ACTIONS(161), }, - [28] = { + [27] = { [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(323), + [sym__indented_chunk] = STATE(328), [sym_fenced_code_block] = STATE(63), [sym_html_block] = STATE(63), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), [sym_link_reference_definition] = STATE(63), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), [sym_block_quote] = STATE(63), [sym_list] = STATE(63), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(32), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2430), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), [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(315), - [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), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -32222,9 +32075,8 @@ 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(155), - [sym__block_continuation] = ACTIONS(157), - [sym__block_quote_continuation] = ACTIONS(157), + [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), @@ -32250,118 +32102,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(157), + [sym__last_token_whitespace] = ACTIONS(93), }, - [29] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [28] = { + [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(328), + [sym_fenced_code_block] = STATE(62), + [sym_html_block] = STATE(62), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(62), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(62), + [sym_block_quote] = STATE(62), + [sym_list] = STATE(62), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2495), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(22), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(62), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -32383,8 +32234,9 @@ 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(159), - [sym__block_quote_continuation] = ACTIONS(159), + [sym__block_close] = ACTIONS(163), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -32410,117 +32262,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(159), + [sym__last_token_whitespace] = ACTIONS(111), }, - [30] = { - [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(323), - [sym_fenced_code_block] = STATE(71), - [sym_html_block] = STATE(71), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(71), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(71), - [sym_block_quote] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [29] = { + [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(328), + [sym_fenced_code_block] = STATE(64), + [sym_html_block] = STATE(64), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(64), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(64), + [sym_block_quote] = STATE(64), + [sym_list] = STATE(64), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(31), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(28), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(64), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -32542,9 +32394,9 @@ 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(161), - [sym__block_continuation] = ACTIONS(163), - [sym__block_quote_continuation] = ACTIONS(163), + [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), @@ -32570,117 +32422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), - [sym__last_token_whitespace] = ACTIONS(163), + [sym__last_token_whitespace] = ACTIONS(167), }, - [31] = { - [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(323), - [sym_fenced_code_block] = STATE(64), - [sym_html_block] = STATE(64), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(64), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(64), - [sym_block_quote] = STATE(64), - [sym_list] = STATE(64), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [30] = { + [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(328), + [sym_fenced_code_block] = STATE(67), + [sym_html_block] = STATE(67), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(67), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(67), + [sym_block_quote] = STATE(67), + [sym_list] = STATE(67), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(67), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -32702,9 +32554,9 @@ 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(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_close] = ACTIONS(169), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -32730,117 +32582,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(111), }, - [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(323), - [sym_fenced_code_block] = STATE(54), - [sym_html_block] = STATE(54), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(54), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(54), - [sym_block_quote] = STATE(54), - [sym_list] = STATE(54), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [31] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2429), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -32862,9 +32715,8 @@ 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(115), - [sym__block_quote_continuation] = ACTIONS(115), + [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), @@ -32890,117 +32742,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [33] = { - [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(323), - [sym_fenced_code_block] = STATE(45), - [sym_html_block] = STATE(45), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(45), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(45), - [sym_block_quote] = STATE(45), - [sym_list] = STATE(45), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [32] = { + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2421), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -33022,9 +32875,8 @@ 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(169), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [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), @@ -33050,117 +32902,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(93), }, - [34] = { - [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(323), - [sym_fenced_code_block] = STATE(70), - [sym_html_block] = STATE(70), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(70), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(70), - [sym_block_quote] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [33] = { + [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(328), + [sym_fenced_code_block] = STATE(49), + [sym_html_block] = STATE(49), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(49), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(49), + [sym_block_quote] = STATE(49), + [sym_list] = STATE(49), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(33), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(70), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(49), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -33183,8 +33035,8 @@ 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(171), - [sym__block_continuation] = ACTIONS(173), - [sym__block_quote_continuation] = ACTIONS(173), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -33210,117 +33062,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(111), }, - [35] = { - [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(323), - [sym_fenced_code_block] = STATE(51), - [sym_html_block] = STATE(51), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(51), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(51), - [sym_block_quote] = STATE(51), - [sym_list] = STATE(51), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [34] = { + [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(328), + [sym_fenced_code_block] = STATE(70), + [sym_html_block] = STATE(70), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(70), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(70), + [sym_block_quote] = STATE(70), + [sym_list] = STATE(70), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(70), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -33342,9 +33194,9 @@ 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(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_close] = ACTIONS(173), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -33370,117 +33222,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(111), }, - [36] = { - [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(323), - [sym_fenced_code_block] = STATE(59), - [sym_html_block] = STATE(59), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(59), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(59), - [sym_block_quote] = STATE(59), - [sym_list] = STATE(59), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [35] = { + [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(328), + [sym_fenced_code_block] = STATE(71), + [sym_html_block] = STATE(71), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(71), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(71), + [sym_block_quote] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(37), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(34), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -33502,9 +33354,9 @@ 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_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), @@ -33530,117 +33382,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [37] = { - [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(323), - [sym_fenced_code_block] = STATE(60), - [sym_html_block] = STATE(60), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(60), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(60), - [sym_block_quote] = STATE(60), - [sym_list] = STATE(60), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [36] = { + [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(328), + [sym_fenced_code_block] = STATE(68), + [sym_html_block] = STATE(68), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(68), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(68), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -33662,9 +33514,9 @@ 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(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_close] = ACTIONS(179), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -33690,117 +33542,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(111), + }, + [37] = { + [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(309), + [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(369), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), + [sym__list_plus] = STATE(418), + [sym__list_minus] = STATE(418), + [sym__list_star] = STATE(418), + [sym__list_dot] = STATE(418), + [sym__list_parenthesis] = STATE(418), + [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(342), + [sym__list_item_minus] = STATE(343), + [sym__list_item_star] = STATE(344), + [sym__list_item_dot] = STATE(345), + [sym__list_item_parenthesis] = STATE(346), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2573), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(502), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(205), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(206), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(45), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_minus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_dot_repeat1] = STATE(345), + [aux_sym__list_parenthesis_repeat1] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [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), + [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_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [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), + [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(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(93), }, [38] = { - [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(323), - [sym_fenced_code_block] = STATE(68), - [sym_html_block] = STATE(68), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(68), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(68), - [sym_block_quote] = STATE(68), - [sym_list] = STATE(68), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(61), + [sym_html_block] = STATE(61), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(61), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(61), + [sym_block_quote] = STATE(61), + [sym_list] = STATE(61), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(286), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(164), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(61), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -33823,8 +33835,8 @@ 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(183), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -33850,118 +33862,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(111), }, [39] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2505), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(4), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2521), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(2), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -34013,115 +34025,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(185), }, [40] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2504), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(7), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2520), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(25), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -34173,115 +34185,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(187), }, [41] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2502), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(8), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2510), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(27), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -34333,115 +34345,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(189), }, [42] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2498), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(9), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2509), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(31), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -34493,115 +34505,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(191), }, [43] = { - [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(323), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(394), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(400), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__list_item_content] = STATE(2497), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [aux_sym__ignore_matching_tokens] = STATE(10), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__list_item_content] = STATE(2507), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [aux_sym__ignore_matching_tokens] = STATE(32), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -34653,114 +34665,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(193), }, [44] = { - [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(323), - [sym_fenced_code_block] = STATE(61), - [sym_html_block] = STATE(61), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(61), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(61), - [sym_block_quote] = STATE(61), - [sym_list] = STATE(61), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(48), + [sym_html_block] = STATE(48), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(48), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(48), + [sym_block_quote] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), [aux_sym__ignore_matching_tokens] = STATE(38), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -34813,124 +34825,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), + [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(309), + [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(369), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(50), + [sym_block_quote] = STATE(50), + [sym_list] = STATE(50), + [sym__list_plus] = STATE(418), + [sym__list_minus] = STATE(418), + [sym__list_star] = STATE(418), + [sym__list_dot] = STATE(418), + [sym__list_parenthesis] = STATE(418), + [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(342), + [sym__list_item_minus] = STATE(343), + [sym__list_item_star] = STATE(344), + [sym__list_item_dot] = STATE(345), + [sym__list_item_parenthesis] = STATE(346), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2573), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(206), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(50), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_minus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_dot_repeat1] = STATE(345), + [aux_sym__list_parenthesis_repeat1] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [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), @@ -34941,16 +34954,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(199), - [sym__block_quote_start] = ACTIONS(95), - [sym__indented_chunk_start] = ACTIONS(97), - [sym_atx_h1_marker] = ACTIONS(99), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(99), - [sym_atx_h4_marker] = ACTIONS(99), - [sym_atx_h5_marker] = ACTIONS(99), - [sym_atx_h6_marker] = ACTIONS(99), - [sym__thematic_break] = ACTIONS(101), + [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), @@ -34961,121 +34973,121 @@ 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(103), - [sym__fenced_code_block_start_tilde] = ACTIONS(105), - [sym__blank_line_start] = ACTIONS(107), + [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), }, [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -35097,7 +35109,7 @@ 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(121), + [sym__block_close] = ACTIONS(141), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -35125,113 +35137,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -35281,113 +35293,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -35409,7 +35421,7 @@ 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_close] = ACTIONS(183), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -35437,125 +35449,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [49] = { - [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(404), - [sym__html_block_2] = STATE(404), - [sym__html_block_3] = STATE(404), - [sym__html_block_4] = STATE(404), - [sym__html_block_5] = STATE(404), - [sym__html_block_6] = STATE(404), - [sym__html_block_7] = STATE(404), - [sym_link_reference_definition] = STATE(50), - [sym_paragraph] = STATE(366), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(50), - [sym_block_quote] = STATE(50), - [sym_list] = STATE(50), - [sym__list_plus] = STATE(405), - [sym__list_minus] = STATE(405), - [sym__list_star] = STATE(405), - [sym__list_dot] = STATE(405), - [sym__list_parenthesis] = STATE(405), - [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(308), - [sym__list_item_minus] = STATE(307), - [sym__list_item_star] = STATE(306), - [sym__list_item_dot] = STATE(305), - [sym__list_item_parenthesis] = STATE(297), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2568), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(24), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), [sym__whitespace] = STATE(503), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(149), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(307), - [aux_sym__list_star_repeat1] = STATE(306), - [aux_sym__list_dot_repeat1] = STATE(305), - [aux_sym__list_parenthesis_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(205), - [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), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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(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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [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), @@ -35566,15 +35577,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(203), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35585,9 +35597,9 @@ 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), @@ -35598,264 +35610,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_heading] = STATE(50), [sym_setext_heading] = STATE(50), [sym_indented_code_block] = STATE(50), - [sym__indented_chunk] = STATE(324), + [sym__indented_chunk] = STATE(309), [sym_fenced_code_block] = STATE(50), [sym_html_block] = STATE(50), - [sym__html_block_1] = STATE(404), - [sym__html_block_2] = STATE(404), - [sym__html_block_3] = STATE(404), - [sym__html_block_4] = STATE(404), - [sym__html_block_5] = STATE(404), - [sym__html_block_6] = STATE(404), - [sym__html_block_7] = STATE(404), + [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(366), - [sym__soft_line_break] = STATE(889), + [sym_paragraph] = STATE(369), + [sym__soft_line_break] = STATE(923), [sym__blank_line] = STATE(50), [sym_block_quote] = STATE(50), [sym_list] = STATE(50), - [sym__list_plus] = STATE(405), - [sym__list_minus] = STATE(405), - [sym__list_star] = STATE(405), - [sym__list_dot] = STATE(405), - [sym__list_parenthesis] = STATE(405), + [sym__list_plus] = STATE(418), + [sym__list_minus] = STATE(418), + [sym__list_star] = STATE(418), + [sym__list_dot] = STATE(418), + [sym__list_parenthesis] = STATE(418), [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(308), - [sym__list_item_minus] = STATE(307), - [sym__list_item_star] = STATE(306), - [sym__list_item_dot] = STATE(305), - [sym__list_item_parenthesis] = STATE(297), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2568), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(503), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(149), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), + [sym__list_item_plus] = STATE(342), + [sym__list_item_minus] = STATE(343), + [sym__list_item_star] = STATE(344), + [sym__list_item_dot] = STATE(345), + [sym__list_item_parenthesis] = STATE(346), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2573), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(502), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(206), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), [aux_sym_document_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(307), - [aux_sym__list_star_repeat1] = STATE(306), - [aux_sym__list_dot_repeat1] = STATE(305), - [aux_sym__list_parenthesis_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(212), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_DOLLAR] = ACTIONS(212), - [anon_sym_PERCENT] = ACTIONS(212), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(212), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(212), - [anon_sym_QMARK] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(224), - [anon_sym_RBRACK] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym__] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [aux_sym__html_block_1_token1] = ACTIONS(227), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(230), - [anon_sym_LT_QMARK] = ACTIONS(233), - [aux_sym__html_block_4_token1] = ACTIONS(236), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(239), - [aux_sym__html_block_6_token1] = ACTIONS(242), - [aux_sym__html_block_6_token2] = ACTIONS(245), - [sym__open_tag_html_block] = ACTIONS(248), - [sym__open_tag_html_block_newline] = ACTIONS(251), - [sym__closing_tag_html_block] = ACTIONS(248), - [sym__closing_tag_html_block_newline] = ACTIONS(251), - [sym_backslash_escape] = ACTIONS(254), - [sym_entity_reference] = ACTIONS(254), - [sym_numeric_character_reference] = ACTIONS(254), - [sym_uri_autolink] = ACTIONS(254), - [sym_email_autolink] = ACTIONS(254), - [sym__whitespace_ge_2] = ACTIONS(257), - [aux_sym__whitespace_token1] = ACTIONS(260), - [sym__word_no_digit] = ACTIONS(254), - [sym__digits] = ACTIONS(254), - [aux_sym__newline_token1] = ACTIONS(263), - [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), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_minus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_dot_repeat1] = STATE(345), + [aux_sym__list_parenthesis_repeat1] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_COLON] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(207), + [anon_sym__] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [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_quote_start] = ACTIONS(264), + [sym__indented_chunk_start] = ACTIONS(267), + [sym_atx_h1_marker] = ACTIONS(270), + [sym_atx_h2_marker] = ACTIONS(270), + [sym_atx_h3_marker] = ACTIONS(270), + [sym_atx_h4_marker] = ACTIONS(270), + [sym_atx_h5_marker] = ACTIONS(270), + [sym_atx_h6_marker] = ACTIONS(270), + [sym__thematic_break] = ACTIONS(273), + [sym__list_marker_minus] = ACTIONS(276), + [sym__list_marker_plus] = ACTIONS(279), + [sym__list_marker_star] = ACTIONS(282), + [sym__list_marker_parenthesis] = ACTIONS(285), + [sym__list_marker_dot] = ACTIONS(288), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(276), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(279), + [sym__list_marker_star_dont_interrupt] = ACTIONS(282), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(285), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(288), + [sym__fenced_code_block_start_backtick] = ACTIONS(291), + [sym__fenced_code_block_start_tilde] = ACTIONS(294), + [sym__blank_line_start] = ACTIONS(297), + [sym__code_span_start] = ACTIONS(300), + [sym__emphasis_open_star] = ACTIONS(303), + [sym__emphasis_open_underscore] = ACTIONS(306), }, [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -35877,7 +35889,7 @@ 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_close] = ACTIONS(109), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -35905,281 +35917,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_DQUOTE] = ACTIONS(212), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_DOLLAR] = ACTIONS(212), - [anon_sym_PERCENT] = ACTIONS(212), - [anon_sym_AMP] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(212), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH] = ACTIONS(212), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(212), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(212), - [anon_sym_QMARK] = ACTIONS(212), - [anon_sym_AT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(224), - [anon_sym_RBRACK] = ACTIONS(212), - [anon_sym_CARET] = ACTIONS(212), - [anon_sym__] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [aux_sym__html_block_1_token1] = ACTIONS(313), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(316), - [anon_sym_LT_QMARK] = ACTIONS(319), - [aux_sym__html_block_4_token1] = ACTIONS(322), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(325), - [aux_sym__html_block_6_token1] = ACTIONS(328), - [aux_sym__html_block_6_token2] = ACTIONS(331), - [sym__open_tag_html_block] = ACTIONS(334), - [sym__open_tag_html_block_newline] = ACTIONS(337), - [sym__closing_tag_html_block] = ACTIONS(334), - [sym__closing_tag_html_block_newline] = ACTIONS(337), - [sym_backslash_escape] = ACTIONS(254), - [sym_entity_reference] = ACTIONS(254), - [sym_numeric_character_reference] = ACTIONS(254), - [sym_uri_autolink] = ACTIONS(254), - [sym_email_autolink] = ACTIONS(254), - [sym__whitespace_ge_2] = ACTIONS(257), - [aux_sym__whitespace_token1] = ACTIONS(260), - [sym__word_no_digit] = ACTIONS(254), - [sym__digits] = ACTIONS(254), - [aux_sym__newline_token1] = ACTIONS(263), - [sym__block_close] = ACTIONS(207), - [sym__block_quote_start] = ACTIONS(340), - [sym__indented_chunk_start] = ACTIONS(343), - [sym_atx_h1_marker] = ACTIONS(346), - [sym_atx_h2_marker] = ACTIONS(346), - [sym_atx_h3_marker] = ACTIONS(346), - [sym_atx_h4_marker] = ACTIONS(346), - [sym_atx_h5_marker] = ACTIONS(346), - [sym_atx_h6_marker] = ACTIONS(346), - [sym__thematic_break] = ACTIONS(349), - [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(352), - [sym__fenced_code_block_start_tilde] = ACTIONS(355), - [sym__blank_line_start] = ACTIONS(358), - [sym__code_span_start] = ACTIONS(302), - [sym__emphasis_open_star] = ACTIONS(305), - [sym__emphasis_open_underscore] = ACTIONS(308), - }, - [53] = { - [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(404), - [sym__html_block_2] = STATE(404), - [sym__html_block_3] = STATE(404), - [sym__html_block_4] = STATE(404), - [sym__html_block_5] = STATE(404), - [sym__html_block_6] = STATE(404), - [sym__html_block_7] = STATE(404), - [sym_link_reference_definition] = STATE(50), - [sym_paragraph] = STATE(366), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(50), - [sym_block_quote] = STATE(50), - [sym_list] = STATE(50), - [sym__list_plus] = STATE(405), - [sym__list_minus] = STATE(405), - [sym__list_star] = STATE(405), - [sym__list_dot] = STATE(405), - [sym__list_parenthesis] = STATE(405), - [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(308), - [sym__list_item_minus] = STATE(307), - [sym__list_item_star] = STATE(306), - [sym__list_item_dot] = STATE(305), - [sym__list_item_parenthesis] = STATE(297), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2568), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), [sym__whitespace] = STATE(503), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(149), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [aux_sym_document_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(307), - [aux_sym__list_star_repeat1] = STATE(306), - [aux_sym__list_dot_repeat1] = STATE(305), - [aux_sym__list_parenthesis_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(109), - [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), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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(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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [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), @@ -36190,15 +36045,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(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), @@ -36209,121 +36065,277 @@ 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), }, + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(24), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(207), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_COLON] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_BSLASH] = ACTIONS(222), + [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(207), + [anon_sym__] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(207), + [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(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(205), + [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(276), + [sym__list_marker_plus] = ACTIONS(279), + [sym__list_marker_star] = ACTIONS(282), + [sym__list_marker_parenthesis] = ACTIONS(285), + [sym__list_marker_dot] = ACTIONS(288), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(276), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(279), + [sym__list_marker_star_dont_interrupt] = ACTIONS(282), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(285), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(288), + [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(300), + [sym__emphasis_open_star] = ACTIONS(303), + [sym__emphasis_open_underscore] = ACTIONS(306), + }, [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -36345,7 +36357,7 @@ 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(361), + [sym__block_close] = ACTIONS(359), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -36373,113 +36385,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -36501,7 +36513,7 @@ 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(363), + [sym__block_close] = ACTIONS(129), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -36529,113 +36541,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -36657,7 +36669,7 @@ 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(113), + [sym__block_close] = ACTIONS(179), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -36685,124 +36697,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [57] = { - [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [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(309), + [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(369), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(50), + [sym_block_quote] = STATE(50), + [sym_list] = STATE(50), + [sym__list_plus] = STATE(418), + [sym__list_minus] = STATE(418), + [sym__list_star] = STATE(418), + [sym__list_dot] = STATE(418), + [sym__list_parenthesis] = STATE(418), + [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(342), + [sym__list_item_minus] = STATE(343), + [sym__list_item_star] = STATE(344), + [sym__list_item_dot] = STATE(345), + [sym__list_item_parenthesis] = STATE(346), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2573), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(502), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(206), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(50), + [aux_sym__list_plus_repeat1] = STATE(342), + [aux_sym__list_minus_repeat1] = STATE(343), + [aux_sym__list_star_repeat1] = STATE(344), + [aux_sym__list_dot_repeat1] = STATE(345), + [aux_sym__list_parenthesis_repeat1] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [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), @@ -36813,16 +36826,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(131), - [sym__block_quote_start] = ACTIONS(95), - [sym__indented_chunk_start] = ACTIONS(97), - [sym_atx_h1_marker] = ACTIONS(99), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(99), - [sym_atx_h4_marker] = ACTIONS(99), - [sym_atx_h5_marker] = ACTIONS(99), - [sym_atx_h6_marker] = ACTIONS(99), - [sym__thematic_break] = ACTIONS(101), + [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), @@ -36833,121 +36845,121 @@ 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(103), - [sym__fenced_code_block_start_tilde] = ACTIONS(105), - [sym__blank_line_start] = ACTIONS(107), + [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), }, [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -36969,7 +36981,7 @@ 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(365), + [sym__block_close] = ACTIONS(127), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -36997,113 +37009,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -37125,7 +37137,7 @@ 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_close] = ACTIONS(361), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -37153,113 +37165,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -37281,7 +37293,7 @@ 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(367), + [sym__block_close] = ACTIONS(147), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -37309,113 +37321,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -37437,7 +37449,7 @@ 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_close] = ACTIONS(363), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -37465,113 +37477,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -37593,7 +37605,7 @@ 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(141), + [sym__block_close] = ACTIONS(365), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -37621,113 +37633,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -37749,7 +37761,7 @@ 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_close] = ACTIONS(367), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -37777,113 +37789,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -37905,7 +37917,7 @@ 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(369), + [sym__block_close] = ACTIONS(163), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -37933,113 +37945,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38061,7 +38073,7 @@ 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_close] = ACTIONS(171), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -38089,113 +38101,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38217,7 +38229,7 @@ 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(371), + [sym__block_close] = ACTIONS(169), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -38245,113 +38257,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [67] = { - [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38373,7 +38385,7 @@ 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(373), + [sym__block_close] = ACTIONS(369), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -38401,113 +38413,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38529,7 +38541,7 @@ 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(375), + [sym__block_close] = ACTIONS(371), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -38557,113 +38569,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38685,7 +38697,7 @@ 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_close] = ACTIONS(373), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -38713,113 +38725,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [70] = { - [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38841,7 +38853,7 @@ 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(169), + [sym__block_close] = ACTIONS(375), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -38869,113 +38881,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(323), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(424), - [sym__html_block_2] = STATE(424), - [sym__html_block_3] = STATE(424), - [sym__html_block_4] = STATE(424), - [sym__html_block_5] = STATE(424), - [sym__html_block_6] = STATE(424), - [sym__html_block_7] = STATE(424), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(367), - [sym__soft_line_break] = STATE(889), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(425), - [sym__list_minus] = STATE(425), - [sym__list_star] = STATE(425), - [sym__list_dot] = STATE(425), - [sym__list_parenthesis] = STATE(425), - [sym_list_marker_plus] = STATE(29), - [sym_list_marker_minus] = STATE(25), + [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(328), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(420), + [sym__html_block_2] = STATE(420), + [sym__html_block_3] = STATE(420), + [sym__html_block_4] = STATE(420), + [sym__html_block_5] = STATE(420), + [sym__html_block_6] = STATE(420), + [sym__html_block_7] = STATE(420), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(375), + [sym__soft_line_break] = STATE(923), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), + [sym_list_marker_plus] = STATE(17), + [sym_list_marker_minus] = STATE(16), [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(2), - [sym_list_marker_parenthesis] = STATE(23), - [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(315), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_link_label] = STATE(2609), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(502), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(249), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(315), - [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), + [sym_list_marker_dot] = STATE(14), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_plus] = STATE(318), + [sym__list_item_minus] = STATE(290), + [sym__list_item_star] = STATE(338), + [sym__list_item_dot] = STATE(297), + [sym__list_item_parenthesis] = STATE(303), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_link_label] = STATE(2614), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(503), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(141), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(318), + [aux_sym__list_minus_repeat1] = STATE(290), + [aux_sym__list_star_repeat1] = STATE(338), + [aux_sym__list_dot_repeat1] = STATE(297), + [aux_sym__list_parenthesis_repeat1] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), [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), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), [anon_sym_LT_QMARK] = ACTIONS(79), @@ -38997,7 +39009,7 @@ 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_close] = ACTIONS(173), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -39025,7 +39037,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [72] = { - [aux_sym__ignore_matching_tokens] = STATE(79), + [aux_sym__ignore_matching_tokens] = STATE(74), + [ts_builtin_sym_end] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -39054,9 +39069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(377), [anon_sym__] = ACTIONS(377), [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_TILDE] = ACTIONS(377), [aux_sym__html_block_1_token1] = ACTIONS(377), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), @@ -39080,7 +39093,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(381), - [sym__block_close] = ACTIONS(377), [sym__block_continuation] = ACTIONS(383), [sym__block_quote_continuation] = ACTIONS(383), [sym__block_quote_start] = ACTIONS(377), @@ -39115,8 +39127,9 @@ 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(76), - [ts_builtin_sym_end] = ACTIONS(377), + [aux_sym__ignore_matching_tokens] = STATE(77), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -39145,9 +39158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(377), [anon_sym__] = ACTIONS(377), [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_TILDE] = ACTIONS(377), [aux_sym__html_block_1_token1] = ACTIONS(377), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), @@ -39171,6 +39182,7 @@ 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(385), + [sym__block_close] = ACTIONS(377), [sym__block_continuation] = ACTIONS(387), [sym__block_quote_continuation] = ACTIONS(387), [sym__block_quote_start] = ACTIONS(377), @@ -39205,8 +39217,10 @@ 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(77), + [aux_sym__ignore_matching_tokens] = STATE(75), [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -39235,9 +39249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -39294,7 +39306,187 @@ 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(75), + [ts_builtin_sym_end] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym__] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [aux_sym__html_block_1_token1] = ACTIONS(395), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(397), + [anon_sym_LT_QMARK] = ACTIONS(397), + [aux_sym__html_block_4_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(395), + [aux_sym__html_block_6_token1] = ACTIONS(397), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym__open_tag_html_block] = ACTIONS(395), + [sym__open_tag_html_block_newline] = ACTIONS(395), + [sym__closing_tag_html_block] = ACTIONS(395), + [sym__closing_tag_html_block_newline] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [sym_entity_reference] = ACTIONS(395), + [sym_numeric_character_reference] = ACTIONS(395), + [sym_uri_autolink] = ACTIONS(395), + [sym_email_autolink] = ACTIONS(395), + [sym__whitespace_ge_2] = ACTIONS(395), + [aux_sym__whitespace_token1] = ACTIONS(397), + [sym__word_no_digit] = ACTIONS(395), + [sym__digits] = ACTIONS(395), + [aux_sym__newline_token1] = ACTIONS(395), + [sym__block_continuation] = ACTIONS(399), + [sym__block_quote_continuation] = ACTIONS(399), + [sym__block_quote_start] = ACTIONS(395), + [sym__indented_chunk_start] = ACTIONS(395), + [sym_atx_h1_marker] = ACTIONS(395), + [sym_atx_h2_marker] = ACTIONS(395), + [sym_atx_h3_marker] = ACTIONS(395), + [sym_atx_h4_marker] = ACTIONS(395), + [sym_atx_h5_marker] = ACTIONS(395), + [sym_atx_h6_marker] = ACTIONS(395), + [sym_setext_h1_underline] = ACTIONS(395), + [sym_setext_h2_underline] = ACTIONS(395), + [sym__thematic_break] = ACTIONS(395), + [sym__list_marker_minus] = ACTIONS(395), + [sym__list_marker_plus] = ACTIONS(395), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(395), + [sym__list_marker_dot] = ACTIONS(395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(395), + [sym__fenced_code_block_start_backtick] = ACTIONS(395), + [sym__fenced_code_block_start_tilde] = ACTIONS(395), + [sym__blank_line_start] = ACTIONS(395), + [sym__split_token] = ACTIONS(395), + [sym__soft_line_break_marker] = ACTIONS(395), + [sym__code_span_start] = ACTIONS(395), + [sym__emphasis_open_star] = ACTIONS(395), + [sym__emphasis_open_underscore] = ACTIONS(395), + [sym__last_token_whitespace] = ACTIONS(399), + }, + [76] = { + [aux_sym__ignore_matching_tokens] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym__] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [aux_sym__html_block_1_token1] = ACTIONS(402), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(404), + [anon_sym_LT_QMARK] = ACTIONS(404), + [aux_sym__html_block_4_token1] = ACTIONS(404), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(402), + [aux_sym__html_block_6_token1] = ACTIONS(404), + [aux_sym__html_block_6_token2] = ACTIONS(402), + [sym__open_tag_html_block] = ACTIONS(402), + [sym__open_tag_html_block_newline] = ACTIONS(402), + [sym__closing_tag_html_block] = ACTIONS(402), + [sym__closing_tag_html_block_newline] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [sym_entity_reference] = ACTIONS(402), + [sym_numeric_character_reference] = ACTIONS(402), + [sym_uri_autolink] = ACTIONS(402), + [sym_email_autolink] = ACTIONS(402), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(404), + [sym__word_no_digit] = ACTIONS(402), + [sym__digits] = ACTIONS(402), + [aux_sym__newline_token1] = ACTIONS(402), + [sym__block_continuation] = ACTIONS(393), + [sym__block_quote_continuation] = ACTIONS(393), + [sym__block_quote_start] = ACTIONS(402), + [sym__indented_chunk_start] = ACTIONS(402), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(402), + [sym_atx_h4_marker] = ACTIONS(402), + [sym_atx_h5_marker] = ACTIONS(402), + [sym_atx_h6_marker] = ACTIONS(402), + [sym_setext_h1_underline] = ACTIONS(402), + [sym_setext_h2_underline] = ACTIONS(402), + [sym__thematic_break] = ACTIONS(402), + [sym__list_marker_minus] = ACTIONS(402), + [sym__list_marker_plus] = ACTIONS(402), + [sym__list_marker_star] = ACTIONS(402), + [sym__list_marker_parenthesis] = ACTIONS(402), + [sym__list_marker_dot] = ACTIONS(402), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_star_dont_interrupt] = ACTIONS(402), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(402), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(402), + [sym__fenced_code_block_start_backtick] = ACTIONS(402), + [sym__fenced_code_block_start_tilde] = ACTIONS(402), + [sym__blank_line_start] = ACTIONS(402), + [sym__split_token] = ACTIONS(402), + [sym__soft_line_break_marker] = ACTIONS(402), + [sym__code_span_start] = ACTIONS(402), + [sym__emphasis_open_star] = ACTIONS(402), + [sym__emphasis_open_underscore] = ACTIONS(402), + [sym__last_token_whitespace] = ACTIONS(393), + }, + [77] = { [aux_sym__ignore_matching_tokens] = STATE(81), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -39323,9 +39515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -39349,8 +39539,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(395), - [sym__block_quote_continuation] = ACTIONS(395), + [sym__block_continuation] = ACTIONS(406), + [sym__block_quote_continuation] = ACTIONS(406), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -39380,11 +39570,12 @@ 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(395), + [sym__last_token_whitespace] = ACTIONS(406), }, - [76] = { - [aux_sym__ignore_matching_tokens] = STATE(78), - [ts_builtin_sym_end] = ACTIONS(389), + [78] = { + [aux_sym__ignore_matching_tokens] = STATE(79), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -39413,9 +39604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -39438,8 +39627,9 @@ 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(397), - [sym__block_quote_continuation] = ACTIONS(397), + [sym__block_close] = ACTIONS(389), + [sym__block_continuation] = ACTIONS(408), + [sym__block_quote_continuation] = ACTIONS(408), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -39469,188 +39659,102 @@ 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(397), - }, - [77] = { - [aux_sym__ignore_matching_tokens] = STATE(78), - [ts_builtin_sym_end] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_BSLASH] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym__] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [aux_sym__html_block_1_token1] = ACTIONS(399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(401), - [anon_sym_LT_QMARK] = ACTIONS(401), - [aux_sym__html_block_4_token1] = ACTIONS(401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(399), - [aux_sym__html_block_6_token1] = ACTIONS(401), - [aux_sym__html_block_6_token2] = ACTIONS(399), - [sym__open_tag_html_block] = ACTIONS(399), - [sym__open_tag_html_block_newline] = ACTIONS(399), - [sym__closing_tag_html_block] = ACTIONS(399), - [sym__closing_tag_html_block_newline] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [sym_entity_reference] = ACTIONS(399), - [sym_numeric_character_reference] = ACTIONS(399), - [sym_uri_autolink] = ACTIONS(399), - [sym_email_autolink] = ACTIONS(399), - [sym__whitespace_ge_2] = ACTIONS(399), - [aux_sym__whitespace_token1] = ACTIONS(401), - [sym__word_no_digit] = ACTIONS(399), - [sym__digits] = ACTIONS(399), - [aux_sym__newline_token1] = ACTIONS(399), - [sym__block_continuation] = ACTIONS(397), - [sym__block_quote_continuation] = ACTIONS(397), - [sym__block_quote_start] = ACTIONS(399), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(399), - [sym_atx_h2_marker] = ACTIONS(399), - [sym_atx_h3_marker] = ACTIONS(399), - [sym_atx_h4_marker] = ACTIONS(399), - [sym_atx_h5_marker] = ACTIONS(399), - [sym_atx_h6_marker] = ACTIONS(399), - [sym_setext_h1_underline] = ACTIONS(399), - [sym_setext_h2_underline] = ACTIONS(399), - [sym__thematic_break] = ACTIONS(399), - [sym__list_marker_minus] = ACTIONS(399), - [sym__list_marker_plus] = ACTIONS(399), - [sym__list_marker_star] = ACTIONS(399), - [sym__list_marker_parenthesis] = ACTIONS(399), - [sym__list_marker_dot] = ACTIONS(399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(399), - [sym__fenced_code_block_start_backtick] = ACTIONS(399), - [sym__fenced_code_block_start_tilde] = ACTIONS(399), - [sym__blank_line_start] = ACTIONS(399), - [sym__split_token] = ACTIONS(399), - [sym__soft_line_break_marker] = ACTIONS(399), - [sym__code_span_start] = ACTIONS(399), - [sym__emphasis_open_star] = ACTIONS(399), - [sym__emphasis_open_underscore] = ACTIONS(399), - [sym__last_token_whitespace] = ACTIONS(397), - }, - [78] = { - [aux_sym__ignore_matching_tokens] = STATE(78), - [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(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), + [sym__last_token_whitespace] = ACTIONS(408), }, [79] = { - [aux_sym__ignore_matching_tokens] = STATE(80), + [aux_sym__ignore_matching_tokens] = STATE(81), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym__] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [aux_sym__html_block_1_token1] = ACTIONS(402), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(404), + [anon_sym_LT_QMARK] = ACTIONS(404), + [aux_sym__html_block_4_token1] = ACTIONS(404), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(402), + [aux_sym__html_block_6_token1] = ACTIONS(404), + [aux_sym__html_block_6_token2] = ACTIONS(402), + [sym__open_tag_html_block] = ACTIONS(402), + [sym__open_tag_html_block_newline] = ACTIONS(402), + [sym__closing_tag_html_block] = ACTIONS(402), + [sym__closing_tag_html_block_newline] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [sym_entity_reference] = ACTIONS(402), + [sym_numeric_character_reference] = ACTIONS(402), + [sym_uri_autolink] = ACTIONS(402), + [sym_email_autolink] = ACTIONS(402), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(404), + [sym__word_no_digit] = ACTIONS(402), + [sym__digits] = ACTIONS(402), + [aux_sym__newline_token1] = ACTIONS(402), + [sym__block_close] = ACTIONS(402), + [sym__block_continuation] = ACTIONS(406), + [sym__block_quote_continuation] = ACTIONS(406), + [sym__block_quote_start] = ACTIONS(402), + [sym__indented_chunk_start] = ACTIONS(402), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(402), + [sym_atx_h4_marker] = ACTIONS(402), + [sym_atx_h5_marker] = ACTIONS(402), + [sym_atx_h6_marker] = ACTIONS(402), + [sym_setext_h1_underline] = ACTIONS(402), + [sym_setext_h2_underline] = ACTIONS(402), + [sym__thematic_break] = ACTIONS(402), + [sym__list_marker_minus] = ACTIONS(402), + [sym__list_marker_plus] = ACTIONS(402), + [sym__list_marker_star] = ACTIONS(402), + [sym__list_marker_parenthesis] = ACTIONS(402), + [sym__list_marker_dot] = ACTIONS(402), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_star_dont_interrupt] = ACTIONS(402), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(402), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(402), + [sym__fenced_code_block_start_backtick] = ACTIONS(402), + [sym__fenced_code_block_start_tilde] = ACTIONS(402), + [sym__blank_line_start] = ACTIONS(402), + [sym__split_token] = ACTIONS(402), + [sym__soft_line_break_marker] = ACTIONS(402), + [sym__code_span_start] = ACTIONS(402), + [sym__emphasis_open_star] = ACTIONS(402), + [sym__emphasis_open_underscore] = ACTIONS(402), + [sym__last_token_whitespace] = ACTIONS(406), + }, + [80] = { + [aux_sym__ignore_matching_tokens] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -39679,9 +39783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -39704,7 +39806,6 @@ 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(410), [sym__block_quote_continuation] = ACTIONS(410), [sym__block_quote_start] = ACTIONS(389), @@ -39738,197 +39839,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(389), [sym__last_token_whitespace] = ACTIONS(410), }, - [80] = { - [aux_sym__ignore_matching_tokens] = STATE(80), - [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), + [81] = { + [aux_sym__ignore_matching_tokens] = STATE(81), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym__] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [aux_sym__html_block_1_token1] = ACTIONS(395), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(397), + [anon_sym_LT_QMARK] = ACTIONS(397), + [aux_sym__html_block_4_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(395), + [aux_sym__html_block_6_token1] = ACTIONS(397), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym__open_tag_html_block] = ACTIONS(395), + [sym__open_tag_html_block_newline] = ACTIONS(395), + [sym__closing_tag_html_block] = ACTIONS(395), + [sym__closing_tag_html_block_newline] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [sym_entity_reference] = ACTIONS(395), + [sym_numeric_character_reference] = ACTIONS(395), + [sym_uri_autolink] = ACTIONS(395), + [sym_email_autolink] = ACTIONS(395), + [sym__whitespace_ge_2] = ACTIONS(395), + [aux_sym__whitespace_token1] = ACTIONS(397), + [sym__word_no_digit] = ACTIONS(395), + [sym__digits] = ACTIONS(395), + [aux_sym__newline_token1] = ACTIONS(395), + [sym__block_close] = ACTIONS(395), [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__block_quote_start] = ACTIONS(395), + [sym__indented_chunk_start] = ACTIONS(395), + [sym_atx_h1_marker] = ACTIONS(395), + [sym_atx_h2_marker] = ACTIONS(395), + [sym_atx_h3_marker] = ACTIONS(395), + [sym_atx_h4_marker] = ACTIONS(395), + [sym_atx_h5_marker] = ACTIONS(395), + [sym_atx_h6_marker] = ACTIONS(395), + [sym_setext_h1_underline] = ACTIONS(395), + [sym_setext_h2_underline] = ACTIONS(395), + [sym__thematic_break] = ACTIONS(395), + [sym__list_marker_minus] = ACTIONS(395), + [sym__list_marker_plus] = ACTIONS(395), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(395), + [sym__list_marker_dot] = ACTIONS(395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(395), + [sym__fenced_code_block_start_backtick] = ACTIONS(395), + [sym__fenced_code_block_start_tilde] = ACTIONS(395), + [sym__blank_line_start] = ACTIONS(395), + [sym__split_token] = ACTIONS(395), + [sym__soft_line_break_marker] = ACTIONS(395), + [sym__code_span_start] = ACTIONS(395), + [sym__emphasis_open_star] = ACTIONS(395), + [sym__emphasis_open_underscore] = ACTIONS(395), [sym__last_token_whitespace] = ACTIONS(412), }, - [81] = { - [aux_sym__ignore_matching_tokens] = STATE(80), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_BSLASH] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym__] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [aux_sym__html_block_1_token1] = ACTIONS(399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(401), - [anon_sym_LT_QMARK] = ACTIONS(401), - [aux_sym__html_block_4_token1] = ACTIONS(401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(399), - [aux_sym__html_block_6_token1] = ACTIONS(401), - [aux_sym__html_block_6_token2] = ACTIONS(399), - [sym__open_tag_html_block] = ACTIONS(399), - [sym__open_tag_html_block_newline] = ACTIONS(399), - [sym__closing_tag_html_block] = ACTIONS(399), - [sym__closing_tag_html_block_newline] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [sym_entity_reference] = ACTIONS(399), - [sym_numeric_character_reference] = ACTIONS(399), - [sym_uri_autolink] = ACTIONS(399), - [sym_email_autolink] = ACTIONS(399), - [sym__whitespace_ge_2] = ACTIONS(399), - [aux_sym__whitespace_token1] = ACTIONS(401), - [sym__word_no_digit] = ACTIONS(399), - [sym__digits] = ACTIONS(399), - [aux_sym__newline_token1] = ACTIONS(399), - [sym__block_close] = ACTIONS(399), - [sym__block_continuation] = ACTIONS(410), - [sym__block_quote_continuation] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(399), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(399), - [sym_atx_h2_marker] = ACTIONS(399), - [sym_atx_h3_marker] = ACTIONS(399), - [sym_atx_h4_marker] = ACTIONS(399), - [sym_atx_h5_marker] = ACTIONS(399), - [sym_atx_h6_marker] = ACTIONS(399), - [sym_setext_h1_underline] = ACTIONS(399), - [sym_setext_h2_underline] = ACTIONS(399), - [sym__thematic_break] = ACTIONS(399), - [sym__list_marker_minus] = ACTIONS(399), - [sym__list_marker_plus] = ACTIONS(399), - [sym__list_marker_star] = ACTIONS(399), - [sym__list_marker_parenthesis] = ACTIONS(399), - [sym__list_marker_dot] = ACTIONS(399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(399), - [sym__fenced_code_block_start_backtick] = ACTIONS(399), - [sym__fenced_code_block_start_tilde] = ACTIONS(399), - [sym__blank_line_start] = ACTIONS(399), - [sym__split_token] = ACTIONS(399), - [sym__soft_line_break_marker] = ACTIONS(399), - [sym__code_span_start] = ACTIONS(399), - [sym__emphasis_open_star] = ACTIONS(399), - [sym__emphasis_open_underscore] = ACTIONS(399), - [sym__last_token_whitespace] = ACTIONS(410), - }, [82] = { - [sym__block_interrupt_paragraph] = STATE(717), - [sym_thematic_break] = STATE(717), - [sym_atx_heading] = STATE(717), - [sym_fenced_code_block] = STATE(717), - [sym__html_block_1] = STATE(717), - [sym__html_block_2] = STATE(717), - [sym__html_block_3] = STATE(717), - [sym__html_block_4] = STATE(717), - [sym__html_block_5] = STATE(717), - [sym__html_block_6] = STATE(717), - [sym__blank_line] = STATE(717), - [sym_block_quote] = STATE(717), + [sym__block_interrupt_paragraph] = STATE(712), + [sym_thematic_break] = STATE(712), + [sym_atx_heading] = STATE(712), + [sym_fenced_code_block] = STATE(712), + [sym__html_block_1] = STATE(712), + [sym__html_block_2] = STATE(712), + [sym__html_block_3] = STATE(712), + [sym__html_block_4] = STATE(712), + [sym__html_block_5] = STATE(712), + [sym__html_block_6] = STATE(712), + [sym__blank_line] = STATE(712), + [sym_block_quote] = STATE(712), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -39957,9 +39971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(419), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(421), @@ -40005,226 +40017,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(449), }, [83] = { - [sym__block_interrupt_paragraph] = STATE(779), - [sym_thematic_break] = STATE(779), - [sym_atx_heading] = STATE(779), - [sym_fenced_code_block] = STATE(779), - [sym__html_block_1] = STATE(779), - [sym__html_block_2] = STATE(779), - [sym__html_block_3] = STATE(779), - [sym__html_block_4] = STATE(779), - [sym__html_block_5] = STATE(779), - [sym__html_block_6] = STATE(779), - [sym__blank_line] = STATE(779), - [sym_block_quote] = STATE(779), - [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(451), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(453), - [anon_sym_LT_QMARK] = ACTIONS(455), - [aux_sym__html_block_4_token1] = ACTIONS(457), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(459), - [aux_sym__html_block_6_token1] = ACTIONS(461), - [aux_sym__html_block_6_token2] = ACTIONS(463), - [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(465), - [sym_atx_h1_marker] = ACTIONS(467), - [sym_atx_h2_marker] = ACTIONS(467), - [sym_atx_h3_marker] = ACTIONS(467), - [sym_atx_h4_marker] = ACTIONS(467), - [sym_atx_h5_marker] = ACTIONS(467), - [sym_atx_h6_marker] = ACTIONS(467), - [sym_setext_h1_underline] = ACTIONS(469), - [sym_setext_h2_underline] = ACTIONS(469), - [sym__thematic_break] = ACTIONS(471), - [sym__list_marker_minus] = ACTIONS(469), - [sym__list_marker_plus] = ACTIONS(469), - [sym__list_marker_star] = ACTIONS(469), - [sym__list_marker_parenthesis] = ACTIONS(469), - [sym__list_marker_dot] = ACTIONS(469), - [sym__fenced_code_block_start_backtick] = ACTIONS(473), - [sym__fenced_code_block_start_tilde] = ACTIONS(475), - [sym__blank_line_start] = ACTIONS(477), - [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_star] = ACTIONS(415), - [sym__last_token_whitespace] = ACTIONS(479), - }, - [84] = { - [sym__block_interrupt_paragraph] = STATE(754), - [sym_thematic_break] = STATE(754), - [sym_atx_heading] = STATE(754), - [sym_fenced_code_block] = STATE(754), - [sym__html_block_1] = STATE(754), - [sym__html_block_2] = STATE(754), - [sym__html_block_3] = STATE(754), - [sym__html_block_4] = STATE(754), - [sym__html_block_5] = STATE(754), - [sym__html_block_6] = STATE(754), - [sym__blank_line] = STATE(754), - [sym_block_quote] = STATE(754), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(451), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(453), - [anon_sym_LT_QMARK] = ACTIONS(455), - [aux_sym__html_block_4_token1] = ACTIONS(457), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(459), - [aux_sym__html_block_6_token1] = ACTIONS(461), - [aux_sym__html_block_6_token2] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym_uri_autolink] = ACTIONS(481), - [sym_email_autolink] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(465), - [sym_atx_h1_marker] = ACTIONS(467), - [sym_atx_h2_marker] = ACTIONS(467), - [sym_atx_h3_marker] = ACTIONS(467), - [sym_atx_h4_marker] = ACTIONS(467), - [sym_atx_h5_marker] = ACTIONS(467), - [sym_atx_h6_marker] = ACTIONS(467), - [sym_setext_h1_underline] = ACTIONS(485), - [sym_setext_h2_underline] = ACTIONS(485), - [sym__thematic_break] = ACTIONS(471), - [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(473), - [sym__fenced_code_block_start_tilde] = ACTIONS(475), - [sym__blank_line_start] = ACTIONS(477), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(481), - [sym__emphasis_open_star] = ACTIONS(481), - [sym__emphasis_open_underscore] = ACTIONS(481), - [sym__emphasis_close_star] = ACTIONS(481), - [sym__last_token_whitespace] = ACTIONS(487), - }, - [85] = { - [sym__block_interrupt_paragraph] = STATE(714), - [sym_thematic_break] = STATE(714), - [sym_atx_heading] = STATE(714), - [sym_fenced_code_block] = STATE(714), - [sym__html_block_1] = STATE(714), - [sym__html_block_2] = STATE(714), - [sym__html_block_3] = STATE(714), - [sym__html_block_4] = STATE(714), - [sym__html_block_5] = STATE(714), - [sym__html_block_6] = STATE(714), - [sym__blank_line] = STATE(714), - [sym_block_quote] = STATE(714), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), + [sym__block_interrupt_paragraph] = STATE(843), + [sym_thematic_break] = STATE(843), + [sym_atx_heading] = STATE(843), + [sym_fenced_code_block] = STATE(843), + [sym__html_block_1] = STATE(843), + [sym__html_block_2] = STATE(843), + [sym__html_block_3] = STATE(843), + [sym__html_block_4] = STATE(843), + [sym__html_block_5] = STATE(843), + [sym__html_block_6] = STATE(843), + [sym__blank_line] = STATE(843), + [sym_block_quote] = STATE(843), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_AT] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_BSLASH] = ACTIONS(453), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym__] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), [aux_sym__html_block_1_token1] = ACTIONS(419), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(421), [anon_sym_LT_QMARK] = ACTIONS(423), @@ -40232,16 +40068,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym_uri_autolink] = ACTIONS(481), - [sym_email_autolink] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(451), + [sym_entity_reference] = ACTIONS(451), + [sym_numeric_character_reference] = ACTIONS(451), + [sym_uri_autolink] = ACTIONS(451), + [sym_email_autolink] = ACTIONS(451), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(451), + [sym__digits] = ACTIONS(451), + [aux_sym__newline_token1] = ACTIONS(451), [sym__block_quote_start] = ACTIONS(433), [sym_atx_h1_marker] = ACTIONS(435), [sym_atx_h2_marker] = ACTIONS(435), @@ -40249,38 +40085,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(435), [sym_atx_h5_marker] = ACTIONS(435), [sym_atx_h6_marker] = ACTIONS(435), - [sym_setext_h1_underline] = ACTIONS(489), - [sym_setext_h2_underline] = ACTIONS(489), + [sym_setext_h1_underline] = ACTIONS(455), + [sym_setext_h2_underline] = ACTIONS(455), [sym__thematic_break] = ACTIONS(439), - [sym__list_marker_minus] = ACTIONS(489), - [sym__list_marker_plus] = ACTIONS(489), - [sym__list_marker_star] = ACTIONS(489), - [sym__list_marker_parenthesis] = ACTIONS(489), - [sym__list_marker_dot] = ACTIONS(489), + [sym__list_marker_minus] = ACTIONS(455), + [sym__list_marker_plus] = ACTIONS(455), + [sym__list_marker_star] = ACTIONS(455), + [sym__list_marker_parenthesis] = ACTIONS(455), + [sym__list_marker_dot] = ACTIONS(455), [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(481), - [sym__emphasis_open_star] = ACTIONS(481), - [sym__emphasis_open_underscore] = ACTIONS(481), - [sym__emphasis_close_underscore] = ACTIONS(481), - [sym__last_token_whitespace] = ACTIONS(491), + [sym__code_span_start] = ACTIONS(451), + [sym__emphasis_open_star] = ACTIONS(451), + [sym__emphasis_open_underscore] = ACTIONS(451), + [sym__emphasis_close_underscore] = ACTIONS(451), + [sym__last_token_whitespace] = ACTIONS(457), }, - [86] = { - [sym__block_interrupt_paragraph] = STATE(948), - [sym_thematic_break] = STATE(948), - [sym_atx_heading] = STATE(948), - [sym_fenced_code_block] = STATE(948), - [sym__html_block_1] = STATE(948), - [sym__html_block_2] = STATE(948), - [sym__html_block_3] = STATE(948), - [sym__html_block_4] = STATE(948), - [sym__html_block_5] = STATE(948), - [sym__html_block_6] = STATE(948), - [sym__blank_line] = STATE(948), - [sym_block_quote] = STATE(948), + [84] = { + [sym__block_interrupt_paragraph] = STATE(718), + [sym_thematic_break] = STATE(718), + [sym_atx_heading] = STATE(718), + [sym_fenced_code_block] = STATE(718), + [sym__html_block_1] = STATE(718), + [sym__html_block_2] = STATE(718), + [sym__html_block_3] = STATE(718), + [sym__html_block_4] = STATE(718), + [sym__html_block_5] = STATE(718), + [sym__html_block_6] = STATE(718), + [sym__blank_line] = STATE(718), + [sym_block_quote] = STATE(718), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -40309,17 +40147,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(495), - [anon_sym_LT_QMARK] = ACTIONS(497), - [aux_sym__html_block_4_token1] = ACTIONS(499), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(501), - [aux_sym__html_block_6_token1] = ACTIONS(503), - [aux_sym__html_block_6_token2] = ACTIONS(505), + [aux_sym__html_block_1_token1] = ACTIONS(459), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(461), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(465), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(467), + [aux_sym__html_block_6_token1] = ACTIONS(469), + [aux_sym__html_block_6_token2] = ACTIONS(471), [sym_backslash_escape] = ACTIONS(415), [sym_entity_reference] = ACTIONS(415), [sym_numeric_character_reference] = ACTIONS(415), @@ -40330,121 +40166,124 @@ 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(507), - [sym_atx_h1_marker] = ACTIONS(509), - [sym_atx_h2_marker] = ACTIONS(509), - [sym_atx_h3_marker] = ACTIONS(509), - [sym_atx_h4_marker] = ACTIONS(509), - [sym_atx_h5_marker] = ACTIONS(509), - [sym_atx_h6_marker] = ACTIONS(509), - [sym_setext_h1_underline] = ACTIONS(511), - [sym_setext_h2_underline] = ACTIONS(511), - [sym__thematic_break] = ACTIONS(513), - [sym__list_marker_minus] = ACTIONS(511), - [sym__list_marker_plus] = ACTIONS(511), - [sym__list_marker_star] = ACTIONS(511), - [sym__list_marker_parenthesis] = ACTIONS(511), - [sym__list_marker_dot] = ACTIONS(511), - [sym__fenced_code_block_start_backtick] = ACTIONS(515), - [sym__fenced_code_block_start_tilde] = ACTIONS(517), - [sym__blank_line_start] = ACTIONS(519), + [sym__block_quote_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(475), + [sym_atx_h2_marker] = ACTIONS(475), + [sym_atx_h3_marker] = ACTIONS(475), + [sym_atx_h4_marker] = ACTIONS(475), + [sym_atx_h5_marker] = ACTIONS(475), + [sym_atx_h6_marker] = ACTIONS(475), + [sym_setext_h1_underline] = ACTIONS(477), + [sym_setext_h2_underline] = ACTIONS(477), + [sym__thematic_break] = ACTIONS(479), + [sym__list_marker_minus] = ACTIONS(477), + [sym__list_marker_plus] = ACTIONS(477), + [sym__list_marker_star] = ACTIONS(477), + [sym__list_marker_parenthesis] = ACTIONS(477), + [sym__list_marker_dot] = ACTIONS(477), + [sym__fenced_code_block_start_backtick] = ACTIONS(481), + [sym__fenced_code_block_start_tilde] = ACTIONS(483), + [sym__blank_line_start] = ACTIONS(485), [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(521), + [sym__emphasis_close_star] = ACTIONS(415), + [sym__last_token_whitespace] = ACTIONS(487), }, - [87] = { - [aux_sym__soft_line_break_repeat1] = STATE(2218), - [aux_sym__paragraph_end_newline_repeat1] = STATE(240), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_SQUOTE] = ACTIONS(523), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(523), - [anon_sym_DOT] = ACTIONS(523), - [anon_sym_SLASH] = ACTIONS(523), - [anon_sym_COLON] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_EQ] = ACTIONS(523), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_QMARK] = ACTIONS(523), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_BSLASH] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym__] = ACTIONS(523), - [anon_sym_BQUOTE] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_TILDE] = ACTIONS(523), - [aux_sym__html_block_1_token1] = ACTIONS(523), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(525), - [anon_sym_LT_QMARK] = ACTIONS(525), - [aux_sym__html_block_4_token1] = ACTIONS(525), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(523), - [aux_sym__html_block_6_token1] = ACTIONS(525), - [aux_sym__html_block_6_token2] = ACTIONS(523), - [sym__open_tag_html_block] = ACTIONS(523), - [sym__open_tag_html_block_newline] = ACTIONS(523), - [sym__closing_tag_html_block] = ACTIONS(523), - [sym__closing_tag_html_block_newline] = ACTIONS(523), - [sym_backslash_escape] = ACTIONS(523), - [sym_entity_reference] = ACTIONS(523), - [sym_numeric_character_reference] = ACTIONS(523), - [sym_uri_autolink] = ACTIONS(523), - [sym_email_autolink] = ACTIONS(523), - [sym__whitespace_ge_2] = ACTIONS(523), - [aux_sym__whitespace_token1] = ACTIONS(525), - [sym__word_no_digit] = ACTIONS(523), - [sym__digits] = ACTIONS(523), - [aux_sym__newline_token1] = ACTIONS(523), - [sym__block_close] = ACTIONS(523), - [sym__block_quote_start] = ACTIONS(523), - [sym__indented_chunk_start] = ACTIONS(523), - [sym_atx_h1_marker] = ACTIONS(523), - [sym_atx_h2_marker] = ACTIONS(523), - [sym_atx_h3_marker] = ACTIONS(523), - [sym_atx_h4_marker] = ACTIONS(523), - [sym_atx_h5_marker] = ACTIONS(523), - [sym_atx_h6_marker] = ACTIONS(523), - [sym_setext_h1_underline] = ACTIONS(523), - [sym_setext_h2_underline] = ACTIONS(523), - [sym__thematic_break] = ACTIONS(523), - [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__list_marker_minus_dont_interrupt] = ACTIONS(523), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(523), - [sym__list_marker_star_dont_interrupt] = ACTIONS(523), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(523), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(523), - [sym__fenced_code_block_start_backtick] = ACTIONS(523), - [sym__fenced_code_block_start_tilde] = ACTIONS(523), - [sym__blank_line_start] = ACTIONS(523), - [sym__split_token] = ACTIONS(527), - [sym__soft_line_break_marker] = ACTIONS(529), - [sym__code_span_start] = ACTIONS(523), - [sym__emphasis_open_star] = ACTIONS(523), - [sym__emphasis_open_underscore] = ACTIONS(523), + [85] = { + [sym__block_interrupt_paragraph] = STATE(721), + [sym_thematic_break] = STATE(721), + [sym_atx_heading] = STATE(721), + [sym_fenced_code_block] = STATE(721), + [sym__html_block_1] = STATE(721), + [sym__html_block_2] = STATE(721), + [sym__html_block_3] = STATE(721), + [sym__html_block_4] = STATE(721), + [sym__html_block_5] = STATE(721), + [sym__html_block_6] = STATE(721), + [sym__blank_line] = STATE(721), + [sym_block_quote] = STATE(721), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_AT] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_BSLASH] = ACTIONS(453), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym__] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [aux_sym__html_block_1_token1] = ACTIONS(459), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(461), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(465), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(467), + [aux_sym__html_block_6_token1] = ACTIONS(469), + [aux_sym__html_block_6_token2] = ACTIONS(471), + [sym_backslash_escape] = ACTIONS(451), + [sym_entity_reference] = ACTIONS(451), + [sym_numeric_character_reference] = ACTIONS(451), + [sym_uri_autolink] = ACTIONS(451), + [sym_email_autolink] = ACTIONS(451), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(451), + [sym__digits] = ACTIONS(451), + [aux_sym__newline_token1] = ACTIONS(451), + [sym__block_quote_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(475), + [sym_atx_h2_marker] = ACTIONS(475), + [sym_atx_h3_marker] = ACTIONS(475), + [sym_atx_h4_marker] = ACTIONS(475), + [sym_atx_h5_marker] = ACTIONS(475), + [sym_atx_h6_marker] = ACTIONS(475), + [sym_setext_h1_underline] = ACTIONS(489), + [sym_setext_h2_underline] = ACTIONS(489), + [sym__thematic_break] = ACTIONS(479), + [sym__list_marker_minus] = ACTIONS(489), + [sym__list_marker_plus] = ACTIONS(489), + [sym__list_marker_star] = ACTIONS(489), + [sym__list_marker_parenthesis] = ACTIONS(489), + [sym__list_marker_dot] = ACTIONS(489), + [sym__fenced_code_block_start_backtick] = ACTIONS(481), + [sym__fenced_code_block_start_tilde] = ACTIONS(483), + [sym__blank_line_start] = ACTIONS(485), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(451), + [sym__emphasis_open_star] = ACTIONS(451), + [sym__emphasis_open_underscore] = ACTIONS(451), + [sym__emphasis_close_star] = ACTIONS(451), + [sym__last_token_whitespace] = ACTIONS(491), }, - [88] = { - [aux_sym__ignore_matching_tokens] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(377), + [86] = { + [aux_sym__ignore_matching_tokens] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -40473,9 +40312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(377), [anon_sym__] = ACTIONS(377), [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_TILDE] = ACTIONS(377), [aux_sym__html_block_1_token1] = ACTIONS(377), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), @@ -40498,9 +40335,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(531), - [sym__block_continuation] = ACTIONS(533), - [sym__block_quote_continuation] = ACTIONS(533), + [sym__line_ending] = ACTIONS(493), + [sym__block_close] = ACTIONS(377), + [sym__block_continuation] = ACTIONS(495), + [sym__block_quote_continuation] = ACTIONS(495), [sym__block_quote_start] = ACTIONS(377), [sym__indented_chunk_start] = ACTIONS(377), [sym_atx_h1_marker] = ACTIONS(377), @@ -40527,184 +40365,13 @@ 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(533), + [sym__last_token_whitespace] = ACTIONS(495), }, - [89] = { - [sym__block_interrupt_paragraph] = STATE(925), - [sym_thematic_break] = STATE(925), - [sym_atx_heading] = STATE(925), - [sym_fenced_code_block] = STATE(925), - [sym__html_block_1] = STATE(925), - [sym__html_block_2] = STATE(925), - [sym__html_block_3] = STATE(925), - [sym__html_block_4] = STATE(925), - [sym__html_block_5] = STATE(925), - [sym__html_block_6] = STATE(925), - [sym__blank_line] = STATE(925), - [sym_block_quote] = STATE(925), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(495), - [anon_sym_LT_QMARK] = ACTIONS(497), - [aux_sym__html_block_4_token1] = ACTIONS(499), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(501), - [aux_sym__html_block_6_token1] = ACTIONS(503), - [aux_sym__html_block_6_token2] = ACTIONS(505), - [sym_backslash_escape] = ACTIONS(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym_uri_autolink] = ACTIONS(481), - [sym_email_autolink] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(507), - [sym_atx_h1_marker] = ACTIONS(509), - [sym_atx_h2_marker] = ACTIONS(509), - [sym_atx_h3_marker] = ACTIONS(509), - [sym_atx_h4_marker] = ACTIONS(509), - [sym_atx_h5_marker] = ACTIONS(509), - [sym_atx_h6_marker] = ACTIONS(509), - [sym_setext_h1_underline] = ACTIONS(535), - [sym_setext_h2_underline] = ACTIONS(535), - [sym__thematic_break] = ACTIONS(513), - [sym__list_marker_minus] = ACTIONS(535), - [sym__list_marker_plus] = ACTIONS(535), - [sym__list_marker_star] = ACTIONS(535), - [sym__list_marker_parenthesis] = ACTIONS(535), - [sym__list_marker_dot] = ACTIONS(535), - [sym__fenced_code_block_start_backtick] = ACTIONS(515), - [sym__fenced_code_block_start_tilde] = ACTIONS(517), - [sym__blank_line_start] = ACTIONS(519), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(481), - [sym__emphasis_open_star] = ACTIONS(481), - [sym__emphasis_open_underscore] = ACTIONS(481), - [sym__last_token_whitespace] = ACTIONS(537), - }, - [90] = { - [aux_sym__soft_line_break_repeat1] = STATE(2218), - [aux_sym__paragraph_end_newline_repeat1] = STATE(210), - [ts_builtin_sym_end] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_SQUOTE] = ACTIONS(523), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(523), - [anon_sym_DOT] = ACTIONS(523), - [anon_sym_SLASH] = ACTIONS(523), - [anon_sym_COLON] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_EQ] = ACTIONS(523), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_QMARK] = ACTIONS(523), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_BSLASH] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym__] = ACTIONS(523), - [anon_sym_BQUOTE] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_TILDE] = ACTIONS(523), - [aux_sym__html_block_1_token1] = ACTIONS(523), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(525), - [anon_sym_LT_QMARK] = ACTIONS(525), - [aux_sym__html_block_4_token1] = ACTIONS(525), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(523), - [aux_sym__html_block_6_token1] = ACTIONS(525), - [aux_sym__html_block_6_token2] = ACTIONS(523), - [sym__open_tag_html_block] = ACTIONS(523), - [sym__open_tag_html_block_newline] = ACTIONS(523), - [sym__closing_tag_html_block] = ACTIONS(523), - [sym__closing_tag_html_block_newline] = ACTIONS(523), - [sym_backslash_escape] = ACTIONS(523), - [sym_entity_reference] = ACTIONS(523), - [sym_numeric_character_reference] = ACTIONS(523), - [sym_uri_autolink] = ACTIONS(523), - [sym_email_autolink] = ACTIONS(523), - [sym__whitespace_ge_2] = ACTIONS(523), - [aux_sym__whitespace_token1] = ACTIONS(525), - [sym__word_no_digit] = ACTIONS(523), - [sym__digits] = ACTIONS(523), - [aux_sym__newline_token1] = ACTIONS(523), - [sym__block_quote_start] = ACTIONS(523), - [sym__indented_chunk_start] = ACTIONS(523), - [sym_atx_h1_marker] = ACTIONS(523), - [sym_atx_h2_marker] = ACTIONS(523), - [sym_atx_h3_marker] = ACTIONS(523), - [sym_atx_h4_marker] = ACTIONS(523), - [sym_atx_h5_marker] = ACTIONS(523), - [sym_atx_h6_marker] = ACTIONS(523), - [sym_setext_h1_underline] = ACTIONS(523), - [sym_setext_h2_underline] = ACTIONS(523), - [sym__thematic_break] = ACTIONS(523), - [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__list_marker_minus_dont_interrupt] = ACTIONS(523), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(523), - [sym__list_marker_star_dont_interrupt] = ACTIONS(523), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(523), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(523), - [sym__fenced_code_block_start_backtick] = ACTIONS(523), - [sym__fenced_code_block_start_tilde] = ACTIONS(523), - [sym__blank_line_start] = ACTIONS(523), - [sym__split_token] = ACTIONS(539), - [sym__soft_line_break_marker] = ACTIONS(529), - [sym__code_span_start] = ACTIONS(523), - [sym__emphasis_open_star] = ACTIONS(523), - [sym__emphasis_open_underscore] = ACTIONS(523), - }, - [91] = { - [aux_sym__ignore_matching_tokens] = STATE(97), + [87] = { + [aux_sym__ignore_matching_tokens] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -40733,9 +40400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(377), [anon_sym__] = ACTIONS(377), [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_TILDE] = ACTIONS(377), [aux_sym__html_block_1_token1] = ACTIONS(377), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), @@ -40758,10 +40423,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(541), - [sym__block_close] = ACTIONS(377), - [sym__block_continuation] = ACTIONS(543), - [sym__block_quote_continuation] = ACTIONS(543), + [sym__line_ending] = ACTIONS(497), + [sym__block_continuation] = ACTIONS(499), + [sym__block_quote_continuation] = ACTIONS(499), [sym__block_quote_start] = ACTIONS(377), [sym__indented_chunk_start] = ACTIONS(377), [sym_atx_h1_marker] = ACTIONS(377), @@ -40788,97 +40452,447 @@ 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(499), + }, + [88] = { + [aux_sym__soft_line_break_repeat1] = STATE(2216), + [aux_sym__paragraph_end_newline_repeat1] = STATE(158), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_POUND] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(501), + [anon_sym_PERCENT] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(501), + [anon_sym_COLON] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(501), + [anon_sym_GT] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_BSLASH] = ACTIONS(503), + [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_CARET] = ACTIONS(501), + [anon_sym__] = ACTIONS(501), + [anon_sym_BQUOTE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(501), + [aux_sym__html_block_1_token1] = ACTIONS(501), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(503), + [anon_sym_LT_QMARK] = ACTIONS(503), + [aux_sym__html_block_4_token1] = ACTIONS(503), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(501), + [aux_sym__html_block_6_token1] = ACTIONS(503), + [aux_sym__html_block_6_token2] = ACTIONS(501), + [sym__open_tag_html_block] = ACTIONS(501), + [sym__open_tag_html_block_newline] = ACTIONS(501), + [sym__closing_tag_html_block] = ACTIONS(501), + [sym__closing_tag_html_block_newline] = ACTIONS(501), + [sym_backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(501), + [aux_sym__whitespace_token1] = ACTIONS(503), + [sym__word_no_digit] = ACTIONS(501), + [sym__digits] = ACTIONS(501), + [aux_sym__newline_token1] = ACTIONS(501), + [sym__block_close] = ACTIONS(501), + [sym__block_quote_start] = ACTIONS(501), + [sym__indented_chunk_start] = ACTIONS(501), + [sym_atx_h1_marker] = ACTIONS(501), + [sym_atx_h2_marker] = ACTIONS(501), + [sym_atx_h3_marker] = ACTIONS(501), + [sym_atx_h4_marker] = ACTIONS(501), + [sym_atx_h5_marker] = ACTIONS(501), + [sym_atx_h6_marker] = ACTIONS(501), + [sym_setext_h1_underline] = ACTIONS(501), + [sym_setext_h2_underline] = ACTIONS(501), + [sym__thematic_break] = ACTIONS(501), + [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__list_marker_minus_dont_interrupt] = ACTIONS(501), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(501), + [sym__list_marker_star_dont_interrupt] = ACTIONS(501), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(501), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(501), + [sym__fenced_code_block_start_backtick] = ACTIONS(501), + [sym__fenced_code_block_start_tilde] = ACTIONS(501), + [sym__blank_line_start] = ACTIONS(501), + [sym__split_token] = ACTIONS(505), + [sym__soft_line_break_marker] = ACTIONS(507), + [sym__code_span_start] = ACTIONS(501), + [sym__emphasis_open_star] = ACTIONS(501), + [sym__emphasis_open_underscore] = ACTIONS(501), + }, + [89] = { + [sym__block_interrupt_paragraph] = STATE(922), + [sym_thematic_break] = STATE(922), + [sym_atx_heading] = STATE(922), + [sym_fenced_code_block] = STATE(922), + [sym__html_block_1] = STATE(922), + [sym__html_block_2] = STATE(922), + [sym__html_block_3] = STATE(922), + [sym__html_block_4] = STATE(922), + [sym__html_block_5] = STATE(922), + [sym__html_block_6] = STATE(922), + [sym__blank_line] = STATE(922), + [sym_block_quote] = STATE(922), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(509), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(511), + [anon_sym_LT_QMARK] = ACTIONS(513), + [aux_sym__html_block_4_token1] = ACTIONS(515), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(517), + [aux_sym__html_block_6_token1] = ACTIONS(519), + [aux_sym__html_block_6_token2] = ACTIONS(521), + [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(523), + [sym_atx_h1_marker] = ACTIONS(525), + [sym_atx_h2_marker] = ACTIONS(525), + [sym_atx_h3_marker] = ACTIONS(525), + [sym_atx_h4_marker] = ACTIONS(525), + [sym_atx_h5_marker] = ACTIONS(525), + [sym_atx_h6_marker] = ACTIONS(525), + [sym_setext_h1_underline] = ACTIONS(527), + [sym_setext_h2_underline] = ACTIONS(527), + [sym__thematic_break] = ACTIONS(529), + [sym__list_marker_minus] = ACTIONS(527), + [sym__list_marker_plus] = ACTIONS(527), + [sym__list_marker_star] = ACTIONS(527), + [sym__list_marker_parenthesis] = ACTIONS(527), + [sym__list_marker_dot] = ACTIONS(527), + [sym__fenced_code_block_start_backtick] = ACTIONS(531), + [sym__fenced_code_block_start_tilde] = ACTIONS(533), + [sym__blank_line_start] = ACTIONS(535), + [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(537), + }, + [90] = { + [aux_sym__soft_line_break_repeat1] = STATE(2216), + [aux_sym__paragraph_end_newline_repeat1] = STATE(118), + [ts_builtin_sym_end] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_POUND] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(501), + [anon_sym_PERCENT] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(501), + [anon_sym_COLON] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(501), + [anon_sym_GT] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_BSLASH] = ACTIONS(503), + [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_CARET] = ACTIONS(501), + [anon_sym__] = ACTIONS(501), + [anon_sym_BQUOTE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(501), + [aux_sym__html_block_1_token1] = ACTIONS(501), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(503), + [anon_sym_LT_QMARK] = ACTIONS(503), + [aux_sym__html_block_4_token1] = ACTIONS(503), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(501), + [aux_sym__html_block_6_token1] = ACTIONS(503), + [aux_sym__html_block_6_token2] = ACTIONS(501), + [sym__open_tag_html_block] = ACTIONS(501), + [sym__open_tag_html_block_newline] = ACTIONS(501), + [sym__closing_tag_html_block] = ACTIONS(501), + [sym__closing_tag_html_block_newline] = ACTIONS(501), + [sym_backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(501), + [aux_sym__whitespace_token1] = ACTIONS(503), + [sym__word_no_digit] = ACTIONS(501), + [sym__digits] = ACTIONS(501), + [aux_sym__newline_token1] = ACTIONS(501), + [sym__block_quote_start] = ACTIONS(501), + [sym__indented_chunk_start] = ACTIONS(501), + [sym_atx_h1_marker] = ACTIONS(501), + [sym_atx_h2_marker] = ACTIONS(501), + [sym_atx_h3_marker] = ACTIONS(501), + [sym_atx_h4_marker] = ACTIONS(501), + [sym_atx_h5_marker] = ACTIONS(501), + [sym_atx_h6_marker] = ACTIONS(501), + [sym_setext_h1_underline] = ACTIONS(501), + [sym_setext_h2_underline] = ACTIONS(501), + [sym__thematic_break] = ACTIONS(501), + [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__list_marker_minus_dont_interrupt] = ACTIONS(501), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(501), + [sym__list_marker_star_dont_interrupt] = ACTIONS(501), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(501), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(501), + [sym__fenced_code_block_start_backtick] = ACTIONS(501), + [sym__fenced_code_block_start_tilde] = ACTIONS(501), + [sym__blank_line_start] = ACTIONS(501), + [sym__split_token] = ACTIONS(539), + [sym__soft_line_break_marker] = ACTIONS(507), + [sym__code_span_start] = ACTIONS(501), + [sym__emphasis_open_star] = ACTIONS(501), + [sym__emphasis_open_underscore] = ACTIONS(501), + }, + [91] = { + [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_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_AT] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_BSLASH] = ACTIONS(453), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym__] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [aux_sym__html_block_1_token1] = ACTIONS(509), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(511), + [anon_sym_LT_QMARK] = ACTIONS(513), + [aux_sym__html_block_4_token1] = ACTIONS(515), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(517), + [aux_sym__html_block_6_token1] = ACTIONS(519), + [aux_sym__html_block_6_token2] = ACTIONS(521), + [sym_backslash_escape] = ACTIONS(451), + [sym_entity_reference] = ACTIONS(451), + [sym_numeric_character_reference] = ACTIONS(451), + [sym_uri_autolink] = ACTIONS(451), + [sym_email_autolink] = ACTIONS(451), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(451), + [sym__digits] = ACTIONS(451), + [aux_sym__newline_token1] = ACTIONS(451), + [sym__block_quote_start] = ACTIONS(523), + [sym_atx_h1_marker] = ACTIONS(525), + [sym_atx_h2_marker] = ACTIONS(525), + [sym_atx_h3_marker] = ACTIONS(525), + [sym_atx_h4_marker] = ACTIONS(525), + [sym_atx_h5_marker] = ACTIONS(525), + [sym_atx_h6_marker] = ACTIONS(525), + [sym_setext_h1_underline] = ACTIONS(541), + [sym_setext_h2_underline] = ACTIONS(541), + [sym__thematic_break] = ACTIONS(529), + [sym__list_marker_minus] = ACTIONS(541), + [sym__list_marker_plus] = ACTIONS(541), + [sym__list_marker_star] = ACTIONS(541), + [sym__list_marker_parenthesis] = ACTIONS(541), + [sym__list_marker_dot] = ACTIONS(541), + [sym__fenced_code_block_start_backtick] = ACTIONS(531), + [sym__fenced_code_block_start_tilde] = ACTIONS(533), + [sym__blank_line_start] = ACTIONS(535), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(451), + [sym__emphasis_open_star] = ACTIONS(451), + [sym__emphasis_open_underscore] = ACTIONS(451), [sym__last_token_whitespace] = ACTIONS(543), }, [92] = { [aux_sym__ignore_matching_tokens] = STATE(92), - [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), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym__] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [aux_sym__html_block_1_token1] = ACTIONS(395), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(397), + [anon_sym_LT_QMARK] = ACTIONS(397), + [aux_sym__html_block_4_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(395), + [aux_sym__html_block_6_token1] = ACTIONS(397), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym__open_tag_html_block] = ACTIONS(395), + [sym__open_tag_html_block_newline] = ACTIONS(395), + [sym__closing_tag_html_block] = ACTIONS(395), + [sym__closing_tag_html_block_newline] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [sym_entity_reference] = ACTIONS(395), + [sym_numeric_character_reference] = ACTIONS(395), + [sym_uri_autolink] = ACTIONS(395), + [sym_email_autolink] = ACTIONS(395), + [sym__whitespace_ge_2] = ACTIONS(395), + [aux_sym__whitespace_token1] = ACTIONS(397), + [sym__word_no_digit] = ACTIONS(395), + [sym__digits] = ACTIONS(395), + [aux_sym__newline_token1] = ACTIONS(395), + [sym__block_close] = ACTIONS(395), [sym__block_continuation] = ACTIONS(545), [sym__block_quote_continuation] = ACTIONS(545), - [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__block_quote_start] = ACTIONS(395), + [sym__indented_chunk_start] = ACTIONS(395), + [sym_atx_h1_marker] = ACTIONS(395), + [sym_atx_h2_marker] = ACTIONS(395), + [sym_atx_h3_marker] = ACTIONS(395), + [sym_atx_h4_marker] = ACTIONS(395), + [sym_atx_h5_marker] = ACTIONS(395), + [sym_atx_h6_marker] = ACTIONS(395), + [sym__thematic_break] = ACTIONS(395), + [sym__list_marker_minus] = ACTIONS(395), + [sym__list_marker_plus] = ACTIONS(395), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(395), + [sym__list_marker_dot] = ACTIONS(395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(395), + [sym__fenced_code_block_start_backtick] = ACTIONS(395), + [sym__fenced_code_block_start_tilde] = ACTIONS(395), + [sym__blank_line_start] = ACTIONS(395), + [sym__no_indented_chunk] = ACTIONS(395), + [sym__code_span_start] = ACTIONS(395), + [sym__emphasis_open_star] = ACTIONS(395), + [sym__emphasis_open_underscore] = ACTIONS(395), [sym__last_token_whitespace] = ACTIONS(545), }, [93] = { - [aux_sym__ignore_matching_tokens] = STATE(101), + [aux_sym__ignore_matching_tokens] = STATE(94), [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -40907,9 +40921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -40963,8 +40975,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(548), }, [94] = { - [aux_sym__ignore_matching_tokens] = STATE(96), + [aux_sym__ignore_matching_tokens] = STATE(94), + [ts_builtin_sym_end] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym__] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [aux_sym__html_block_1_token1] = ACTIONS(395), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(397), + [anon_sym_LT_QMARK] = ACTIONS(397), + [aux_sym__html_block_4_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(395), + [aux_sym__html_block_6_token1] = ACTIONS(397), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym__open_tag_html_block] = ACTIONS(395), + [sym__open_tag_html_block_newline] = ACTIONS(395), + [sym__closing_tag_html_block] = ACTIONS(395), + [sym__closing_tag_html_block_newline] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [sym_entity_reference] = ACTIONS(395), + [sym_numeric_character_reference] = ACTIONS(395), + [sym_uri_autolink] = ACTIONS(395), + [sym_email_autolink] = ACTIONS(395), + [sym__whitespace_ge_2] = ACTIONS(395), + [aux_sym__whitespace_token1] = ACTIONS(397), + [sym__word_no_digit] = ACTIONS(395), + [sym__digits] = ACTIONS(395), + [aux_sym__newline_token1] = ACTIONS(395), + [sym__block_continuation] = ACTIONS(550), + [sym__block_quote_continuation] = ACTIONS(550), + [sym__block_quote_start] = ACTIONS(395), + [sym__indented_chunk_start] = ACTIONS(395), + [sym_atx_h1_marker] = ACTIONS(395), + [sym_atx_h2_marker] = ACTIONS(395), + [sym_atx_h3_marker] = ACTIONS(395), + [sym_atx_h4_marker] = ACTIONS(395), + [sym_atx_h5_marker] = ACTIONS(395), + [sym_atx_h6_marker] = ACTIONS(395), + [sym__thematic_break] = ACTIONS(395), + [sym__list_marker_minus] = ACTIONS(395), + [sym__list_marker_plus] = ACTIONS(395), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(395), + [sym__list_marker_dot] = ACTIONS(395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(395), + [sym__fenced_code_block_start_backtick] = ACTIONS(395), + [sym__fenced_code_block_start_tilde] = ACTIONS(395), + [sym__blank_line_start] = ACTIONS(395), + [sym__no_indented_chunk] = ACTIONS(395), + [sym__code_span_start] = ACTIONS(395), + [sym__emphasis_open_star] = ACTIONS(395), + [sym__emphasis_open_underscore] = ACTIONS(395), + [sym__last_token_whitespace] = ACTIONS(550), + }, + [95] = { + [aux_sym__ignore_matching_tokens] = STATE(100), [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -40993,9 +41093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -41018,8 +41116,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(550), - [sym__block_quote_continuation] = ACTIONS(550), + [sym__block_continuation] = ACTIONS(553), + [sym__block_quote_continuation] = ACTIONS(553), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -41046,10 +41144,12 @@ 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(550), + [sym__last_token_whitespace] = ACTIONS(553), }, - [95] = { - [aux_sym__ignore_matching_tokens] = STATE(158), + [96] = { + [aux_sym__ignore_matching_tokens] = STATE(200), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -41078,9 +41178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(377), [anon_sym__] = ACTIONS(377), [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_TILDE] = ACTIONS(377), [aux_sym__html_block_1_token1] = ACTIONS(377), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), @@ -41103,10 +41201,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(552), + [sym__line_ending] = ACTIONS(555), [sym__block_close] = ACTIONS(377), - [sym__block_continuation] = ACTIONS(554), - [sym__block_quote_continuation] = ACTIONS(554), + [sym__block_continuation] = ACTIONS(557), + [sym__block_quote_continuation] = ACTIONS(557), [sym__block_quote_start] = ACTIONS(377), [sym__indented_chunk_start] = ACTIONS(377), [sym_atx_h1_marker] = ACTIONS(377), @@ -41132,96 +41230,98 @@ 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(554), - }, - [96] = { - [aux_sym__ignore_matching_tokens] = STATE(96), - [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(556), - [sym__block_quote_continuation] = ACTIONS(556), - [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(556), + [sym__last_token_whitespace] = ACTIONS(557), }, [97] = { + [aux_sym__ignore_matching_tokens] = STATE(204), + [ts_builtin_sym_end] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_COLON] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym__] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_TILDE] = ACTIONS(377), + [aux_sym__html_block_1_token1] = ACTIONS(377), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), + [anon_sym_LT_QMARK] = ACTIONS(379), + [aux_sym__html_block_4_token1] = ACTIONS(379), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(377), + [aux_sym__html_block_6_token1] = ACTIONS(379), + [aux_sym__html_block_6_token2] = ACTIONS(377), + [sym__open_tag_html_block] = ACTIONS(377), + [sym__open_tag_html_block_newline] = ACTIONS(377), + [sym__closing_tag_html_block] = ACTIONS(377), + [sym__closing_tag_html_block_newline] = ACTIONS(377), + [sym_backslash_escape] = ACTIONS(377), + [sym_entity_reference] = ACTIONS(377), + [sym_numeric_character_reference] = ACTIONS(377), + [sym_uri_autolink] = ACTIONS(377), + [sym_email_autolink] = ACTIONS(377), + [sym__whitespace_ge_2] = ACTIONS(377), + [aux_sym__whitespace_token1] = ACTIONS(379), + [sym__word_no_digit] = ACTIONS(377), + [sym__digits] = ACTIONS(377), + [aux_sym__newline_token1] = ACTIONS(377), + [sym__line_ending] = ACTIONS(559), + [sym__block_continuation] = ACTIONS(561), + [sym__block_quote_continuation] = ACTIONS(561), + [sym__block_quote_start] = ACTIONS(377), + [sym__indented_chunk_start] = ACTIONS(377), + [sym_atx_h1_marker] = ACTIONS(377), + [sym_atx_h2_marker] = ACTIONS(377), + [sym_atx_h3_marker] = ACTIONS(377), + [sym_atx_h4_marker] = ACTIONS(377), + [sym_atx_h5_marker] = ACTIONS(377), + [sym_atx_h6_marker] = ACTIONS(377), + [sym__thematic_break] = ACTIONS(377), + [sym__list_marker_minus] = ACTIONS(377), + [sym__list_marker_plus] = ACTIONS(377), + [sym__list_marker_star] = ACTIONS(377), + [sym__list_marker_parenthesis] = ACTIONS(377), + [sym__list_marker_dot] = ACTIONS(377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(377), + [sym__fenced_code_block_start_backtick] = ACTIONS(377), + [sym__fenced_code_block_start_tilde] = ACTIONS(377), + [sym__blank_line_start] = ACTIONS(377), + [sym__code_span_start] = ACTIONS(377), + [sym__emphasis_open_star] = ACTIONS(377), + [sym__emphasis_open_underscore] = ACTIONS(377), + [sym__last_token_whitespace] = ACTIONS(561), + }, + [98] = { [aux_sym__ignore_matching_tokens] = STATE(92), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -41250,9 +41350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -41276,8 +41374,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(559), - [sym__block_quote_continuation] = ACTIONS(559), + [sym__block_continuation] = ACTIONS(563), + [sym__block_quote_continuation] = ACTIONS(563), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -41304,354 +41402,12 @@ 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(559), - }, - [98] = { - [sym__soft_line_break] = STATE(250), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(250), - [sym_full_reference_link] = STATE(250), - [sym_collapsed_reference_link] = STATE(250), - [sym_inline_link] = STATE(250), - [sym_image] = STATE(250), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(250), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(250), - [sym__whitespace] = STATE(250), - [sym__word] = STATE(250), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore] = STATE(250), - [aux_sym__inline_no_underscore] = STATE(250), - [sym__text_inline_no_underscore] = STATE(250), - [sym__emphasis_star] = STATE(813), - [sym__strong_emphasis_star] = STATE(250), - [sym__emphasis_underscore] = STATE(744), - [sym__strong_emphasis_underscore] = STATE(250), - [sym__code_span] = STATE(250), - [anon_sym_BANG] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_BSLASH] = ACTIONS(576), - [anon_sym_RBRACK] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(564), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(579), - [anon_sym_LT_QMARK] = ACTIONS(582), - [aux_sym__html_block_4_token1] = ACTIONS(585), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(588), - [sym_backslash_escape] = ACTIONS(591), - [sym_entity_reference] = ACTIONS(591), - [sym_numeric_character_reference] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(591), - [sym_email_autolink] = ACTIONS(591), - [sym__whitespace_ge_2] = ACTIONS(594), - [aux_sym__whitespace_token1] = ACTIONS(597), - [sym__word_no_digit] = ACTIONS(591), - [sym__digits] = ACTIONS(591), - [aux_sym__newline_token1] = ACTIONS(600), - [sym__code_span_start] = ACTIONS(603), - [sym__emphasis_open_star] = ACTIONS(606), - [sym__emphasis_open_underscore] = ACTIONS(609), - [sym__emphasis_close_star] = ACTIONS(612), - [sym__last_token_punctuation] = ACTIONS(614), + [sym__last_token_whitespace] = ACTIONS(563), }, [99] = { - [sym__soft_line_break] = STATE(208), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(208), - [sym_full_reference_link] = STATE(208), - [sym_collapsed_reference_link] = STATE(208), - [sym_inline_link] = STATE(208), - [sym_image] = STATE(208), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(208), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(208), - [sym__whitespace] = STATE(208), - [sym__word] = STATE(208), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(208), - [aux_sym__inline_no_star] = STATE(208), - [sym__text_inline_no_star] = STATE(208), - [sym__emphasis_star] = STATE(841), - [sym__strong_emphasis_star] = STATE(208), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(208), - [sym__code_span] = STATE(208), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_DQUOTE] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_BSLASH] = ACTIONS(631), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym__] = ACTIONS(619), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(634), - [anon_sym_LT_QMARK] = ACTIONS(637), - [aux_sym__html_block_4_token1] = ACTIONS(640), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(643), - [sym_backslash_escape] = ACTIONS(646), - [sym_entity_reference] = ACTIONS(646), - [sym_numeric_character_reference] = ACTIONS(646), - [sym_uri_autolink] = ACTIONS(646), - [sym_email_autolink] = ACTIONS(646), - [sym__whitespace_ge_2] = ACTIONS(649), - [aux_sym__whitespace_token1] = ACTIONS(652), - [sym__word_no_digit] = ACTIONS(646), - [sym__digits] = ACTIONS(646), - [aux_sym__newline_token1] = ACTIONS(655), - [sym__code_span_start] = ACTIONS(658), - [sym__emphasis_open_star] = ACTIONS(661), - [sym__emphasis_open_underscore] = ACTIONS(664), - [sym__emphasis_close_underscore] = ACTIONS(667), - [sym__last_token_punctuation] = ACTIONS(669), - }, - [100] = { - [aux_sym__ignore_matching_tokens] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(377), - [anon_sym_POUND] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_RPAREN] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_COMMA] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_COLON] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(379), - [anon_sym_RBRACK] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym__] = ACTIONS(377), - [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_TILDE] = ACTIONS(377), - [aux_sym__html_block_1_token1] = ACTIONS(377), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(379), - [anon_sym_LT_QMARK] = ACTIONS(379), - [aux_sym__html_block_4_token1] = ACTIONS(379), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(377), - [aux_sym__html_block_6_token1] = ACTIONS(379), - [aux_sym__html_block_6_token2] = ACTIONS(377), - [sym__open_tag_html_block] = ACTIONS(377), - [sym__open_tag_html_block_newline] = ACTIONS(377), - [sym__closing_tag_html_block] = ACTIONS(377), - [sym__closing_tag_html_block_newline] = ACTIONS(377), - [sym_backslash_escape] = ACTIONS(377), - [sym_entity_reference] = ACTIONS(377), - [sym_numeric_character_reference] = ACTIONS(377), - [sym_uri_autolink] = ACTIONS(377), - [sym_email_autolink] = ACTIONS(377), - [sym__whitespace_ge_2] = ACTIONS(377), - [aux_sym__whitespace_token1] = ACTIONS(379), - [sym__word_no_digit] = ACTIONS(377), - [sym__digits] = ACTIONS(377), - [aux_sym__newline_token1] = ACTIONS(377), - [sym__line_ending] = ACTIONS(671), - [sym__block_continuation] = ACTIONS(673), - [sym__block_quote_continuation] = ACTIONS(673), - [sym__block_quote_start] = ACTIONS(377), - [sym__indented_chunk_start] = ACTIONS(377), - [sym_atx_h1_marker] = ACTIONS(377), - [sym_atx_h2_marker] = ACTIONS(377), - [sym_atx_h3_marker] = ACTIONS(377), - [sym_atx_h4_marker] = ACTIONS(377), - [sym_atx_h5_marker] = ACTIONS(377), - [sym_atx_h6_marker] = ACTIONS(377), - [sym__thematic_break] = ACTIONS(377), - [sym__list_marker_minus] = ACTIONS(377), - [sym__list_marker_plus] = ACTIONS(377), - [sym__list_marker_star] = ACTIONS(377), - [sym__list_marker_parenthesis] = ACTIONS(377), - [sym__list_marker_dot] = ACTIONS(377), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(377), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(377), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(377), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(377), - [sym__fenced_code_block_start_backtick] = ACTIONS(377), - [sym__fenced_code_block_start_tilde] = ACTIONS(377), - [sym__blank_line_start] = ACTIONS(377), - [sym__code_span_start] = ACTIONS(377), - [sym__emphasis_open_star] = ACTIONS(377), - [sym__emphasis_open_underscore] = ACTIONS(377), - [sym__last_token_whitespace] = ACTIONS(673), - }, - [101] = { - [aux_sym__ignore_matching_tokens] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_BSLASH] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym__] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [aux_sym__html_block_1_token1] = ACTIONS(399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(401), - [anon_sym_LT_QMARK] = ACTIONS(401), - [aux_sym__html_block_4_token1] = ACTIONS(401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(399), - [aux_sym__html_block_6_token1] = ACTIONS(401), - [aux_sym__html_block_6_token2] = ACTIONS(399), - [sym__open_tag_html_block] = ACTIONS(399), - [sym__open_tag_html_block_newline] = ACTIONS(399), - [sym__closing_tag_html_block] = ACTIONS(399), - [sym__closing_tag_html_block_newline] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [sym_entity_reference] = ACTIONS(399), - [sym_numeric_character_reference] = ACTIONS(399), - [sym_uri_autolink] = ACTIONS(399), - [sym_email_autolink] = ACTIONS(399), - [sym__whitespace_ge_2] = ACTIONS(399), - [aux_sym__whitespace_token1] = ACTIONS(401), - [sym__word_no_digit] = ACTIONS(399), - [sym__digits] = ACTIONS(399), - [aux_sym__newline_token1] = ACTIONS(399), - [sym__block_continuation] = ACTIONS(550), - [sym__block_quote_continuation] = ACTIONS(550), - [sym__block_quote_start] = ACTIONS(399), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(399), - [sym_atx_h2_marker] = ACTIONS(399), - [sym_atx_h3_marker] = ACTIONS(399), - [sym_atx_h4_marker] = ACTIONS(399), - [sym_atx_h5_marker] = ACTIONS(399), - [sym_atx_h6_marker] = ACTIONS(399), - [sym__thematic_break] = ACTIONS(399), - [sym__list_marker_minus] = ACTIONS(399), - [sym__list_marker_plus] = ACTIONS(399), - [sym__list_marker_star] = ACTIONS(399), - [sym__list_marker_parenthesis] = ACTIONS(399), - [sym__list_marker_dot] = ACTIONS(399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(399), - [sym__fenced_code_block_start_backtick] = ACTIONS(399), - [sym__fenced_code_block_start_tilde] = ACTIONS(399), - [sym__blank_line_start] = ACTIONS(399), - [sym__no_indented_chunk] = ACTIONS(399), - [sym__code_span_start] = ACTIONS(399), - [sym__emphasis_open_star] = ACTIONS(399), - [sym__emphasis_open_underscore] = ACTIONS(399), - [sym__last_token_whitespace] = ACTIONS(550), - }, - [102] = { - [aux_sym__ignore_matching_tokens] = STATE(103), + [aux_sym__ignore_matching_tokens] = STATE(102), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -41680,9 +41436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -41706,8 +41460,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(675), - [sym__block_quote_continuation] = ACTIONS(675), + [sym__block_continuation] = ACTIONS(565), + [sym__block_quote_continuation] = ACTIONS(565), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -41734,96 +41488,356 @@ 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(675), + [sym__last_token_whitespace] = ACTIONS(565), }, - [103] = { + [100] = { + [aux_sym__ignore_matching_tokens] = STATE(94), + [ts_builtin_sym_end] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym__] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [aux_sym__html_block_1_token1] = ACTIONS(402), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(404), + [anon_sym_LT_QMARK] = ACTIONS(404), + [aux_sym__html_block_4_token1] = ACTIONS(404), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(402), + [aux_sym__html_block_6_token1] = ACTIONS(404), + [aux_sym__html_block_6_token2] = ACTIONS(402), + [sym__open_tag_html_block] = ACTIONS(402), + [sym__open_tag_html_block_newline] = ACTIONS(402), + [sym__closing_tag_html_block] = ACTIONS(402), + [sym__closing_tag_html_block_newline] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [sym_entity_reference] = ACTIONS(402), + [sym_numeric_character_reference] = ACTIONS(402), + [sym_uri_autolink] = ACTIONS(402), + [sym_email_autolink] = ACTIONS(402), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(404), + [sym__word_no_digit] = ACTIONS(402), + [sym__digits] = ACTIONS(402), + [aux_sym__newline_token1] = ACTIONS(402), + [sym__block_continuation] = ACTIONS(548), + [sym__block_quote_continuation] = ACTIONS(548), + [sym__block_quote_start] = ACTIONS(402), + [sym__indented_chunk_start] = ACTIONS(402), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(402), + [sym_atx_h4_marker] = ACTIONS(402), + [sym_atx_h5_marker] = ACTIONS(402), + [sym_atx_h6_marker] = ACTIONS(402), + [sym__thematic_break] = ACTIONS(402), + [sym__list_marker_minus] = ACTIONS(402), + [sym__list_marker_plus] = ACTIONS(402), + [sym__list_marker_star] = ACTIONS(402), + [sym__list_marker_parenthesis] = ACTIONS(402), + [sym__list_marker_dot] = ACTIONS(402), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_star_dont_interrupt] = ACTIONS(402), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(402), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(402), + [sym__fenced_code_block_start_backtick] = ACTIONS(402), + [sym__fenced_code_block_start_tilde] = ACTIONS(402), + [sym__blank_line_start] = ACTIONS(402), + [sym__no_indented_chunk] = ACTIONS(402), + [sym__code_span_start] = ACTIONS(402), + [sym__emphasis_open_star] = ACTIONS(402), + [sym__emphasis_open_underscore] = ACTIONS(402), + [sym__last_token_whitespace] = ACTIONS(548), + }, + [101] = { + [sym__soft_line_break] = STATE(132), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [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(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(132), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(132), + [sym__whitespace] = STATE(132), + [sym__word] = STATE(132), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(132), + [aux_sym__inline_no_underscore] = STATE(132), + [sym__text_inline_no_underscore] = STATE(132), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(132), + [sym__emphasis_underscore] = STATE(820), + [sym__strong_emphasis_underscore] = STATE(132), + [sym__code_span] = STATE(132), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_BSLASH] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym__] = ACTIONS(567), + [anon_sym_BQUOTE] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(585), + [anon_sym_LT_QMARK] = ACTIONS(588), + [aux_sym__html_block_4_token1] = ACTIONS(591), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(594), + [sym_backslash_escape] = ACTIONS(597), + [sym_entity_reference] = ACTIONS(597), + [sym_numeric_character_reference] = ACTIONS(597), + [sym_uri_autolink] = ACTIONS(597), + [sym_email_autolink] = ACTIONS(597), + [sym__whitespace_ge_2] = ACTIONS(600), + [aux_sym__whitespace_token1] = ACTIONS(603), + [sym__word_no_digit] = ACTIONS(597), + [sym__digits] = ACTIONS(597), + [aux_sym__newline_token1] = ACTIONS(606), + [sym__code_span_start] = ACTIONS(609), + [sym__emphasis_open_star] = ACTIONS(612), + [sym__emphasis_open_underscore] = ACTIONS(615), + [sym__emphasis_close_star] = ACTIONS(618), + [sym__last_token_punctuation] = ACTIONS(620), + }, + [102] = { [aux_sym__ignore_matching_tokens] = STATE(92), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_BSLASH] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym__] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [aux_sym__html_block_1_token1] = ACTIONS(399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(401), - [anon_sym_LT_QMARK] = ACTIONS(401), - [aux_sym__html_block_4_token1] = ACTIONS(401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(399), - [aux_sym__html_block_6_token1] = ACTIONS(401), - [aux_sym__html_block_6_token2] = ACTIONS(399), - [sym__open_tag_html_block] = ACTIONS(399), - [sym__open_tag_html_block_newline] = ACTIONS(399), - [sym__closing_tag_html_block] = ACTIONS(399), - [sym__closing_tag_html_block_newline] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [sym_entity_reference] = ACTIONS(399), - [sym_numeric_character_reference] = ACTIONS(399), - [sym_uri_autolink] = ACTIONS(399), - [sym_email_autolink] = ACTIONS(399), - [sym__whitespace_ge_2] = ACTIONS(399), - [aux_sym__whitespace_token1] = ACTIONS(401), - [sym__word_no_digit] = ACTIONS(399), - [sym__digits] = ACTIONS(399), - [aux_sym__newline_token1] = ACTIONS(399), - [sym__block_close] = ACTIONS(399), - [sym__block_continuation] = ACTIONS(559), - [sym__block_quote_continuation] = ACTIONS(559), - [sym__block_quote_start] = ACTIONS(399), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(399), - [sym_atx_h2_marker] = ACTIONS(399), - [sym_atx_h3_marker] = ACTIONS(399), - [sym_atx_h4_marker] = ACTIONS(399), - [sym_atx_h5_marker] = ACTIONS(399), - [sym_atx_h6_marker] = ACTIONS(399), - [sym__thematic_break] = ACTIONS(399), - [sym__list_marker_minus] = ACTIONS(399), - [sym__list_marker_plus] = ACTIONS(399), - [sym__list_marker_star] = ACTIONS(399), - [sym__list_marker_parenthesis] = ACTIONS(399), - [sym__list_marker_dot] = ACTIONS(399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(399), - [sym__fenced_code_block_start_backtick] = ACTIONS(399), - [sym__fenced_code_block_start_tilde] = ACTIONS(399), - [sym__blank_line_start] = ACTIONS(399), - [sym__no_indented_chunk] = ACTIONS(399), - [sym__code_span_start] = ACTIONS(399), - [sym__emphasis_open_star] = ACTIONS(399), - [sym__emphasis_open_underscore] = ACTIONS(399), - [sym__last_token_whitespace] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym__] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [aux_sym__html_block_1_token1] = ACTIONS(402), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(404), + [anon_sym_LT_QMARK] = ACTIONS(404), + [aux_sym__html_block_4_token1] = ACTIONS(404), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(402), + [aux_sym__html_block_6_token1] = ACTIONS(404), + [aux_sym__html_block_6_token2] = ACTIONS(402), + [sym__open_tag_html_block] = ACTIONS(402), + [sym__open_tag_html_block_newline] = ACTIONS(402), + [sym__closing_tag_html_block] = ACTIONS(402), + [sym__closing_tag_html_block_newline] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [sym_entity_reference] = ACTIONS(402), + [sym_numeric_character_reference] = ACTIONS(402), + [sym_uri_autolink] = ACTIONS(402), + [sym_email_autolink] = ACTIONS(402), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(404), + [sym__word_no_digit] = ACTIONS(402), + [sym__digits] = ACTIONS(402), + [aux_sym__newline_token1] = ACTIONS(402), + [sym__block_close] = ACTIONS(402), + [sym__block_continuation] = ACTIONS(563), + [sym__block_quote_continuation] = ACTIONS(563), + [sym__block_quote_start] = ACTIONS(402), + [sym__indented_chunk_start] = ACTIONS(402), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(402), + [sym_atx_h4_marker] = ACTIONS(402), + [sym_atx_h5_marker] = ACTIONS(402), + [sym_atx_h6_marker] = ACTIONS(402), + [sym__thematic_break] = ACTIONS(402), + [sym__list_marker_minus] = ACTIONS(402), + [sym__list_marker_plus] = ACTIONS(402), + [sym__list_marker_star] = ACTIONS(402), + [sym__list_marker_parenthesis] = ACTIONS(402), + [sym__list_marker_dot] = ACTIONS(402), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_star_dont_interrupt] = ACTIONS(402), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(402), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(402), + [sym__fenced_code_block_start_backtick] = ACTIONS(402), + [sym__fenced_code_block_start_tilde] = ACTIONS(402), + [sym__blank_line_start] = ACTIONS(402), + [sym__no_indented_chunk] = ACTIONS(402), + [sym__code_span_start] = ACTIONS(402), + [sym__emphasis_open_star] = ACTIONS(402), + [sym__emphasis_open_underscore] = ACTIONS(402), + [sym__last_token_whitespace] = ACTIONS(563), + }, + [103] = { + [sym__soft_line_break] = STATE(238), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(238), + [sym_full_reference_link] = STATE(238), + [sym_collapsed_reference_link] = STATE(238), + [sym_inline_link] = STATE(238), + [sym_image] = STATE(238), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(238), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(238), + [sym__whitespace] = STATE(238), + [sym__word] = STATE(238), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(238), + [aux_sym__inline_no_star] = STATE(238), + [sym__text_inline_no_star] = STATE(238), + [sym__emphasis_star] = STATE(808), + [sym__strong_emphasis_star] = STATE(238), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(238), + [sym__code_span] = STATE(238), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(628), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(634), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym__] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(640), + [anon_sym_LT_QMARK] = ACTIONS(643), + [aux_sym__html_block_4_token1] = ACTIONS(646), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(649), + [sym_backslash_escape] = ACTIONS(652), + [sym_entity_reference] = ACTIONS(652), + [sym_numeric_character_reference] = ACTIONS(652), + [sym_uri_autolink] = ACTIONS(652), + [sym_email_autolink] = ACTIONS(652), + [sym__whitespace_ge_2] = ACTIONS(655), + [aux_sym__whitespace_token1] = ACTIONS(658), + [sym__word_no_digit] = ACTIONS(652), + [sym__digits] = ACTIONS(652), + [aux_sym__newline_token1] = ACTIONS(661), + [sym__code_span_start] = ACTIONS(664), + [sym__emphasis_open_star] = ACTIONS(667), + [sym__emphasis_open_underscore] = ACTIONS(670), + [sym__emphasis_close_underscore] = ACTIONS(673), + [sym__last_token_punctuation] = ACTIONS(675), }, [104] = { - [aux_sym__ignore_matching_tokens] = STATE(286), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(677), [anon_sym_BANG] = ACTIONS(677), [anon_sym_DQUOTE] = ACTIONS(677), [anon_sym_POUND] = ACTIONS(677), @@ -41852,9 +41866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -41878,8 +41890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(677), [aux_sym__newline_token1] = ACTIONS(677), [sym__block_close] = ACTIONS(677), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [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), @@ -41905,16 +41917,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(677), [sym__emphasis_open_star] = ACTIONS(677), [sym__emphasis_open_underscore] = ACTIONS(677), - [sym__last_token_whitespace] = ACTIONS(115), + [sym__last_token_whitespace] = ACTIONS(111), }, [105] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(681), + [sym__soft_line_break] = STATE(128), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(128), + [sym_full_reference_link] = STATE(128), + [sym_collapsed_reference_link] = STATE(128), + [sym_inline_link] = STATE(128), + [sym_image] = STATE(128), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(128), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(128), + [sym__whitespace] = STATE(128), + [sym__word] = STATE(128), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(128), + [aux_sym__inline_no_underscore] = STATE(128), + [sym__text_inline_no_underscore] = STATE(128), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(128), + [sym__emphasis_underscore] = STATE(753), + [sym__strong_emphasis_underscore] = STATE(128), + [sym__code_span] = STATE(128), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(684), [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_AMP] = ACTIONS(687), [anon_sym_SQUOTE] = ACTIONS(681), [anon_sym_LPAREN] = ACTIONS(681), [anon_sym_RPAREN] = ACTIONS(681), @@ -41926,202 +41972,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(681), [anon_sym_COLON] = ACTIONS(681), [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(690), [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_LBRACK] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(696), [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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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(115), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(699), + [anon_sym_LT_QMARK] = ACTIONS(702), + [aux_sym__html_block_4_token1] = ACTIONS(705), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(708), + [sym_backslash_escape] = ACTIONS(711), + [sym_entity_reference] = ACTIONS(711), + [sym_numeric_character_reference] = ACTIONS(711), + [sym_uri_autolink] = ACTIONS(711), + [sym_email_autolink] = ACTIONS(711), + [sym__whitespace_ge_2] = ACTIONS(714), + [aux_sym__whitespace_token1] = ACTIONS(717), + [sym__word_no_digit] = ACTIONS(711), + [sym__digits] = ACTIONS(711), + [aux_sym__newline_token1] = ACTIONS(720), + [sym__code_span_start] = ACTIONS(723), + [sym__emphasis_open_star] = ACTIONS(726), + [sym__emphasis_open_underscore] = ACTIONS(729), + [sym__last_token_punctuation] = ACTIONS(732), }, [106] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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), - }, - [107] = { - [sym__block_interrupt_paragraph] = STATE(713), - [sym_thematic_break] = STATE(713), - [sym_atx_heading] = STATE(713), - [sym_fenced_code_block] = STATE(713), - [sym__html_block_1] = STATE(713), - [sym__html_block_2] = STATE(713), - [sym__html_block_3] = STATE(713), - [sym__html_block_4] = STATE(713), - [sym__html_block_5] = STATE(713), - [sym__html_block_6] = STATE(713), - [sym__blank_line] = STATE(713), - [sym_block_quote] = STATE(713), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_BSLASH] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), + [sym__block_interrupt_paragraph] = STATE(712), + [sym_thematic_break] = STATE(712), + [sym_atx_heading] = STATE(712), + [sym_fenced_code_block] = STATE(712), + [sym__html_block_1] = STATE(712), + [sym__html_block_2] = STATE(712), + [sym__html_block_3] = STATE(712), + [sym__html_block_4] = STATE(712), + [sym__html_block_5] = STATE(712), + [sym__html_block_6] = STATE(712), + [sym__blank_line] = STATE(712), + [sym_block_quote] = STATE(712), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), [aux_sym__html_block_1_token1] = ACTIONS(419), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(421), [anon_sym_LT_QMARK] = ACTIONS(423), @@ -42129,16 +42056,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(689), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(689), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(689), - [sym__digits] = ACTIONS(689), - [aux_sym__newline_token1] = ACTIONS(689), + [sym_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(433), [sym_atx_h1_marker] = ACTIONS(435), [sym_atx_h2_marker] = ACTIONS(435), @@ -42146,67 +42073,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(435), [sym_atx_h5_marker] = ACTIONS(435), [sym_atx_h6_marker] = ACTIONS(435), - [sym_setext_h1_underline] = ACTIONS(693), - [sym_setext_h2_underline] = ACTIONS(693), + [sym_setext_h1_underline] = ACTIONS(437), + [sym_setext_h2_underline] = ACTIONS(437), [sym__thematic_break] = ACTIONS(439), - [sym__list_marker_minus] = ACTIONS(693), - [sym__list_marker_plus] = ACTIONS(693), - [sym__list_marker_star] = ACTIONS(693), - [sym__list_marker_parenthesis] = ACTIONS(693), - [sym__list_marker_dot] = ACTIONS(693), + [sym__list_marker_minus] = ACTIONS(437), + [sym__list_marker_plus] = ACTIONS(437), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(437), + [sym__list_marker_dot] = ACTIONS(437), [sym__fenced_code_block_start_backtick] = ACTIONS(441), [sym__fenced_code_block_start_tilde] = ACTIONS(443), [sym__blank_line_start] = ACTIONS(445), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(689), - [sym__emphasis_open_underscore] = ACTIONS(689), - [sym__emphasis_close_underscore] = ACTIONS(689), + [sym__code_span_start] = ACTIONS(415), + [sym__emphasis_open_star] = ACTIONS(415), + [sym__emphasis_open_underscore] = ACTIONS(415), + [sym__emphasis_close_underscore] = ACTIONS(415), }, - [108] = { - [sym__block_interrupt_paragraph] = STATE(714), - [sym_thematic_break] = STATE(714), - [sym_atx_heading] = STATE(714), - [sym_fenced_code_block] = STATE(714), - [sym__html_block_1] = STATE(714), - [sym__html_block_2] = STATE(714), - [sym__html_block_3] = STATE(714), - [sym__html_block_4] = STATE(714), - [sym__html_block_5] = STATE(714), - [sym__html_block_6] = STATE(714), - [sym__blank_line] = STATE(714), - [sym_block_quote] = STATE(714), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), + [107] = { + [sym__block_interrupt_paragraph] = STATE(862), + [sym_thematic_break] = STATE(862), + [sym_atx_heading] = STATE(862), + [sym_fenced_code_block] = STATE(862), + [sym__html_block_1] = STATE(862), + [sym__html_block_2] = STATE(862), + [sym__html_block_3] = STATE(862), + [sym__html_block_4] = STATE(862), + [sym__html_block_5] = STATE(862), + [sym__html_block_6] = STATE(862), + [sym__blank_line] = STATE(862), + [sym_block_quote] = STATE(862), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_BSLASH] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), [aux_sym__html_block_1_token1] = ACTIONS(419), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(421), [anon_sym_LT_QMARK] = ACTIONS(423), @@ -42214,16 +42141,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym_uri_autolink] = ACTIONS(481), - [sym_email_autolink] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(734), + [sym_entity_reference] = ACTIONS(734), + [sym_numeric_character_reference] = ACTIONS(734), + [sym_uri_autolink] = ACTIONS(734), + [sym_email_autolink] = ACTIONS(734), + [sym__whitespace_ge_2] = ACTIONS(734), + [aux_sym__whitespace_token1] = ACTIONS(736), + [sym__word_no_digit] = ACTIONS(734), + [sym__digits] = ACTIONS(734), + [aux_sym__newline_token1] = ACTIONS(734), [sym__block_quote_start] = ACTIONS(433), [sym_atx_h1_marker] = ACTIONS(435), [sym_atx_h2_marker] = ACTIONS(435), @@ -42231,3850 +42158,1897 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(435), [sym_atx_h5_marker] = ACTIONS(435), [sym_atx_h6_marker] = ACTIONS(435), - [sym_setext_h1_underline] = ACTIONS(489), - [sym_setext_h2_underline] = ACTIONS(489), + [sym_setext_h1_underline] = ACTIONS(738), + [sym_setext_h2_underline] = ACTIONS(738), [sym__thematic_break] = ACTIONS(439), - [sym__list_marker_minus] = ACTIONS(489), - [sym__list_marker_plus] = ACTIONS(489), - [sym__list_marker_star] = ACTIONS(489), - [sym__list_marker_parenthesis] = ACTIONS(489), - [sym__list_marker_dot] = ACTIONS(489), + [sym__list_marker_minus] = ACTIONS(738), + [sym__list_marker_plus] = ACTIONS(738), + [sym__list_marker_star] = ACTIONS(738), + [sym__list_marker_parenthesis] = ACTIONS(738), + [sym__list_marker_dot] = ACTIONS(738), [sym__fenced_code_block_start_backtick] = ACTIONS(441), [sym__fenced_code_block_start_tilde] = ACTIONS(443), [sym__blank_line_start] = ACTIONS(445), - [sym__code_span_start] = ACTIONS(481), - [sym__emphasis_open_star] = ACTIONS(481), - [sym__emphasis_open_underscore] = ACTIONS(481), - [sym__emphasis_close_underscore] = ACTIONS(481), + [sym__code_span_start] = ACTIONS(734), + [sym__emphasis_open_star] = ACTIONS(734), + [sym__emphasis_open_underscore] = ACTIONS(734), + [sym__emphasis_close_underscore] = ACTIONS(734), + }, + [108] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_POUND] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_PERCENT] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_BSLASH] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym__] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [aux_sym__html_block_1_token1] = ACTIONS(740), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(742), + [anon_sym_LT_QMARK] = ACTIONS(742), + [aux_sym__html_block_4_token1] = ACTIONS(742), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(740), + [aux_sym__html_block_6_token1] = ACTIONS(742), + [aux_sym__html_block_6_token2] = ACTIONS(740), + [sym__open_tag_html_block] = ACTIONS(740), + [sym__open_tag_html_block_newline] = ACTIONS(740), + [sym__closing_tag_html_block] = ACTIONS(740), + [sym__closing_tag_html_block_newline] = ACTIONS(740), + [sym_backslash_escape] = ACTIONS(740), + [sym_entity_reference] = ACTIONS(740), + [sym_numeric_character_reference] = ACTIONS(740), + [sym_uri_autolink] = ACTIONS(740), + [sym_email_autolink] = ACTIONS(740), + [sym__whitespace_ge_2] = ACTIONS(740), + [aux_sym__whitespace_token1] = ACTIONS(742), + [sym__word_no_digit] = ACTIONS(740), + [sym__digits] = ACTIONS(740), + [aux_sym__newline_token1] = ACTIONS(740), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(740), + [sym__indented_chunk_start] = ACTIONS(740), + [sym_atx_h1_marker] = ACTIONS(740), + [sym_atx_h2_marker] = ACTIONS(740), + [sym_atx_h3_marker] = ACTIONS(740), + [sym_atx_h4_marker] = ACTIONS(740), + [sym_atx_h5_marker] = ACTIONS(740), + [sym_atx_h6_marker] = ACTIONS(740), + [sym__thematic_break] = ACTIONS(740), + [sym__list_marker_minus] = ACTIONS(740), + [sym__list_marker_plus] = ACTIONS(740), + [sym__list_marker_star] = ACTIONS(740), + [sym__list_marker_parenthesis] = ACTIONS(740), + [sym__list_marker_dot] = ACTIONS(740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(740), + [sym__fenced_code_block_start_backtick] = ACTIONS(740), + [sym__fenced_code_block_start_tilde] = ACTIONS(740), + [sym__blank_line_start] = ACTIONS(740), + [sym__code_span_start] = ACTIONS(740), + [sym__emphasis_open_star] = ACTIONS(740), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym__last_token_whitespace] = ACTIONS(93), }, [109] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__emphasis_close_star] = ACTIONS(727), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_BSLASH] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [aux_sym__html_block_1_token1] = ACTIONS(744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(746), + [anon_sym_LT_QMARK] = ACTIONS(746), + [aux_sym__html_block_4_token1] = ACTIONS(746), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(744), + [aux_sym__html_block_6_token1] = ACTIONS(746), + [aux_sym__html_block_6_token2] = ACTIONS(744), + [sym__open_tag_html_block] = ACTIONS(744), + [sym__open_tag_html_block_newline] = ACTIONS(744), + [sym__closing_tag_html_block] = ACTIONS(744), + [sym__closing_tag_html_block_newline] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [sym_entity_reference] = ACTIONS(744), + [sym_numeric_character_reference] = ACTIONS(744), + [sym_uri_autolink] = ACTIONS(744), + [sym_email_autolink] = ACTIONS(744), + [sym__whitespace_ge_2] = ACTIONS(744), + [aux_sym__whitespace_token1] = ACTIONS(746), + [sym__word_no_digit] = ACTIONS(744), + [sym__digits] = ACTIONS(744), + [aux_sym__newline_token1] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(744), + [sym__indented_chunk_start] = ACTIONS(744), + [sym_atx_h1_marker] = ACTIONS(744), + [sym_atx_h2_marker] = ACTIONS(744), + [sym_atx_h3_marker] = ACTIONS(744), + [sym_atx_h4_marker] = ACTIONS(744), + [sym_atx_h5_marker] = ACTIONS(744), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(744), + [sym__list_marker_minus] = ACTIONS(744), + [sym__list_marker_plus] = ACTIONS(744), + [sym__list_marker_star] = ACTIONS(744), + [sym__list_marker_parenthesis] = ACTIONS(744), + [sym__list_marker_dot] = ACTIONS(744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(744), + [sym__fenced_code_block_start_backtick] = ACTIONS(744), + [sym__fenced_code_block_start_tilde] = ACTIONS(744), + [sym__blank_line_start] = ACTIONS(744), + [sym__code_span_start] = ACTIONS(744), + [sym__emphasis_open_star] = ACTIONS(744), + [sym__emphasis_open_underscore] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(93), }, [110] = { - [aux_sym__ignore_matching_tokens] = STATE(224), - [ts_builtin_sym_end] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [aux_sym__html_block_1_token1] = ACTIONS(729), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(731), - [anon_sym_LT_QMARK] = ACTIONS(731), - [aux_sym__html_block_4_token1] = ACTIONS(731), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [aux_sym__html_block_6_token1] = ACTIONS(731), - [aux_sym__html_block_6_token2] = ACTIONS(729), - [sym__open_tag_html_block] = ACTIONS(729), - [sym__open_tag_html_block_newline] = ACTIONS(729), - [sym__closing_tag_html_block] = ACTIONS(729), - [sym__closing_tag_html_block_newline] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(729), - [sym_entity_reference] = ACTIONS(729), - [sym_numeric_character_reference] = ACTIONS(729), - [sym_uri_autolink] = ACTIONS(729), - [sym_email_autolink] = ACTIONS(729), - [sym__whitespace_ge_2] = ACTIONS(729), - [aux_sym__whitespace_token1] = ACTIONS(731), - [sym__word_no_digit] = ACTIONS(729), - [sym__digits] = ACTIONS(729), - [aux_sym__newline_token1] = ACTIONS(729), - [sym__block_continuation] = ACTIONS(733), - [sym__block_quote_continuation] = ACTIONS(733), - [sym__block_quote_start] = ACTIONS(729), - [sym__indented_chunk_start] = ACTIONS(729), - [sym_atx_h1_marker] = ACTIONS(729), - [sym_atx_h2_marker] = ACTIONS(729), - [sym_atx_h3_marker] = ACTIONS(729), - [sym_atx_h4_marker] = ACTIONS(729), - [sym_atx_h5_marker] = ACTIONS(729), - [sym_atx_h6_marker] = ACTIONS(729), - [sym__thematic_break] = ACTIONS(729), - [sym__list_marker_minus] = ACTIONS(729), - [sym__list_marker_plus] = ACTIONS(729), - [sym__list_marker_star] = ACTIONS(729), - [sym__list_marker_parenthesis] = ACTIONS(729), - [sym__list_marker_dot] = ACTIONS(729), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_star_dont_interrupt] = ACTIONS(729), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(729), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(729), - [sym__fenced_code_block_start_backtick] = ACTIONS(729), - [sym__fenced_code_block_start_tilde] = ACTIONS(729), - [sym__blank_line_start] = ACTIONS(729), - [sym__code_span_start] = ACTIONS(729), - [sym__emphasis_open_star] = ACTIONS(729), - [sym__emphasis_open_underscore] = ACTIONS(729), - [sym__last_token_whitespace] = ACTIONS(733), + [aux_sym__ignore_matching_tokens] = STATE(192), + [ts_builtin_sym_end] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_POUND] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_PERCENT] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_BSLASH] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym__] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [aux_sym__html_block_1_token1] = ACTIONS(740), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(742), + [anon_sym_LT_QMARK] = ACTIONS(742), + [aux_sym__html_block_4_token1] = ACTIONS(742), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(740), + [aux_sym__html_block_6_token1] = ACTIONS(742), + [aux_sym__html_block_6_token2] = ACTIONS(740), + [sym__open_tag_html_block] = ACTIONS(740), + [sym__open_tag_html_block_newline] = ACTIONS(740), + [sym__closing_tag_html_block] = ACTIONS(740), + [sym__closing_tag_html_block_newline] = ACTIONS(740), + [sym_backslash_escape] = ACTIONS(740), + [sym_entity_reference] = ACTIONS(740), + [sym_numeric_character_reference] = ACTIONS(740), + [sym_uri_autolink] = ACTIONS(740), + [sym_email_autolink] = ACTIONS(740), + [sym__whitespace_ge_2] = ACTIONS(740), + [aux_sym__whitespace_token1] = ACTIONS(742), + [sym__word_no_digit] = ACTIONS(740), + [sym__digits] = ACTIONS(740), + [aux_sym__newline_token1] = ACTIONS(740), + [sym__block_continuation] = ACTIONS(748), + [sym__block_quote_continuation] = ACTIONS(748), + [sym__block_quote_start] = ACTIONS(740), + [sym__indented_chunk_start] = ACTIONS(740), + [sym_atx_h1_marker] = ACTIONS(740), + [sym_atx_h2_marker] = ACTIONS(740), + [sym_atx_h3_marker] = ACTIONS(740), + [sym_atx_h4_marker] = ACTIONS(740), + [sym_atx_h5_marker] = ACTIONS(740), + [sym_atx_h6_marker] = ACTIONS(740), + [sym__thematic_break] = ACTIONS(740), + [sym__list_marker_minus] = ACTIONS(740), + [sym__list_marker_plus] = ACTIONS(740), + [sym__list_marker_star] = ACTIONS(740), + [sym__list_marker_parenthesis] = ACTIONS(740), + [sym__list_marker_dot] = ACTIONS(740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(740), + [sym__fenced_code_block_start_backtick] = ACTIONS(740), + [sym__fenced_code_block_start_tilde] = ACTIONS(740), + [sym__blank_line_start] = ACTIONS(740), + [sym__code_span_start] = ACTIONS(740), + [sym__emphasis_open_star] = ACTIONS(740), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym__last_token_whitespace] = ACTIONS(748), }, [111] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [aux_sym__html_block_1_token1] = ACTIONS(729), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(731), - [anon_sym_LT_QMARK] = ACTIONS(731), - [aux_sym__html_block_4_token1] = ACTIONS(731), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [aux_sym__html_block_6_token1] = ACTIONS(731), - [aux_sym__html_block_6_token2] = ACTIONS(729), - [sym__open_tag_html_block] = ACTIONS(729), - [sym__open_tag_html_block_newline] = ACTIONS(729), - [sym__closing_tag_html_block] = ACTIONS(729), - [sym__closing_tag_html_block_newline] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(729), - [sym_entity_reference] = ACTIONS(729), - [sym_numeric_character_reference] = ACTIONS(729), - [sym_uri_autolink] = ACTIONS(729), - [sym_email_autolink] = ACTIONS(729), - [sym__whitespace_ge_2] = ACTIONS(729), - [aux_sym__whitespace_token1] = ACTIONS(731), - [sym__word_no_digit] = ACTIONS(729), - [sym__digits] = ACTIONS(729), - [aux_sym__newline_token1] = ACTIONS(729), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(750), + [anon_sym__] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [aux_sym__html_block_1_token1] = ACTIONS(750), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), + [anon_sym_LT_QMARK] = ACTIONS(752), + [aux_sym__html_block_4_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(750), + [aux_sym__html_block_6_token1] = ACTIONS(752), + [aux_sym__html_block_6_token2] = ACTIONS(750), + [sym__open_tag_html_block] = ACTIONS(750), + [sym__open_tag_html_block_newline] = ACTIONS(750), + [sym__closing_tag_html_block] = ACTIONS(750), + [sym__closing_tag_html_block_newline] = ACTIONS(750), + [sym_backslash_escape] = ACTIONS(750), + [sym_entity_reference] = ACTIONS(750), + [sym_numeric_character_reference] = ACTIONS(750), + [sym_uri_autolink] = ACTIONS(750), + [sym_email_autolink] = ACTIONS(750), + [sym__whitespace_ge_2] = ACTIONS(750), + [aux_sym__whitespace_token1] = ACTIONS(752), + [sym__word_no_digit] = ACTIONS(750), + [sym__digits] = ACTIONS(750), + [aux_sym__newline_token1] = ACTIONS(750), + [sym__block_close] = ACTIONS(750), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(729), - [sym__indented_chunk_start] = ACTIONS(729), - [sym_atx_h1_marker] = ACTIONS(729), - [sym_atx_h2_marker] = ACTIONS(729), - [sym_atx_h3_marker] = ACTIONS(729), - [sym_atx_h4_marker] = ACTIONS(729), - [sym_atx_h5_marker] = ACTIONS(729), - [sym_atx_h6_marker] = ACTIONS(729), - [sym__thematic_break] = ACTIONS(729), - [sym__list_marker_minus] = ACTIONS(729), - [sym__list_marker_plus] = ACTIONS(729), - [sym__list_marker_star] = ACTIONS(729), - [sym__list_marker_parenthesis] = ACTIONS(729), - [sym__list_marker_dot] = ACTIONS(729), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_star_dont_interrupt] = ACTIONS(729), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(729), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(729), - [sym__fenced_code_block_start_backtick] = ACTIONS(729), - [sym__fenced_code_block_start_tilde] = ACTIONS(729), - [sym__blank_line_start] = ACTIONS(729), - [sym__code_span_start] = ACTIONS(729), - [sym__emphasis_open_star] = ACTIONS(729), - [sym__emphasis_open_underscore] = ACTIONS(729), + [sym__block_quote_start] = ACTIONS(750), + [sym__indented_chunk_start] = ACTIONS(750), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(750), + [sym_atx_h5_marker] = ACTIONS(750), + [sym_atx_h6_marker] = ACTIONS(750), + [sym__thematic_break] = ACTIONS(750), + [sym__list_marker_minus] = ACTIONS(750), + [sym__list_marker_plus] = ACTIONS(750), + [sym__list_marker_star] = ACTIONS(750), + [sym__list_marker_parenthesis] = ACTIONS(750), + [sym__list_marker_dot] = ACTIONS(750), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_star_dont_interrupt] = ACTIONS(750), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(750), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(750), + [sym__fenced_code_block_start_backtick] = ACTIONS(750), + [sym__fenced_code_block_start_tilde] = ACTIONS(750), + [sym__blank_line_start] = ACTIONS(750), + [sym__code_span_start] = ACTIONS(750), + [sym__emphasis_open_star] = ACTIONS(750), + [sym__emphasis_open_underscore] = ACTIONS(750), [sym__last_token_whitespace] = ACTIONS(111), }, [112] = { - [aux_sym__ignore_matching_tokens] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(735), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(735), - [anon_sym_AT] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym__] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [aux_sym__html_block_1_token1] = ACTIONS(735), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(737), - [anon_sym_LT_QMARK] = ACTIONS(737), - [aux_sym__html_block_4_token1] = ACTIONS(737), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(735), - [aux_sym__html_block_6_token1] = ACTIONS(737), - [aux_sym__html_block_6_token2] = ACTIONS(735), - [sym__open_tag_html_block] = ACTIONS(735), - [sym__open_tag_html_block_newline] = ACTIONS(735), - [sym__closing_tag_html_block] = ACTIONS(735), - [sym__closing_tag_html_block_newline] = ACTIONS(735), - [sym_backslash_escape] = ACTIONS(735), - [sym_entity_reference] = ACTIONS(735), - [sym_numeric_character_reference] = ACTIONS(735), - [sym_uri_autolink] = ACTIONS(735), - [sym_email_autolink] = ACTIONS(735), - [sym__whitespace_ge_2] = ACTIONS(735), - [aux_sym__whitespace_token1] = ACTIONS(737), - [sym__word_no_digit] = ACTIONS(735), - [sym__digits] = ACTIONS(735), - [aux_sym__newline_token1] = ACTIONS(735), - [sym__block_continuation] = ACTIONS(739), - [sym__block_quote_continuation] = ACTIONS(739), - [sym__block_quote_start] = ACTIONS(735), - [sym__indented_chunk_start] = ACTIONS(735), - [sym_atx_h1_marker] = ACTIONS(735), - [sym_atx_h2_marker] = ACTIONS(735), - [sym_atx_h3_marker] = ACTIONS(735), - [sym_atx_h4_marker] = ACTIONS(735), - [sym_atx_h5_marker] = ACTIONS(735), - [sym_atx_h6_marker] = ACTIONS(735), - [sym__thematic_break] = ACTIONS(735), - [sym__list_marker_minus] = ACTIONS(735), - [sym__list_marker_plus] = ACTIONS(735), - [sym__list_marker_star] = ACTIONS(735), - [sym__list_marker_parenthesis] = ACTIONS(735), - [sym__list_marker_dot] = ACTIONS(735), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_star_dont_interrupt] = ACTIONS(735), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(735), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(735), - [sym__fenced_code_block_start_backtick] = ACTIONS(735), - [sym__fenced_code_block_start_tilde] = ACTIONS(735), - [sym__blank_line_start] = ACTIONS(735), - [sym__code_span_start] = ACTIONS(735), - [sym__emphasis_open_star] = ACTIONS(735), - [sym__emphasis_open_underscore] = ACTIONS(735), - [sym__last_token_whitespace] = ACTIONS(739), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym__] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [aux_sym__html_block_1_token1] = ACTIONS(754), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(756), + [anon_sym_LT_QMARK] = ACTIONS(756), + [aux_sym__html_block_4_token1] = ACTIONS(756), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [aux_sym__html_block_6_token1] = ACTIONS(756), + [aux_sym__html_block_6_token2] = ACTIONS(754), + [sym__open_tag_html_block] = ACTIONS(754), + [sym__open_tag_html_block_newline] = ACTIONS(754), + [sym__closing_tag_html_block] = ACTIONS(754), + [sym__closing_tag_html_block_newline] = ACTIONS(754), + [sym_backslash_escape] = ACTIONS(754), + [sym_entity_reference] = ACTIONS(754), + [sym_numeric_character_reference] = ACTIONS(754), + [sym_uri_autolink] = ACTIONS(754), + [sym_email_autolink] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(754), + [aux_sym__whitespace_token1] = ACTIONS(756), + [sym__word_no_digit] = ACTIONS(754), + [sym__digits] = ACTIONS(754), + [aux_sym__newline_token1] = ACTIONS(754), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(754), + [sym__indented_chunk_start] = ACTIONS(754), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(754), + [sym_atx_h5_marker] = ACTIONS(754), + [sym_atx_h6_marker] = ACTIONS(754), + [sym__thematic_break] = ACTIONS(754), + [sym__list_marker_minus] = ACTIONS(754), + [sym__list_marker_plus] = ACTIONS(754), + [sym__list_marker_star] = ACTIONS(754), + [sym__list_marker_parenthesis] = ACTIONS(754), + [sym__list_marker_dot] = ACTIONS(754), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_star_dont_interrupt] = ACTIONS(754), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(754), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(754), + [sym__fenced_code_block_start_backtick] = ACTIONS(754), + [sym__fenced_code_block_start_tilde] = ACTIONS(754), + [sym__blank_line_start] = ACTIONS(754), + [sym__code_span_start] = ACTIONS(754), + [sym__emphasis_open_star] = ACTIONS(754), + [sym__emphasis_open_underscore] = ACTIONS(754), + [sym__last_token_whitespace] = ACTIONS(93), }, [113] = { - [sym__soft_line_break] = STATE(152), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(152), - [sym_full_reference_link] = STATE(152), - [sym_collapsed_reference_link] = STATE(152), - [sym_inline_link] = STATE(152), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(152), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore] = STATE(152), - [aux_sym__inline_no_underscore] = STATE(152), - [sym__text_inline_no_underscore] = STATE(152), - [sym__emphasis_star] = STATE(813), - [sym__strong_emphasis_star] = STATE(152), - [sym__emphasis_underscore] = STATE(844), - [sym__strong_emphasis_underscore] = STATE(152), - [sym__code_span] = STATE(152), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(761), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(761), - [sym__digits] = ACTIONS(761), + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(778), + [sym_entity_reference] = ACTIONS(778), + [sym_numeric_character_reference] = ACTIONS(778), + [sym_uri_autolink] = ACTIONS(778), + [sym_email_autolink] = ACTIONS(778), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(778), + [sym__digits] = ACTIONS(778), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__last_token_punctuation] = ACTIONS(773), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__emphasis_close_star] = ACTIONS(790), }, [114] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(735), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(735), - [anon_sym_AT] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym__] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [aux_sym__html_block_1_token1] = ACTIONS(735), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(737), - [anon_sym_LT_QMARK] = ACTIONS(737), - [aux_sym__html_block_4_token1] = ACTIONS(737), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(735), - [aux_sym__html_block_6_token1] = ACTIONS(737), - [aux_sym__html_block_6_token2] = ACTIONS(735), - [sym__open_tag_html_block] = ACTIONS(735), - [sym__open_tag_html_block_newline] = ACTIONS(735), - [sym__closing_tag_html_block] = ACTIONS(735), - [sym__closing_tag_html_block_newline] = ACTIONS(735), - [sym_backslash_escape] = ACTIONS(735), - [sym_entity_reference] = ACTIONS(735), - [sym_numeric_character_reference] = ACTIONS(735), - [sym_uri_autolink] = ACTIONS(735), - [sym_email_autolink] = ACTIONS(735), - [sym__whitespace_ge_2] = ACTIONS(735), - [aux_sym__whitespace_token1] = ACTIONS(737), - [sym__word_no_digit] = ACTIONS(735), - [sym__digits] = ACTIONS(735), - [aux_sym__newline_token1] = ACTIONS(735), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(735), - [sym__indented_chunk_start] = ACTIONS(735), - [sym_atx_h1_marker] = ACTIONS(735), - [sym_atx_h2_marker] = ACTIONS(735), - [sym_atx_h3_marker] = ACTIONS(735), - [sym_atx_h4_marker] = ACTIONS(735), - [sym_atx_h5_marker] = ACTIONS(735), - [sym_atx_h6_marker] = ACTIONS(735), - [sym__thematic_break] = ACTIONS(735), - [sym__list_marker_minus] = ACTIONS(735), - [sym__list_marker_plus] = ACTIONS(735), - [sym__list_marker_star] = ACTIONS(735), - [sym__list_marker_parenthesis] = ACTIONS(735), - [sym__list_marker_dot] = ACTIONS(735), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_star_dont_interrupt] = ACTIONS(735), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(735), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(735), - [sym__fenced_code_block_start_backtick] = ACTIONS(735), - [sym__fenced_code_block_start_tilde] = ACTIONS(735), - [sym__blank_line_start] = ACTIONS(735), - [sym__code_span_start] = ACTIONS(735), - [sym__emphasis_open_star] = ACTIONS(735), - [sym__emphasis_open_underscore] = ACTIONS(735), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(236), + [ts_builtin_sym_end] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_DOT] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_BSLASH] = ACTIONS(794), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym__] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [aux_sym__html_block_1_token1] = ACTIONS(792), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(794), + [anon_sym_LT_QMARK] = ACTIONS(794), + [aux_sym__html_block_4_token1] = ACTIONS(794), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(792), + [aux_sym__html_block_6_token1] = ACTIONS(794), + [aux_sym__html_block_6_token2] = ACTIONS(792), + [sym__open_tag_html_block] = ACTIONS(792), + [sym__open_tag_html_block_newline] = ACTIONS(792), + [sym__closing_tag_html_block] = ACTIONS(792), + [sym__closing_tag_html_block_newline] = ACTIONS(792), + [sym_backslash_escape] = ACTIONS(792), + [sym_entity_reference] = ACTIONS(792), + [sym_numeric_character_reference] = ACTIONS(792), + [sym_uri_autolink] = ACTIONS(792), + [sym_email_autolink] = ACTIONS(792), + [sym__whitespace_ge_2] = ACTIONS(792), + [aux_sym__whitespace_token1] = ACTIONS(794), + [sym__word_no_digit] = ACTIONS(792), + [sym__digits] = ACTIONS(792), + [aux_sym__newline_token1] = ACTIONS(792), + [sym__block_continuation] = ACTIONS(796), + [sym__block_quote_continuation] = ACTIONS(796), + [sym__block_quote_start] = ACTIONS(792), + [sym__indented_chunk_start] = ACTIONS(792), + [sym_atx_h1_marker] = ACTIONS(792), + [sym_atx_h2_marker] = ACTIONS(792), + [sym_atx_h3_marker] = ACTIONS(792), + [sym_atx_h4_marker] = ACTIONS(792), + [sym_atx_h5_marker] = ACTIONS(792), + [sym_atx_h6_marker] = ACTIONS(792), + [sym__thematic_break] = ACTIONS(792), + [sym__list_marker_minus] = ACTIONS(792), + [sym__list_marker_plus] = ACTIONS(792), + [sym__list_marker_star] = ACTIONS(792), + [sym__list_marker_parenthesis] = ACTIONS(792), + [sym__list_marker_dot] = ACTIONS(792), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_star_dont_interrupt] = ACTIONS(792), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(792), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(792), + [sym__fenced_code_block_start_backtick] = ACTIONS(792), + [sym__fenced_code_block_start_tilde] = ACTIONS(792), + [sym__blank_line_start] = ACTIONS(792), + [sym__code_span_start] = ACTIONS(792), + [sym__emphasis_open_star] = ACTIONS(792), + [sym__emphasis_open_underscore] = ACTIONS(792), + [sym__last_token_whitespace] = ACTIONS(796), }, [115] = { - [aux_sym__ignore_matching_tokens] = STATE(184), - [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(205), + [ts_builtin_sym_end] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_DOT] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_BSLASH] = ACTIONS(794), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym__] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [aux_sym__html_block_1_token1] = ACTIONS(792), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(794), + [anon_sym_LT_QMARK] = ACTIONS(794), + [aux_sym__html_block_4_token1] = ACTIONS(794), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(792), + [aux_sym__html_block_6_token1] = ACTIONS(794), + [aux_sym__html_block_6_token2] = ACTIONS(792), + [sym__open_tag_html_block] = ACTIONS(792), + [sym__open_tag_html_block_newline] = ACTIONS(792), + [sym__closing_tag_html_block] = ACTIONS(792), + [sym__closing_tag_html_block_newline] = ACTIONS(792), + [sym_backslash_escape] = ACTIONS(792), + [sym_entity_reference] = ACTIONS(792), + [sym_numeric_character_reference] = ACTIONS(792), + [sym_uri_autolink] = ACTIONS(792), + [sym_email_autolink] = ACTIONS(792), + [sym__whitespace_ge_2] = ACTIONS(792), + [aux_sym__whitespace_token1] = ACTIONS(794), + [sym__word_no_digit] = ACTIONS(792), + [sym__digits] = ACTIONS(792), + [aux_sym__newline_token1] = ACTIONS(792), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(792), + [sym__indented_chunk_start] = ACTIONS(792), + [sym_atx_h1_marker] = ACTIONS(792), + [sym_atx_h2_marker] = ACTIONS(792), + [sym_atx_h3_marker] = ACTIONS(792), + [sym_atx_h4_marker] = ACTIONS(792), + [sym_atx_h5_marker] = ACTIONS(792), + [sym_atx_h6_marker] = ACTIONS(792), + [sym__thematic_break] = ACTIONS(792), + [sym__list_marker_minus] = ACTIONS(792), + [sym__list_marker_plus] = ACTIONS(792), + [sym__list_marker_star] = ACTIONS(792), + [sym__list_marker_parenthesis] = ACTIONS(792), + [sym__list_marker_dot] = ACTIONS(792), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_star_dont_interrupt] = ACTIONS(792), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(792), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(792), + [sym__fenced_code_block_start_backtick] = ACTIONS(792), + [sym__fenced_code_block_start_tilde] = ACTIONS(792), + [sym__blank_line_start] = ACTIONS(792), + [sym__code_span_start] = ACTIONS(792), + [sym__emphasis_open_star] = ACTIONS(792), + [sym__emphasis_open_underscore] = ACTIONS(792), + [sym__last_token_whitespace] = ACTIONS(93), }, [116] = { - [sym__block_interrupt_paragraph] = STATE(740), - [sym_thematic_break] = STATE(740), - [sym_atx_heading] = STATE(740), - [sym_fenced_code_block] = STATE(740), - [sym__html_block_1] = STATE(740), - [sym__html_block_2] = STATE(740), - [sym__html_block_3] = STATE(740), - [sym__html_block_4] = STATE(740), - [sym__html_block_5] = STATE(740), - [sym__html_block_6] = STATE(740), - [sym__blank_line] = STATE(740), - [sym_block_quote] = STATE(740), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_BSLASH] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [aux_sym__html_block_1_token1] = ACTIONS(451), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(453), - [anon_sym_LT_QMARK] = ACTIONS(455), - [aux_sym__html_block_4_token1] = ACTIONS(457), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(459), - [aux_sym__html_block_6_token1] = ACTIONS(461), - [aux_sym__html_block_6_token2] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(689), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(689), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(689), - [sym__digits] = ACTIONS(689), - [aux_sym__newline_token1] = ACTIONS(689), - [sym__block_quote_start] = ACTIONS(465), - [sym_atx_h1_marker] = ACTIONS(467), - [sym_atx_h2_marker] = ACTIONS(467), - [sym_atx_h3_marker] = ACTIONS(467), - [sym_atx_h4_marker] = ACTIONS(467), - [sym_atx_h5_marker] = ACTIONS(467), - [sym_atx_h6_marker] = ACTIONS(467), - [sym_setext_h1_underline] = ACTIONS(781), - [sym_setext_h2_underline] = ACTIONS(781), - [sym__thematic_break] = ACTIONS(471), - [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__fenced_code_block_start_backtick] = ACTIONS(473), - [sym__fenced_code_block_start_tilde] = ACTIONS(475), - [sym__blank_line_start] = ACTIONS(477), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(689), - [sym__emphasis_open_underscore] = ACTIONS(689), - [sym__emphasis_close_star] = ACTIONS(689), + [aux_sym__ignore_matching_tokens] = STATE(159), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(750), + [anon_sym__] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [aux_sym__html_block_1_token1] = ACTIONS(750), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), + [anon_sym_LT_QMARK] = ACTIONS(752), + [aux_sym__html_block_4_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(750), + [aux_sym__html_block_6_token1] = ACTIONS(752), + [aux_sym__html_block_6_token2] = ACTIONS(750), + [sym__open_tag_html_block] = ACTIONS(750), + [sym__open_tag_html_block_newline] = ACTIONS(750), + [sym__closing_tag_html_block] = ACTIONS(750), + [sym__closing_tag_html_block_newline] = ACTIONS(750), + [sym_backslash_escape] = ACTIONS(750), + [sym_entity_reference] = ACTIONS(750), + [sym_numeric_character_reference] = ACTIONS(750), + [sym_uri_autolink] = ACTIONS(750), + [sym_email_autolink] = ACTIONS(750), + [sym__whitespace_ge_2] = ACTIONS(750), + [aux_sym__whitespace_token1] = ACTIONS(752), + [sym__word_no_digit] = ACTIONS(750), + [sym__digits] = ACTIONS(750), + [aux_sym__newline_token1] = ACTIONS(750), + [sym__block_close] = ACTIONS(750), + [sym__block_continuation] = ACTIONS(798), + [sym__block_quote_continuation] = ACTIONS(798), + [sym__block_quote_start] = ACTIONS(750), + [sym__indented_chunk_start] = ACTIONS(750), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(750), + [sym_atx_h5_marker] = ACTIONS(750), + [sym_atx_h6_marker] = ACTIONS(750), + [sym__thematic_break] = ACTIONS(750), + [sym__list_marker_minus] = ACTIONS(750), + [sym__list_marker_plus] = ACTIONS(750), + [sym__list_marker_star] = ACTIONS(750), + [sym__list_marker_parenthesis] = ACTIONS(750), + [sym__list_marker_dot] = ACTIONS(750), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_star_dont_interrupt] = ACTIONS(750), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(750), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(750), + [sym__fenced_code_block_start_backtick] = ACTIONS(750), + [sym__fenced_code_block_start_tilde] = ACTIONS(750), + [sym__blank_line_start] = ACTIONS(750), + [sym__code_span_start] = ACTIONS(750), + [sym__emphasis_open_star] = ACTIONS(750), + [sym__emphasis_open_underscore] = ACTIONS(750), + [sym__last_token_whitespace] = ACTIONS(798), }, [117] = { - [aux_sym__ignore_matching_tokens] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(783), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(783), - [anon_sym_POUND] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym__] = ACTIONS(783), - [anon_sym_BQUOTE] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [aux_sym__html_block_1_token1] = ACTIONS(783), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(785), - [anon_sym_LT_QMARK] = ACTIONS(785), - [aux_sym__html_block_4_token1] = ACTIONS(785), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(783), - [aux_sym__html_block_6_token1] = ACTIONS(785), - [aux_sym__html_block_6_token2] = ACTIONS(783), - [sym__open_tag_html_block] = ACTIONS(783), - [sym__open_tag_html_block_newline] = ACTIONS(783), - [sym__closing_tag_html_block] = ACTIONS(783), - [sym__closing_tag_html_block_newline] = ACTIONS(783), - [sym_backslash_escape] = ACTIONS(783), - [sym_entity_reference] = ACTIONS(783), - [sym_numeric_character_reference] = ACTIONS(783), - [sym_uri_autolink] = ACTIONS(783), - [sym_email_autolink] = ACTIONS(783), - [sym__whitespace_ge_2] = ACTIONS(783), - [aux_sym__whitespace_token1] = ACTIONS(785), - [sym__word_no_digit] = ACTIONS(783), - [sym__digits] = ACTIONS(783), - [aux_sym__newline_token1] = ACTIONS(783), - [sym__block_continuation] = ACTIONS(787), - [sym__block_quote_continuation] = ACTIONS(787), - [sym__block_quote_start] = ACTIONS(783), - [sym__indented_chunk_start] = ACTIONS(783), - [sym_atx_h1_marker] = ACTIONS(783), - [sym_atx_h2_marker] = ACTIONS(783), - [sym_atx_h3_marker] = ACTIONS(783), - [sym_atx_h4_marker] = ACTIONS(783), - [sym_atx_h5_marker] = ACTIONS(783), - [sym_atx_h6_marker] = ACTIONS(783), - [sym__thematic_break] = ACTIONS(783), - [sym__list_marker_minus] = ACTIONS(783), - [sym__list_marker_plus] = ACTIONS(783), - [sym__list_marker_star] = ACTIONS(783), - [sym__list_marker_parenthesis] = ACTIONS(783), - [sym__list_marker_dot] = ACTIONS(783), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_star_dont_interrupt] = ACTIONS(783), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(783), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(783), - [sym__fenced_code_block_start_backtick] = ACTIONS(783), - [sym__fenced_code_block_start_tilde] = ACTIONS(783), - [sym__blank_line_start] = ACTIONS(783), - [sym__code_span_start] = ACTIONS(783), - [sym__emphasis_open_star] = ACTIONS(783), - [sym__emphasis_open_underscore] = ACTIONS(783), - [sym__last_token_whitespace] = ACTIONS(787), + [sym__soft_line_break] = STATE(242), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(242), + [sym_full_reference_link] = STATE(242), + [sym_collapsed_reference_link] = STATE(242), + [sym_inline_link] = STATE(242), + [sym_image] = STATE(242), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(242), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(242), + [sym__whitespace] = STATE(242), + [sym__word] = STATE(242), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(242), + [aux_sym__inline_no_underscore] = STATE(242), + [sym__text_inline_no_underscore] = STATE(242), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(242), + [sym__emphasis_underscore] = STATE(793), + [sym__strong_emphasis_underscore] = STATE(242), + [sym__code_span] = STATE(242), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [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(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(820), + [sym__digits] = ACTIONS(820), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__last_token_punctuation] = ACTIONS(832), }, [118] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(783), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(783), - [anon_sym_POUND] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym__] = ACTIONS(783), - [anon_sym_BQUOTE] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [aux_sym__html_block_1_token1] = ACTIONS(783), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(785), - [anon_sym_LT_QMARK] = ACTIONS(785), - [aux_sym__html_block_4_token1] = ACTIONS(785), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(783), - [aux_sym__html_block_6_token1] = ACTIONS(785), - [aux_sym__html_block_6_token2] = ACTIONS(783), - [sym__open_tag_html_block] = ACTIONS(783), - [sym__open_tag_html_block_newline] = ACTIONS(783), - [sym__closing_tag_html_block] = ACTIONS(783), - [sym__closing_tag_html_block_newline] = ACTIONS(783), - [sym_backslash_escape] = ACTIONS(783), - [sym_entity_reference] = ACTIONS(783), - [sym_numeric_character_reference] = ACTIONS(783), - [sym_uri_autolink] = ACTIONS(783), - [sym_email_autolink] = ACTIONS(783), - [sym__whitespace_ge_2] = ACTIONS(783), - [aux_sym__whitespace_token1] = ACTIONS(785), - [sym__word_no_digit] = ACTIONS(783), - [sym__digits] = ACTIONS(783), - [aux_sym__newline_token1] = ACTIONS(783), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(783), - [sym__indented_chunk_start] = ACTIONS(783), - [sym_atx_h1_marker] = ACTIONS(783), - [sym_atx_h2_marker] = ACTIONS(783), - [sym_atx_h3_marker] = ACTIONS(783), - [sym_atx_h4_marker] = ACTIONS(783), - [sym_atx_h5_marker] = ACTIONS(783), - [sym_atx_h6_marker] = ACTIONS(783), - [sym__thematic_break] = ACTIONS(783), - [sym__list_marker_minus] = ACTIONS(783), - [sym__list_marker_plus] = ACTIONS(783), - [sym__list_marker_star] = ACTIONS(783), - [sym__list_marker_parenthesis] = ACTIONS(783), - [sym__list_marker_dot] = ACTIONS(783), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_star_dont_interrupt] = ACTIONS(783), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(783), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(783), - [sym__fenced_code_block_start_backtick] = ACTIONS(783), - [sym__fenced_code_block_start_tilde] = ACTIONS(783), - [sym__blank_line_start] = ACTIONS(783), - [sym__code_span_start] = ACTIONS(783), - [sym__emphasis_open_star] = ACTIONS(783), - [sym__emphasis_open_underscore] = ACTIONS(783), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__paragraph_end_newline_repeat1] = STATE(234), + [ts_builtin_sym_end] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_DOT] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_QMARK] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_BSLASH] = ACTIONS(836), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym__] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [aux_sym__html_block_1_token1] = ACTIONS(834), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(836), + [anon_sym_LT_QMARK] = ACTIONS(836), + [aux_sym__html_block_4_token1] = ACTIONS(836), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(834), + [aux_sym__html_block_6_token1] = ACTIONS(836), + [aux_sym__html_block_6_token2] = ACTIONS(834), + [sym__open_tag_html_block] = ACTIONS(834), + [sym__open_tag_html_block_newline] = ACTIONS(834), + [sym__closing_tag_html_block] = ACTIONS(834), + [sym__closing_tag_html_block_newline] = ACTIONS(834), + [sym_backslash_escape] = ACTIONS(834), + [sym_entity_reference] = ACTIONS(834), + [sym_numeric_character_reference] = ACTIONS(834), + [sym_uri_autolink] = ACTIONS(834), + [sym_email_autolink] = ACTIONS(834), + [sym__whitespace_ge_2] = ACTIONS(834), + [aux_sym__whitespace_token1] = ACTIONS(836), + [sym__word_no_digit] = ACTIONS(834), + [sym__digits] = ACTIONS(834), + [aux_sym__newline_token1] = ACTIONS(834), + [sym__block_quote_start] = ACTIONS(834), + [sym__indented_chunk_start] = ACTIONS(834), + [sym_atx_h1_marker] = ACTIONS(834), + [sym_atx_h2_marker] = ACTIONS(834), + [sym_atx_h3_marker] = ACTIONS(834), + [sym_atx_h4_marker] = ACTIONS(834), + [sym_atx_h5_marker] = ACTIONS(834), + [sym_atx_h6_marker] = ACTIONS(834), + [sym_setext_h1_underline] = ACTIONS(834), + [sym_setext_h2_underline] = ACTIONS(834), + [sym__thematic_break] = ACTIONS(834), + [sym__list_marker_minus] = ACTIONS(834), + [sym__list_marker_plus] = ACTIONS(834), + [sym__list_marker_star] = ACTIONS(834), + [sym__list_marker_parenthesis] = ACTIONS(834), + [sym__list_marker_dot] = ACTIONS(834), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(834), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(834), + [sym__list_marker_star_dont_interrupt] = ACTIONS(834), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(834), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(834), + [sym__fenced_code_block_start_backtick] = ACTIONS(834), + [sym__fenced_code_block_start_tilde] = ACTIONS(834), + [sym__blank_line_start] = ACTIONS(834), + [sym__split_token] = ACTIONS(838), + [sym__code_span_start] = ACTIONS(834), + [sym__emphasis_open_star] = ACTIONS(834), + [sym__emphasis_open_underscore] = ACTIONS(834), }, [119] = { - [sym__block_interrupt_paragraph] = STATE(754), - [sym_thematic_break] = STATE(754), - [sym_atx_heading] = STATE(754), - [sym_fenced_code_block] = STATE(754), - [sym__html_block_1] = STATE(754), - [sym__html_block_2] = STATE(754), - [sym__html_block_3] = STATE(754), - [sym__html_block_4] = STATE(754), - [sym__html_block_5] = STATE(754), - [sym__html_block_6] = STATE(754), - [sym__blank_line] = STATE(754), - [sym_block_quote] = STATE(754), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(451), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(453), - [anon_sym_LT_QMARK] = ACTIONS(455), - [aux_sym__html_block_4_token1] = ACTIONS(457), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(459), - [aux_sym__html_block_6_token1] = ACTIONS(461), - [aux_sym__html_block_6_token2] = ACTIONS(463), - [sym_backslash_escape] = ACTIONS(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym_uri_autolink] = ACTIONS(481), - [sym_email_autolink] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(465), - [sym_atx_h1_marker] = ACTIONS(467), - [sym_atx_h2_marker] = ACTIONS(467), - [sym_atx_h3_marker] = ACTIONS(467), - [sym_atx_h4_marker] = ACTIONS(467), - [sym_atx_h5_marker] = ACTIONS(467), - [sym_atx_h6_marker] = ACTIONS(467), - [sym_setext_h1_underline] = ACTIONS(485), - [sym_setext_h2_underline] = ACTIONS(485), - [sym__thematic_break] = ACTIONS(471), - [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(473), - [sym__fenced_code_block_start_tilde] = ACTIONS(475), - [sym__blank_line_start] = ACTIONS(477), - [sym__code_span_start] = ACTIONS(481), - [sym__emphasis_open_star] = ACTIONS(481), - [sym__emphasis_open_underscore] = ACTIONS(481), - [sym__emphasis_close_star] = ACTIONS(481), - }, - [120] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_BSLASH] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym__] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [aux_sym__html_block_1_token1] = ACTIONS(399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(401), - [anon_sym_LT_QMARK] = ACTIONS(401), - [aux_sym__html_block_4_token1] = ACTIONS(401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(399), - [aux_sym__html_block_6_token1] = ACTIONS(401), - [aux_sym__html_block_6_token2] = ACTIONS(399), - [sym__open_tag_html_block] = ACTIONS(399), - [sym__open_tag_html_block_newline] = ACTIONS(399), - [sym__closing_tag_html_block] = ACTIONS(399), - [sym__closing_tag_html_block_newline] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [sym_entity_reference] = ACTIONS(399), - [sym_numeric_character_reference] = ACTIONS(399), - [sym_uri_autolink] = ACTIONS(399), - [sym_email_autolink] = ACTIONS(399), - [sym__whitespace_ge_2] = ACTIONS(399), - [aux_sym__whitespace_token1] = ACTIONS(401), - [sym__word_no_digit] = ACTIONS(399), - [sym__digits] = ACTIONS(399), - [aux_sym__newline_token1] = ACTIONS(399), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(840), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(840), + [anon_sym_PERCENT] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(840), + [anon_sym_SLASH] = ACTIONS(840), + [anon_sym_COLON] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(840), + [anon_sym_AT] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_BSLASH] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(840), + [anon_sym__] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [aux_sym__html_block_1_token1] = ACTIONS(840), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(842), + [anon_sym_LT_QMARK] = ACTIONS(842), + [aux_sym__html_block_4_token1] = ACTIONS(842), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(840), + [aux_sym__html_block_6_token1] = ACTIONS(842), + [aux_sym__html_block_6_token2] = ACTIONS(840), + [sym__open_tag_html_block] = ACTIONS(840), + [sym__open_tag_html_block_newline] = ACTIONS(840), + [sym__closing_tag_html_block] = ACTIONS(840), + [sym__closing_tag_html_block_newline] = ACTIONS(840), + [sym_backslash_escape] = ACTIONS(840), + [sym_entity_reference] = ACTIONS(840), + [sym_numeric_character_reference] = ACTIONS(840), + [sym_uri_autolink] = ACTIONS(840), + [sym_email_autolink] = ACTIONS(840), + [sym__whitespace_ge_2] = ACTIONS(840), + [aux_sym__whitespace_token1] = ACTIONS(842), + [sym__word_no_digit] = ACTIONS(840), + [sym__digits] = ACTIONS(840), + [aux_sym__newline_token1] = ACTIONS(840), + [sym__block_close] = ACTIONS(840), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(399), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(399), - [sym_atx_h2_marker] = ACTIONS(399), - [sym_atx_h3_marker] = ACTIONS(399), - [sym_atx_h4_marker] = ACTIONS(399), - [sym_atx_h5_marker] = ACTIONS(399), - [sym_atx_h6_marker] = ACTIONS(399), - [sym__thematic_break] = ACTIONS(399), - [sym__list_marker_minus] = ACTIONS(399), - [sym__list_marker_plus] = ACTIONS(399), - [sym__list_marker_star] = ACTIONS(399), - [sym__list_marker_parenthesis] = ACTIONS(399), - [sym__list_marker_dot] = ACTIONS(399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(399), - [sym__fenced_code_block_start_backtick] = ACTIONS(399), - [sym__fenced_code_block_start_tilde] = ACTIONS(399), - [sym__blank_line_start] = ACTIONS(399), - [sym__code_span_start] = ACTIONS(399), - [sym__emphasis_open_star] = ACTIONS(399), - [sym__emphasis_open_underscore] = ACTIONS(399), + [sym__block_quote_start] = ACTIONS(840), + [sym__indented_chunk_start] = ACTIONS(840), + [sym_atx_h1_marker] = ACTIONS(840), + [sym_atx_h2_marker] = ACTIONS(840), + [sym_atx_h3_marker] = ACTIONS(840), + [sym_atx_h4_marker] = ACTIONS(840), + [sym_atx_h5_marker] = ACTIONS(840), + [sym_atx_h6_marker] = ACTIONS(840), + [sym__thematic_break] = ACTIONS(840), + [sym__list_marker_minus] = ACTIONS(840), + [sym__list_marker_plus] = ACTIONS(840), + [sym__list_marker_star] = ACTIONS(840), + [sym__list_marker_parenthesis] = ACTIONS(840), + [sym__list_marker_dot] = ACTIONS(840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(840), + [sym__fenced_code_block_start_backtick] = ACTIONS(840), + [sym__fenced_code_block_start_tilde] = ACTIONS(840), + [sym__blank_line_start] = ACTIONS(840), + [sym__code_span_start] = ACTIONS(840), + [sym__emphasis_open_star] = ACTIONS(840), + [sym__emphasis_open_underscore] = ACTIONS(840), [sym__last_token_whitespace] = ACTIONS(111), }, + [120] = { + [aux_sym__ignore_matching_tokens] = STATE(187), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym__] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [aux_sym__html_block_1_token1] = ACTIONS(754), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(756), + [anon_sym_LT_QMARK] = ACTIONS(756), + [aux_sym__html_block_4_token1] = ACTIONS(756), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [aux_sym__html_block_6_token1] = ACTIONS(756), + [aux_sym__html_block_6_token2] = ACTIONS(754), + [sym__open_tag_html_block] = ACTIONS(754), + [sym__open_tag_html_block_newline] = ACTIONS(754), + [sym__closing_tag_html_block] = ACTIONS(754), + [sym__closing_tag_html_block_newline] = ACTIONS(754), + [sym_backslash_escape] = ACTIONS(754), + [sym_entity_reference] = ACTIONS(754), + [sym_numeric_character_reference] = ACTIONS(754), + [sym_uri_autolink] = ACTIONS(754), + [sym_email_autolink] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(754), + [aux_sym__whitespace_token1] = ACTIONS(756), + [sym__word_no_digit] = ACTIONS(754), + [sym__digits] = ACTIONS(754), + [aux_sym__newline_token1] = ACTIONS(754), + [sym__block_continuation] = ACTIONS(844), + [sym__block_quote_continuation] = ACTIONS(844), + [sym__block_quote_start] = ACTIONS(754), + [sym__indented_chunk_start] = ACTIONS(754), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(754), + [sym_atx_h5_marker] = ACTIONS(754), + [sym_atx_h6_marker] = ACTIONS(754), + [sym__thematic_break] = ACTIONS(754), + [sym__list_marker_minus] = ACTIONS(754), + [sym__list_marker_plus] = ACTIONS(754), + [sym__list_marker_star] = ACTIONS(754), + [sym__list_marker_parenthesis] = ACTIONS(754), + [sym__list_marker_dot] = ACTIONS(754), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_star_dont_interrupt] = ACTIONS(754), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(754), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(754), + [sym__fenced_code_block_start_backtick] = ACTIONS(754), + [sym__fenced_code_block_start_tilde] = ACTIONS(754), + [sym__blank_line_start] = ACTIONS(754), + [sym__code_span_start] = ACTIONS(754), + [sym__emphasis_open_star] = ACTIONS(754), + [sym__emphasis_open_underscore] = ACTIONS(754), + [sym__last_token_whitespace] = ACTIONS(844), + }, [121] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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(161), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(840), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(840), + [anon_sym_PERCENT] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(840), + [anon_sym_SLASH] = ACTIONS(840), + [anon_sym_COLON] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(840), + [anon_sym_AT] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_BSLASH] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(840), + [anon_sym__] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [aux_sym__html_block_1_token1] = ACTIONS(840), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(842), + [anon_sym_LT_QMARK] = ACTIONS(842), + [aux_sym__html_block_4_token1] = ACTIONS(842), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(840), + [aux_sym__html_block_6_token1] = ACTIONS(842), + [aux_sym__html_block_6_token2] = ACTIONS(840), + [sym__open_tag_html_block] = ACTIONS(840), + [sym__open_tag_html_block_newline] = ACTIONS(840), + [sym__closing_tag_html_block] = ACTIONS(840), + [sym__closing_tag_html_block_newline] = ACTIONS(840), + [sym_backslash_escape] = ACTIONS(840), + [sym_entity_reference] = ACTIONS(840), + [sym_numeric_character_reference] = ACTIONS(840), + [sym_uri_autolink] = ACTIONS(840), + [sym_email_autolink] = ACTIONS(840), + [sym__whitespace_ge_2] = ACTIONS(840), + [aux_sym__whitespace_token1] = ACTIONS(842), + [sym__word_no_digit] = ACTIONS(840), + [sym__digits] = ACTIONS(840), + [aux_sym__newline_token1] = ACTIONS(840), + [sym__block_close] = ACTIONS(840), + [sym__block_continuation] = ACTIONS(846), + [sym__block_quote_continuation] = ACTIONS(846), + [sym__block_quote_start] = ACTIONS(840), + [sym__indented_chunk_start] = ACTIONS(840), + [sym_atx_h1_marker] = ACTIONS(840), + [sym_atx_h2_marker] = ACTIONS(840), + [sym_atx_h3_marker] = ACTIONS(840), + [sym_atx_h4_marker] = ACTIONS(840), + [sym_atx_h5_marker] = ACTIONS(840), + [sym_atx_h6_marker] = ACTIONS(840), + [sym__thematic_break] = ACTIONS(840), + [sym__list_marker_minus] = ACTIONS(840), + [sym__list_marker_plus] = ACTIONS(840), + [sym__list_marker_star] = ACTIONS(840), + [sym__list_marker_parenthesis] = ACTIONS(840), + [sym__list_marker_dot] = ACTIONS(840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(840), + [sym__fenced_code_block_start_backtick] = ACTIONS(840), + [sym__fenced_code_block_start_tilde] = ACTIONS(840), + [sym__blank_line_start] = ACTIONS(840), + [sym__code_span_start] = ACTIONS(840), + [sym__emphasis_open_star] = ACTIONS(840), + [sym__emphasis_open_underscore] = ACTIONS(840), + [sym__last_token_whitespace] = ACTIONS(846), }, [122] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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), + [aux_sym__ignore_matching_tokens] = STATE(162), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_POUND] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_BSLASH] = ACTIONS(850), + [anon_sym_RBRACK] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym__] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [aux_sym__html_block_1_token1] = ACTIONS(848), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(850), + [anon_sym_LT_QMARK] = ACTIONS(850), + [aux_sym__html_block_4_token1] = ACTIONS(850), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(848), + [aux_sym__html_block_6_token1] = ACTIONS(850), + [aux_sym__html_block_6_token2] = ACTIONS(848), + [sym__open_tag_html_block] = ACTIONS(848), + [sym__open_tag_html_block_newline] = ACTIONS(848), + [sym__closing_tag_html_block] = ACTIONS(848), + [sym__closing_tag_html_block_newline] = ACTIONS(848), + [sym_backslash_escape] = ACTIONS(848), + [sym_entity_reference] = ACTIONS(848), + [sym_numeric_character_reference] = ACTIONS(848), + [sym_uri_autolink] = ACTIONS(848), + [sym_email_autolink] = ACTIONS(848), + [sym__whitespace_ge_2] = ACTIONS(848), + [aux_sym__whitespace_token1] = ACTIONS(850), + [sym__word_no_digit] = ACTIONS(848), + [sym__digits] = ACTIONS(848), + [aux_sym__newline_token1] = ACTIONS(848), + [sym__block_close] = ACTIONS(848), + [sym__block_continuation] = ACTIONS(852), + [sym__block_quote_continuation] = ACTIONS(852), + [sym__block_quote_start] = ACTIONS(848), + [sym__indented_chunk_start] = ACTIONS(848), + [sym_atx_h1_marker] = ACTIONS(848), + [sym_atx_h2_marker] = ACTIONS(848), + [sym_atx_h3_marker] = ACTIONS(848), + [sym_atx_h4_marker] = ACTIONS(848), + [sym_atx_h5_marker] = ACTIONS(848), + [sym_atx_h6_marker] = ACTIONS(848), + [sym__thematic_break] = ACTIONS(848), + [sym__list_marker_minus] = ACTIONS(848), + [sym__list_marker_plus] = ACTIONS(848), + [sym__list_marker_star] = ACTIONS(848), + [sym__list_marker_parenthesis] = ACTIONS(848), + [sym__list_marker_dot] = ACTIONS(848), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(848), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(848), + [sym__list_marker_star_dont_interrupt] = ACTIONS(848), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(848), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(848), + [sym__fenced_code_block_start_backtick] = ACTIONS(848), + [sym__fenced_code_block_start_tilde] = ACTIONS(848), + [sym__blank_line_start] = ACTIONS(848), + [sym__code_span_start] = ACTIONS(848), + [sym__emphasis_open_star] = ACTIONS(848), + [sym__emphasis_open_underscore] = ACTIONS(848), + [sym__last_token_whitespace] = ACTIONS(852), }, [123] = { - [aux_sym__ignore_matching_tokens] = STATE(120), - [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(789), - [sym__block_quote_continuation] = ACTIONS(789), - [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(789), + [aux_sym__ignore_matching_tokens] = STATE(169), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = 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_PIPE] = 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(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), }, [124] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(791), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__emphasis_close_underscore] = ACTIONS(793), + [aux_sym__ignore_matching_tokens] = STATE(172), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = 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_PIPE] = 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(864), + [sym__block_quote_continuation] = ACTIONS(864), + [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(864), }, [125] = { - [aux_sym__ignore_matching_tokens] = STATE(212), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_AT] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_BQUOTE] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(795), - [aux_sym__html_block_1_token1] = ACTIONS(795), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(797), - [anon_sym_LT_QMARK] = ACTIONS(797), - [aux_sym__html_block_4_token1] = ACTIONS(797), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(795), - [aux_sym__html_block_6_token1] = ACTIONS(797), - [aux_sym__html_block_6_token2] = ACTIONS(795), - [sym__open_tag_html_block] = ACTIONS(795), - [sym__open_tag_html_block_newline] = ACTIONS(795), - [sym__closing_tag_html_block] = ACTIONS(795), - [sym__closing_tag_html_block_newline] = ACTIONS(795), - [sym_backslash_escape] = ACTIONS(795), - [sym_entity_reference] = ACTIONS(795), - [sym_numeric_character_reference] = ACTIONS(795), - [sym_uri_autolink] = ACTIONS(795), - [sym_email_autolink] = ACTIONS(795), - [sym__whitespace_ge_2] = ACTIONS(795), - [aux_sym__whitespace_token1] = ACTIONS(797), - [sym__word_no_digit] = ACTIONS(795), - [sym__digits] = ACTIONS(795), - [aux_sym__newline_token1] = ACTIONS(795), - [sym__block_continuation] = ACTIONS(799), - [sym__block_quote_continuation] = ACTIONS(799), - [sym__block_quote_start] = ACTIONS(795), - [sym__indented_chunk_start] = ACTIONS(795), - [sym_atx_h1_marker] = ACTIONS(795), - [sym_atx_h2_marker] = ACTIONS(795), - [sym_atx_h3_marker] = ACTIONS(795), - [sym_atx_h4_marker] = ACTIONS(795), - [sym_atx_h5_marker] = ACTIONS(795), - [sym_atx_h6_marker] = ACTIONS(795), - [sym__thematic_break] = ACTIONS(795), - [sym__list_marker_minus] = ACTIONS(795), - [sym__list_marker_plus] = ACTIONS(795), - [sym__list_marker_star] = ACTIONS(795), - [sym__list_marker_parenthesis] = ACTIONS(795), - [sym__list_marker_dot] = ACTIONS(795), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_star_dont_interrupt] = ACTIONS(795), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(795), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(795), - [sym__fenced_code_block_start_backtick] = ACTIONS(795), - [sym__fenced_code_block_start_tilde] = ACTIONS(795), - [sym__blank_line_start] = ACTIONS(795), - [sym__code_span_start] = ACTIONS(795), - [sym__emphasis_open_star] = ACTIONS(795), - [sym__emphasis_open_underscore] = ACTIONS(795), - [sym__last_token_whitespace] = ACTIONS(799), + [aux_sym__ignore_matching_tokens] = STATE(174), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(866), + [anon_sym_DOLLAR] = ACTIONS(866), + [anon_sym_PERCENT] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_COMMA] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_DOT] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_QMARK] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_BSLASH] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(866), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym__] = ACTIONS(866), + [anon_sym_BQUOTE] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(866), + [aux_sym__html_block_1_token1] = ACTIONS(866), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(868), + [anon_sym_LT_QMARK] = ACTIONS(868), + [aux_sym__html_block_4_token1] = ACTIONS(868), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(866), + [aux_sym__html_block_6_token1] = ACTIONS(868), + [aux_sym__html_block_6_token2] = ACTIONS(866), + [sym__open_tag_html_block] = ACTIONS(866), + [sym__open_tag_html_block_newline] = ACTIONS(866), + [sym__closing_tag_html_block] = ACTIONS(866), + [sym__closing_tag_html_block_newline] = ACTIONS(866), + [sym_backslash_escape] = ACTIONS(866), + [sym_entity_reference] = ACTIONS(866), + [sym_numeric_character_reference] = ACTIONS(866), + [sym_uri_autolink] = ACTIONS(866), + [sym_email_autolink] = ACTIONS(866), + [sym__whitespace_ge_2] = ACTIONS(866), + [aux_sym__whitespace_token1] = ACTIONS(868), + [sym__word_no_digit] = ACTIONS(866), + [sym__digits] = ACTIONS(866), + [aux_sym__newline_token1] = ACTIONS(866), + [sym__block_close] = ACTIONS(866), + [sym__block_continuation] = ACTIONS(870), + [sym__block_quote_continuation] = ACTIONS(870), + [sym__block_quote_start] = ACTIONS(866), + [sym__indented_chunk_start] = ACTIONS(866), + [sym_atx_h1_marker] = ACTIONS(866), + [sym_atx_h2_marker] = ACTIONS(866), + [sym_atx_h3_marker] = ACTIONS(866), + [sym_atx_h4_marker] = ACTIONS(866), + [sym_atx_h5_marker] = ACTIONS(866), + [sym_atx_h6_marker] = ACTIONS(866), + [sym__thematic_break] = ACTIONS(866), + [sym__list_marker_minus] = ACTIONS(866), + [sym__list_marker_plus] = ACTIONS(866), + [sym__list_marker_star] = ACTIONS(866), + [sym__list_marker_parenthesis] = ACTIONS(866), + [sym__list_marker_dot] = ACTIONS(866), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(866), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(866), + [sym__list_marker_star_dont_interrupt] = ACTIONS(866), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(866), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(866), + [sym__fenced_code_block_start_backtick] = ACTIONS(866), + [sym__fenced_code_block_start_tilde] = ACTIONS(866), + [sym__blank_line_start] = ACTIONS(866), + [sym__code_span_start] = ACTIONS(866), + [sym__emphasis_open_star] = ACTIONS(866), + [sym__emphasis_open_underscore] = ACTIONS(866), + [sym__last_token_whitespace] = ACTIONS(870), }, [126] = { - [aux_sym__ignore_matching_tokens] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_POUND] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(801), - [anon_sym_CARET] = ACTIONS(801), - [anon_sym__] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [aux_sym__html_block_1_token1] = ACTIONS(801), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(803), - [anon_sym_LT_QMARK] = ACTIONS(803), - [aux_sym__html_block_4_token1] = ACTIONS(803), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(801), - [aux_sym__html_block_6_token1] = ACTIONS(803), - [aux_sym__html_block_6_token2] = ACTIONS(801), - [sym__open_tag_html_block] = ACTIONS(801), - [sym__open_tag_html_block_newline] = ACTIONS(801), - [sym__closing_tag_html_block] = ACTIONS(801), - [sym__closing_tag_html_block_newline] = ACTIONS(801), - [sym_backslash_escape] = ACTIONS(801), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(801), - [aux_sym__whitespace_token1] = ACTIONS(803), - [sym__word_no_digit] = ACTIONS(801), - [sym__digits] = ACTIONS(801), - [aux_sym__newline_token1] = ACTIONS(801), - [sym__block_continuation] = ACTIONS(805), - [sym__block_quote_continuation] = ACTIONS(805), - [sym__block_quote_start] = ACTIONS(801), - [sym__indented_chunk_start] = ACTIONS(801), - [sym_atx_h1_marker] = ACTIONS(801), - [sym_atx_h2_marker] = ACTIONS(801), - [sym_atx_h3_marker] = ACTIONS(801), - [sym_atx_h4_marker] = ACTIONS(801), - [sym_atx_h5_marker] = ACTIONS(801), - [sym_atx_h6_marker] = ACTIONS(801), - [sym__thematic_break] = ACTIONS(801), - [sym__list_marker_minus] = ACTIONS(801), - [sym__list_marker_plus] = ACTIONS(801), - [sym__list_marker_star] = ACTIONS(801), - [sym__list_marker_parenthesis] = ACTIONS(801), - [sym__list_marker_dot] = ACTIONS(801), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_star_dont_interrupt] = ACTIONS(801), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(801), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(801), - [sym__fenced_code_block_start_backtick] = ACTIONS(801), - [sym__fenced_code_block_start_tilde] = ACTIONS(801), - [sym__blank_line_start] = ACTIONS(801), - [sym__code_span_start] = ACTIONS(801), - [sym__emphasis_open_star] = ACTIONS(801), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__last_token_whitespace] = ACTIONS(805), + [aux_sym__ignore_matching_tokens] = STATE(225), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(872), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(872), + [anon_sym_COMMA] = ACTIONS(872), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_AT] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(874), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_CARET] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_BQUOTE] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_TILDE] = ACTIONS(872), + [aux_sym__html_block_1_token1] = ACTIONS(872), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(874), + [anon_sym_LT_QMARK] = ACTIONS(874), + [aux_sym__html_block_4_token1] = ACTIONS(874), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(872), + [aux_sym__html_block_6_token1] = ACTIONS(874), + [aux_sym__html_block_6_token2] = ACTIONS(872), + [sym__open_tag_html_block] = ACTIONS(872), + [sym__open_tag_html_block_newline] = ACTIONS(872), + [sym__closing_tag_html_block] = ACTIONS(872), + [sym__closing_tag_html_block_newline] = ACTIONS(872), + [sym_backslash_escape] = ACTIONS(872), + [sym_entity_reference] = ACTIONS(872), + [sym_numeric_character_reference] = ACTIONS(872), + [sym_uri_autolink] = ACTIONS(872), + [sym_email_autolink] = ACTIONS(872), + [sym__whitespace_ge_2] = ACTIONS(872), + [aux_sym__whitespace_token1] = ACTIONS(874), + [sym__word_no_digit] = ACTIONS(872), + [sym__digits] = ACTIONS(872), + [aux_sym__newline_token1] = ACTIONS(872), + [sym__block_close] = ACTIONS(872), + [sym__block_continuation] = ACTIONS(876), + [sym__block_quote_continuation] = ACTIONS(876), + [sym__block_quote_start] = ACTIONS(872), + [sym__indented_chunk_start] = ACTIONS(872), + [sym_atx_h1_marker] = ACTIONS(872), + [sym_atx_h2_marker] = ACTIONS(872), + [sym_atx_h3_marker] = ACTIONS(872), + [sym_atx_h4_marker] = ACTIONS(872), + [sym_atx_h5_marker] = ACTIONS(872), + [sym_atx_h6_marker] = ACTIONS(872), + [sym__thematic_break] = ACTIONS(872), + [sym__list_marker_minus] = ACTIONS(872), + [sym__list_marker_plus] = ACTIONS(872), + [sym__list_marker_star] = ACTIONS(872), + [sym__list_marker_parenthesis] = ACTIONS(872), + [sym__list_marker_dot] = ACTIONS(872), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(872), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(872), + [sym__list_marker_star_dont_interrupt] = ACTIONS(872), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(872), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(872), + [sym__fenced_code_block_start_backtick] = ACTIONS(872), + [sym__fenced_code_block_start_tilde] = ACTIONS(872), + [sym__blank_line_start] = ACTIONS(872), + [sym__code_span_start] = ACTIONS(872), + [sym__emphasis_open_star] = ACTIONS(872), + [sym__emphasis_open_underscore] = ACTIONS(872), + [sym__last_token_whitespace] = ACTIONS(876), }, [127] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_AT] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_BQUOTE] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(795), - [aux_sym__html_block_1_token1] = ACTIONS(795), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(797), - [anon_sym_LT_QMARK] = ACTIONS(797), - [aux_sym__html_block_4_token1] = ACTIONS(797), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(795), - [aux_sym__html_block_6_token1] = ACTIONS(797), - [aux_sym__html_block_6_token2] = ACTIONS(795), - [sym__open_tag_html_block] = ACTIONS(795), - [sym__open_tag_html_block_newline] = ACTIONS(795), - [sym__closing_tag_html_block] = ACTIONS(795), - [sym__closing_tag_html_block_newline] = ACTIONS(795), - [sym_backslash_escape] = ACTIONS(795), - [sym_entity_reference] = ACTIONS(795), - [sym_numeric_character_reference] = ACTIONS(795), - [sym_uri_autolink] = ACTIONS(795), - [sym_email_autolink] = ACTIONS(795), - [sym__whitespace_ge_2] = ACTIONS(795), - [aux_sym__whitespace_token1] = ACTIONS(797), - [sym__word_no_digit] = ACTIONS(795), - [sym__digits] = ACTIONS(795), - [aux_sym__newline_token1] = ACTIONS(795), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(795), - [sym__indented_chunk_start] = ACTIONS(795), - [sym_atx_h1_marker] = ACTIONS(795), - [sym_atx_h2_marker] = ACTIONS(795), - [sym_atx_h3_marker] = ACTIONS(795), - [sym_atx_h4_marker] = ACTIONS(795), - [sym_atx_h5_marker] = ACTIONS(795), - [sym_atx_h6_marker] = ACTIONS(795), - [sym__thematic_break] = ACTIONS(795), - [sym__list_marker_minus] = ACTIONS(795), - [sym__list_marker_plus] = ACTIONS(795), - [sym__list_marker_star] = ACTIONS(795), - [sym__list_marker_parenthesis] = ACTIONS(795), - [sym__list_marker_dot] = ACTIONS(795), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_star_dont_interrupt] = ACTIONS(795), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(795), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(795), - [sym__fenced_code_block_start_backtick] = ACTIONS(795), - [sym__fenced_code_block_start_tilde] = ACTIONS(795), - [sym__blank_line_start] = ACTIONS(795), - [sym__code_span_start] = ACTIONS(795), - [sym__emphasis_open_star] = ACTIONS(795), - [sym__emphasis_open_underscore] = ACTIONS(795), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(232), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_BSLASH] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym__] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(878), + [aux_sym__html_block_1_token1] = ACTIONS(878), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(880), + [anon_sym_LT_QMARK] = ACTIONS(880), + [aux_sym__html_block_4_token1] = ACTIONS(880), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(878), + [aux_sym__html_block_6_token1] = ACTIONS(880), + [aux_sym__html_block_6_token2] = ACTIONS(878), + [sym__open_tag_html_block] = ACTIONS(878), + [sym__open_tag_html_block_newline] = ACTIONS(878), + [sym__closing_tag_html_block] = ACTIONS(878), + [sym__closing_tag_html_block_newline] = ACTIONS(878), + [sym_backslash_escape] = ACTIONS(878), + [sym_entity_reference] = ACTIONS(878), + [sym_numeric_character_reference] = ACTIONS(878), + [sym_uri_autolink] = ACTIONS(878), + [sym_email_autolink] = ACTIONS(878), + [sym__whitespace_ge_2] = ACTIONS(878), + [aux_sym__whitespace_token1] = ACTIONS(880), + [sym__word_no_digit] = ACTIONS(878), + [sym__digits] = ACTIONS(878), + [aux_sym__newline_token1] = ACTIONS(878), + [sym__block_close] = ACTIONS(878), + [sym__block_continuation] = ACTIONS(882), + [sym__block_quote_continuation] = ACTIONS(882), + [sym__block_quote_start] = ACTIONS(878), + [sym__indented_chunk_start] = ACTIONS(878), + [sym_atx_h1_marker] = ACTIONS(878), + [sym_atx_h2_marker] = ACTIONS(878), + [sym_atx_h3_marker] = ACTIONS(878), + [sym_atx_h4_marker] = ACTIONS(878), + [sym_atx_h5_marker] = ACTIONS(878), + [sym_atx_h6_marker] = ACTIONS(878), + [sym__thematic_break] = ACTIONS(878), + [sym__list_marker_minus] = ACTIONS(878), + [sym__list_marker_plus] = ACTIONS(878), + [sym__list_marker_star] = ACTIONS(878), + [sym__list_marker_parenthesis] = ACTIONS(878), + [sym__list_marker_dot] = ACTIONS(878), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(878), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(878), + [sym__list_marker_star_dont_interrupt] = ACTIONS(878), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(878), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(878), + [sym__fenced_code_block_start_backtick] = ACTIONS(878), + [sym__fenced_code_block_start_tilde] = ACTIONS(878), + [sym__blank_line_start] = ACTIONS(878), + [sym__code_span_start] = ACTIONS(878), + [sym__emphasis_open_star] = ACTIONS(878), + [sym__emphasis_open_underscore] = ACTIONS(878), + [sym__last_token_whitespace] = ACTIONS(882), }, [128] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_POUND] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(801), - [anon_sym_CARET] = ACTIONS(801), - [anon_sym__] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [aux_sym__html_block_1_token1] = ACTIONS(801), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(803), - [anon_sym_LT_QMARK] = ACTIONS(803), - [aux_sym__html_block_4_token1] = ACTIONS(803), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(801), - [aux_sym__html_block_6_token1] = ACTIONS(803), - [aux_sym__html_block_6_token2] = ACTIONS(801), - [sym__open_tag_html_block] = ACTIONS(801), - [sym__open_tag_html_block_newline] = ACTIONS(801), - [sym__closing_tag_html_block] = ACTIONS(801), - [sym__closing_tag_html_block_newline] = ACTIONS(801), - [sym_backslash_escape] = ACTIONS(801), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(801), - [aux_sym__whitespace_token1] = ACTIONS(803), - [sym__word_no_digit] = ACTIONS(801), - [sym__digits] = ACTIONS(801), - [aux_sym__newline_token1] = ACTIONS(801), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(801), - [sym__indented_chunk_start] = ACTIONS(801), - [sym_atx_h1_marker] = ACTIONS(801), - [sym_atx_h2_marker] = ACTIONS(801), - [sym_atx_h3_marker] = ACTIONS(801), - [sym_atx_h4_marker] = ACTIONS(801), - [sym_atx_h5_marker] = ACTIONS(801), - [sym_atx_h6_marker] = ACTIONS(801), - [sym__thematic_break] = ACTIONS(801), - [sym__list_marker_minus] = ACTIONS(801), - [sym__list_marker_plus] = ACTIONS(801), - [sym__list_marker_star] = ACTIONS(801), - [sym__list_marker_parenthesis] = ACTIONS(801), - [sym__list_marker_dot] = ACTIONS(801), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_star_dont_interrupt] = ACTIONS(801), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(801), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(801), - [sym__fenced_code_block_start_backtick] = ACTIONS(801), - [sym__fenced_code_block_start_tilde] = ACTIONS(801), - [sym__blank_line_start] = ACTIONS(801), - [sym__code_span_start] = ACTIONS(801), - [sym__emphasis_open_star] = ACTIONS(801), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(884), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [sym_uri_autolink] = ACTIONS(884), + [sym_email_autolink] = ACTIONS(884), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(884), + [sym__digits] = ACTIONS(884), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__emphasis_close_underscore] = ACTIONS(886), }, [129] = { - [aux_sym__ignore_matching_tokens] = STATE(214), - [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(811), - [sym__block_quote_continuation] = ACTIONS(811), - [sym__block_quote_start] = ACTIONS(807), - [sym__indented_chunk_start] = ACTIONS(807), - [sym_atx_h1_marker] = ACTIONS(807), - [sym_atx_h2_marker] = ACTIONS(807), - [sym_atx_h3_marker] = ACTIONS(807), - [sym_atx_h4_marker] = ACTIONS(807), - [sym_atx_h5_marker] = ACTIONS(807), - [sym_atx_h6_marker] = ACTIONS(807), - [sym__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(811), + [ts_builtin_sym_end] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_POUND] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(888), + [anon_sym_PERCENT] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_BSLASH] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_CARET] = ACTIONS(888), + [anon_sym__] = ACTIONS(888), + [anon_sym_BQUOTE] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_TILDE] = ACTIONS(888), + [aux_sym__html_block_1_token1] = ACTIONS(888), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(890), + [anon_sym_LT_QMARK] = ACTIONS(890), + [aux_sym__html_block_4_token1] = ACTIONS(890), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(888), + [aux_sym__html_block_6_token1] = ACTIONS(890), + [aux_sym__html_block_6_token2] = ACTIONS(888), + [sym__open_tag_html_block] = ACTIONS(888), + [sym__open_tag_html_block_newline] = ACTIONS(888), + [sym__closing_tag_html_block] = ACTIONS(888), + [sym__closing_tag_html_block_newline] = ACTIONS(888), + [sym_backslash_escape] = ACTIONS(888), + [sym_entity_reference] = ACTIONS(888), + [sym_numeric_character_reference] = ACTIONS(888), + [sym_uri_autolink] = ACTIONS(888), + [sym_email_autolink] = ACTIONS(888), + [sym__whitespace_ge_2] = ACTIONS(888), + [aux_sym__whitespace_token1] = ACTIONS(890), + [sym__word_no_digit] = ACTIONS(888), + [sym__digits] = ACTIONS(888), + [aux_sym__newline_token1] = ACTIONS(888), + [sym__block_quote_start] = ACTIONS(888), + [sym__indented_chunk_start] = ACTIONS(888), + [sym_atx_h1_marker] = ACTIONS(888), + [sym_atx_h2_marker] = ACTIONS(888), + [sym_atx_h3_marker] = ACTIONS(888), + [sym_atx_h4_marker] = ACTIONS(888), + [sym_atx_h5_marker] = ACTIONS(888), + [sym_atx_h6_marker] = ACTIONS(888), + [sym_setext_h1_underline] = ACTIONS(888), + [sym_setext_h2_underline] = ACTIONS(888), + [sym__thematic_break] = ACTIONS(888), + [sym__list_marker_minus] = ACTIONS(888), + [sym__list_marker_plus] = ACTIONS(888), + [sym__list_marker_star] = ACTIONS(888), + [sym__list_marker_parenthesis] = ACTIONS(888), + [sym__list_marker_dot] = ACTIONS(888), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(888), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(888), + [sym__list_marker_star_dont_interrupt] = ACTIONS(888), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(888), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(888), + [sym__fenced_code_block_start_backtick] = ACTIONS(888), + [sym__fenced_code_block_start_tilde] = ACTIONS(888), + [sym__blank_line_start] = ACTIONS(888), + [sym__split_token] = ACTIONS(892), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(888), + [sym__emphasis_open_star] = ACTIONS(888), + [sym__emphasis_open_underscore] = ACTIONS(888), }, [130] = { - [aux_sym__ignore_matching_tokens] = STATE(225), - [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(813), - [sym__block_quote_continuation] = ACTIONS(813), - [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(813), - }, - [131] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LT] = ACTIONS(817), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_AT] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [aux_sym__html_block_1_token1] = ACTIONS(815), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(817), - [anon_sym_LT_QMARK] = ACTIONS(817), - [aux_sym__html_block_4_token1] = ACTIONS(817), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(815), - [aux_sym__html_block_6_token1] = ACTIONS(817), - [aux_sym__html_block_6_token2] = ACTIONS(815), - [sym__open_tag_html_block] = ACTIONS(815), - [sym__open_tag_html_block_newline] = ACTIONS(815), - [sym__closing_tag_html_block] = ACTIONS(815), - [sym__closing_tag_html_block_newline] = ACTIONS(815), - [sym_backslash_escape] = ACTIONS(815), - [sym_entity_reference] = ACTIONS(815), - [sym_numeric_character_reference] = ACTIONS(815), - [sym_uri_autolink] = ACTIONS(815), - [sym_email_autolink] = ACTIONS(815), - [sym__whitespace_ge_2] = ACTIONS(815), - [aux_sym__whitespace_token1] = ACTIONS(817), - [sym__word_no_digit] = ACTIONS(815), - [sym__digits] = ACTIONS(815), - [aux_sym__newline_token1] = ACTIONS(815), - [sym__block_close] = ACTIONS(815), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(815), - [sym__indented_chunk_start] = ACTIONS(815), - [sym_atx_h1_marker] = ACTIONS(815), - [sym_atx_h2_marker] = ACTIONS(815), - [sym_atx_h3_marker] = ACTIONS(815), - [sym_atx_h4_marker] = ACTIONS(815), - [sym_atx_h5_marker] = ACTIONS(815), - [sym_atx_h6_marker] = ACTIONS(815), - [sym__thematic_break] = ACTIONS(815), - [sym__list_marker_minus] = ACTIONS(815), - [sym__list_marker_plus] = ACTIONS(815), - [sym__list_marker_star] = ACTIONS(815), - [sym__list_marker_parenthesis] = ACTIONS(815), - [sym__list_marker_dot] = ACTIONS(815), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(815), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(815), - [sym__list_marker_star_dont_interrupt] = ACTIONS(815), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(815), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(815), - [sym__fenced_code_block_start_backtick] = ACTIONS(815), - [sym__fenced_code_block_start_tilde] = ACTIONS(815), - [sym__blank_line_start] = ACTIONS(815), - [sym__code_span_start] = ACTIONS(815), - [sym__emphasis_open_star] = ACTIONS(815), - [sym__emphasis_open_underscore] = ACTIONS(815), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [132] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_PERCENT] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym__] = ACTIONS(819), - [anon_sym_BQUOTE] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(819), - [aux_sym__html_block_1_token1] = ACTIONS(819), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(821), - [anon_sym_LT_QMARK] = ACTIONS(821), - [aux_sym__html_block_4_token1] = ACTIONS(821), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(819), - [aux_sym__html_block_6_token1] = ACTIONS(821), - [aux_sym__html_block_6_token2] = ACTIONS(819), - [sym__open_tag_html_block] = ACTIONS(819), - [sym__open_tag_html_block_newline] = ACTIONS(819), - [sym__closing_tag_html_block] = ACTIONS(819), - [sym__closing_tag_html_block_newline] = ACTIONS(819), - [sym_backslash_escape] = ACTIONS(819), - [sym_entity_reference] = ACTIONS(819), - [sym_numeric_character_reference] = ACTIONS(819), - [sym_uri_autolink] = ACTIONS(819), - [sym_email_autolink] = ACTIONS(819), - [sym__whitespace_ge_2] = ACTIONS(819), - [aux_sym__whitespace_token1] = ACTIONS(821), - [sym__word_no_digit] = ACTIONS(819), - [sym__digits] = ACTIONS(819), - [aux_sym__newline_token1] = ACTIONS(819), - [sym__block_close] = ACTIONS(819), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(819), - [sym__indented_chunk_start] = ACTIONS(819), - [sym_atx_h1_marker] = ACTIONS(819), - [sym_atx_h2_marker] = ACTIONS(819), - [sym_atx_h3_marker] = ACTIONS(819), - [sym_atx_h4_marker] = ACTIONS(819), - [sym_atx_h5_marker] = ACTIONS(819), - [sym_atx_h6_marker] = ACTIONS(819), - [sym__thematic_break] = ACTIONS(819), - [sym__list_marker_minus] = ACTIONS(819), - [sym__list_marker_plus] = ACTIONS(819), - [sym__list_marker_star] = ACTIONS(819), - [sym__list_marker_parenthesis] = ACTIONS(819), - [sym__list_marker_dot] = ACTIONS(819), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(819), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(819), - [sym__list_marker_star_dont_interrupt] = ACTIONS(819), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(819), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(819), - [sym__fenced_code_block_start_backtick] = ACTIONS(819), - [sym__fenced_code_block_start_tilde] = ACTIONS(819), - [sym__blank_line_start] = ACTIONS(819), - [sym__code_span_start] = ACTIONS(819), - [sym__emphasis_open_star] = ACTIONS(819), - [sym__emphasis_open_underscore] = ACTIONS(819), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [133] = { - [aux_sym__ignore_matching_tokens] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - [anon_sym_BQUOTE] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [aux_sym__html_block_1_token1] = ACTIONS(823), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(825), - [anon_sym_LT_QMARK] = ACTIONS(825), - [aux_sym__html_block_4_token1] = ACTIONS(825), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(823), - [aux_sym__html_block_6_token1] = ACTIONS(825), - [aux_sym__html_block_6_token2] = ACTIONS(823), - [sym__open_tag_html_block] = ACTIONS(823), - [sym__open_tag_html_block_newline] = ACTIONS(823), - [sym__closing_tag_html_block] = ACTIONS(823), - [sym__closing_tag_html_block_newline] = ACTIONS(823), - [sym_backslash_escape] = ACTIONS(823), - [sym_entity_reference] = ACTIONS(823), - [sym_numeric_character_reference] = ACTIONS(823), - [sym_uri_autolink] = ACTIONS(823), - [sym_email_autolink] = ACTIONS(823), - [sym__whitespace_ge_2] = ACTIONS(823), - [aux_sym__whitespace_token1] = ACTIONS(825), - [sym__word_no_digit] = ACTIONS(823), - [sym__digits] = ACTIONS(823), - [aux_sym__newline_token1] = ACTIONS(823), - [sym__block_continuation] = ACTIONS(827), - [sym__block_quote_continuation] = ACTIONS(827), - [sym__block_quote_start] = ACTIONS(823), - [sym__indented_chunk_start] = ACTIONS(823), - [sym_atx_h1_marker] = ACTIONS(823), - [sym_atx_h2_marker] = ACTIONS(823), - [sym_atx_h3_marker] = ACTIONS(823), - [sym_atx_h4_marker] = ACTIONS(823), - [sym_atx_h5_marker] = ACTIONS(823), - [sym_atx_h6_marker] = ACTIONS(823), - [sym__thematic_break] = ACTIONS(823), - [sym__list_marker_minus] = ACTIONS(823), - [sym__list_marker_plus] = ACTIONS(823), - [sym__list_marker_star] = ACTIONS(823), - [sym__list_marker_parenthesis] = ACTIONS(823), - [sym__list_marker_dot] = ACTIONS(823), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_star_dont_interrupt] = ACTIONS(823), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(823), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(823), - [sym__fenced_code_block_start_backtick] = ACTIONS(823), - [sym__fenced_code_block_start_tilde] = ACTIONS(823), - [sym__blank_line_start] = ACTIONS(823), - [sym__code_span_start] = ACTIONS(823), - [sym__emphasis_open_star] = ACTIONS(823), - [sym__emphasis_open_underscore] = ACTIONS(823), - [sym__last_token_whitespace] = ACTIONS(827), - }, - [134] = { - [aux_sym__ignore_matching_tokens] = STATE(217), - [ts_builtin_sym_end] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(831), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_BSLASH] = ACTIONS(831), - [anon_sym_RBRACK] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym__] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [aux_sym__html_block_1_token1] = ACTIONS(829), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(831), - [anon_sym_LT_QMARK] = ACTIONS(831), - [aux_sym__html_block_4_token1] = ACTIONS(831), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(829), - [aux_sym__html_block_6_token1] = ACTIONS(831), - [aux_sym__html_block_6_token2] = ACTIONS(829), - [sym__open_tag_html_block] = ACTIONS(829), - [sym__open_tag_html_block_newline] = ACTIONS(829), - [sym__closing_tag_html_block] = ACTIONS(829), - [sym__closing_tag_html_block_newline] = ACTIONS(829), - [sym_backslash_escape] = ACTIONS(829), - [sym_entity_reference] = ACTIONS(829), - [sym_numeric_character_reference] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(829), - [sym_email_autolink] = ACTIONS(829), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(829), - [sym__digits] = ACTIONS(829), - [aux_sym__newline_token1] = ACTIONS(829), - [sym__block_continuation] = ACTIONS(833), - [sym__block_quote_continuation] = ACTIONS(833), - [sym__block_quote_start] = ACTIONS(829), - [sym__indented_chunk_start] = ACTIONS(829), - [sym_atx_h1_marker] = ACTIONS(829), - [sym_atx_h2_marker] = ACTIONS(829), - [sym_atx_h3_marker] = ACTIONS(829), - [sym_atx_h4_marker] = ACTIONS(829), - [sym_atx_h5_marker] = ACTIONS(829), - [sym_atx_h6_marker] = ACTIONS(829), - [sym__thematic_break] = ACTIONS(829), - [sym__list_marker_minus] = ACTIONS(829), - [sym__list_marker_plus] = ACTIONS(829), - [sym__list_marker_star] = ACTIONS(829), - [sym__list_marker_parenthesis] = ACTIONS(829), - [sym__list_marker_dot] = ACTIONS(829), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(829), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(829), - [sym__list_marker_star_dont_interrupt] = ACTIONS(829), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(829), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(829), - [sym__fenced_code_block_start_backtick] = ACTIONS(829), - [sym__fenced_code_block_start_tilde] = ACTIONS(829), - [sym__blank_line_start] = ACTIONS(829), - [sym__code_span_start] = ACTIONS(829), - [sym__emphasis_open_star] = ACTIONS(829), - [sym__emphasis_open_underscore] = ACTIONS(829), - [sym__last_token_whitespace] = ACTIONS(833), - }, - [135] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - [anon_sym_BQUOTE] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [aux_sym__html_block_1_token1] = ACTIONS(823), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(825), - [anon_sym_LT_QMARK] = ACTIONS(825), - [aux_sym__html_block_4_token1] = ACTIONS(825), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(823), - [aux_sym__html_block_6_token1] = ACTIONS(825), - [aux_sym__html_block_6_token2] = ACTIONS(823), - [sym__open_tag_html_block] = ACTIONS(823), - [sym__open_tag_html_block_newline] = ACTIONS(823), - [sym__closing_tag_html_block] = ACTIONS(823), - [sym__closing_tag_html_block_newline] = ACTIONS(823), - [sym_backslash_escape] = ACTIONS(823), - [sym_entity_reference] = ACTIONS(823), - [sym_numeric_character_reference] = ACTIONS(823), - [sym_uri_autolink] = ACTIONS(823), - [sym_email_autolink] = ACTIONS(823), - [sym__whitespace_ge_2] = ACTIONS(823), - [aux_sym__whitespace_token1] = ACTIONS(825), - [sym__word_no_digit] = ACTIONS(823), - [sym__digits] = ACTIONS(823), - [aux_sym__newline_token1] = ACTIONS(823), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(823), - [sym__indented_chunk_start] = ACTIONS(823), - [sym_atx_h1_marker] = ACTIONS(823), - [sym_atx_h2_marker] = ACTIONS(823), - [sym_atx_h3_marker] = ACTIONS(823), - [sym_atx_h4_marker] = ACTIONS(823), - [sym_atx_h5_marker] = ACTIONS(823), - [sym_atx_h6_marker] = ACTIONS(823), - [sym__thematic_break] = ACTIONS(823), - [sym__list_marker_minus] = ACTIONS(823), - [sym__list_marker_plus] = ACTIONS(823), - [sym__list_marker_star] = ACTIONS(823), - [sym__list_marker_parenthesis] = ACTIONS(823), - [sym__list_marker_dot] = ACTIONS(823), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_star_dont_interrupt] = ACTIONS(823), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(823), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(823), - [sym__fenced_code_block_start_backtick] = ACTIONS(823), - [sym__fenced_code_block_start_tilde] = ACTIONS(823), - [sym__blank_line_start] = ACTIONS(823), - [sym__code_span_start] = ACTIONS(823), - [sym__emphasis_open_star] = ACTIONS(823), - [sym__emphasis_open_underscore] = ACTIONS(823), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [136] = { - [aux_sym__ignore_matching_tokens] = STATE(175), - [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(839), - [sym__block_quote_continuation] = ACTIONS(839), - [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(839), - }, - [137] = { - [aux_sym__ignore_matching_tokens] = STATE(199), - [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(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), - }, - [138] = { - [aux_sym__ignore_matching_tokens] = STATE(131), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_POUND] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_DOT] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_QMARK] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(843), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym__] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(843), - [aux_sym__html_block_1_token1] = ACTIONS(843), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), - [anon_sym_LT_QMARK] = ACTIONS(845), - [aux_sym__html_block_4_token1] = ACTIONS(845), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), - [aux_sym__html_block_6_token1] = ACTIONS(845), - [aux_sym__html_block_6_token2] = ACTIONS(843), - [sym__open_tag_html_block] = ACTIONS(843), - [sym__open_tag_html_block_newline] = ACTIONS(843), - [sym__closing_tag_html_block] = ACTIONS(843), - [sym__closing_tag_html_block_newline] = ACTIONS(843), - [sym_backslash_escape] = ACTIONS(843), - [sym_entity_reference] = ACTIONS(843), - [sym_numeric_character_reference] = ACTIONS(843), - [sym_uri_autolink] = ACTIONS(843), - [sym_email_autolink] = ACTIONS(843), - [sym__whitespace_ge_2] = ACTIONS(843), - [aux_sym__whitespace_token1] = ACTIONS(845), - [sym__word_no_digit] = ACTIONS(843), - [sym__digits] = ACTIONS(843), - [aux_sym__newline_token1] = ACTIONS(843), - [sym__block_close] = ACTIONS(843), - [sym__block_continuation] = ACTIONS(847), - [sym__block_quote_continuation] = ACTIONS(847), - [sym__block_quote_start] = ACTIONS(843), - [sym__indented_chunk_start] = ACTIONS(843), - [sym_atx_h1_marker] = ACTIONS(843), - [sym_atx_h2_marker] = ACTIONS(843), - [sym_atx_h3_marker] = ACTIONS(843), - [sym_atx_h4_marker] = ACTIONS(843), - [sym_atx_h5_marker] = ACTIONS(843), - [sym_atx_h6_marker] = ACTIONS(843), - [sym__thematic_break] = ACTIONS(843), - [sym__list_marker_minus] = ACTIONS(843), - [sym__list_marker_plus] = ACTIONS(843), - [sym__list_marker_star] = ACTIONS(843), - [sym__list_marker_parenthesis] = ACTIONS(843), - [sym__list_marker_dot] = ACTIONS(843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_star_dont_interrupt] = ACTIONS(843), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), - [sym__fenced_code_block_start_backtick] = ACTIONS(843), - [sym__fenced_code_block_start_tilde] = ACTIONS(843), - [sym__blank_line_start] = ACTIONS(843), - [sym__code_span_start] = ACTIONS(843), - [sym__emphasis_open_star] = ACTIONS(843), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__last_token_whitespace] = ACTIONS(847), - }, - [139] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_POUND] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_DOT] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_QMARK] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(843), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym__] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(843), - [aux_sym__html_block_1_token1] = ACTIONS(843), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), - [anon_sym_LT_QMARK] = ACTIONS(845), - [aux_sym__html_block_4_token1] = ACTIONS(845), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), - [aux_sym__html_block_6_token1] = ACTIONS(845), - [aux_sym__html_block_6_token2] = ACTIONS(843), - [sym__open_tag_html_block] = ACTIONS(843), - [sym__open_tag_html_block_newline] = ACTIONS(843), - [sym__closing_tag_html_block] = ACTIONS(843), - [sym__closing_tag_html_block_newline] = ACTIONS(843), - [sym_backslash_escape] = ACTIONS(843), - [sym_entity_reference] = ACTIONS(843), - [sym_numeric_character_reference] = ACTIONS(843), - [sym_uri_autolink] = ACTIONS(843), - [sym_email_autolink] = ACTIONS(843), - [sym__whitespace_ge_2] = ACTIONS(843), - [aux_sym__whitespace_token1] = ACTIONS(845), - [sym__word_no_digit] = ACTIONS(843), - [sym__digits] = ACTIONS(843), - [aux_sym__newline_token1] = ACTIONS(843), - [sym__block_close] = ACTIONS(843), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(843), - [sym__indented_chunk_start] = ACTIONS(843), - [sym_atx_h1_marker] = ACTIONS(843), - [sym_atx_h2_marker] = ACTIONS(843), - [sym_atx_h3_marker] = ACTIONS(843), - [sym_atx_h4_marker] = ACTIONS(843), - [sym_atx_h5_marker] = ACTIONS(843), - [sym_atx_h6_marker] = ACTIONS(843), - [sym__thematic_break] = ACTIONS(843), - [sym__list_marker_minus] = ACTIONS(843), - [sym__list_marker_plus] = ACTIONS(843), - [sym__list_marker_star] = ACTIONS(843), - [sym__list_marker_parenthesis] = ACTIONS(843), - [sym__list_marker_dot] = ACTIONS(843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_star_dont_interrupt] = ACTIONS(843), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), - [sym__fenced_code_block_start_backtick] = ACTIONS(843), - [sym__fenced_code_block_start_tilde] = ACTIONS(843), - [sym__blank_line_start] = ACTIONS(843), - [sym__code_span_start] = ACTIONS(843), - [sym__emphasis_open_star] = ACTIONS(843), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [140] = { - [aux_sym__ignore_matching_tokens] = STATE(132), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_BSLASH] = ACTIONS(851), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym__] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [aux_sym__html_block_1_token1] = ACTIONS(849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), - [anon_sym_LT_QMARK] = ACTIONS(851), - [aux_sym__html_block_4_token1] = ACTIONS(851), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), - [aux_sym__html_block_6_token1] = ACTIONS(851), - [aux_sym__html_block_6_token2] = ACTIONS(849), - [sym__open_tag_html_block] = ACTIONS(849), - [sym__open_tag_html_block_newline] = ACTIONS(849), - [sym__closing_tag_html_block] = ACTIONS(849), - [sym__closing_tag_html_block_newline] = ACTIONS(849), - [sym_backslash_escape] = ACTIONS(849), - [sym_entity_reference] = ACTIONS(849), - [sym_numeric_character_reference] = ACTIONS(849), - [sym_uri_autolink] = ACTIONS(849), - [sym_email_autolink] = ACTIONS(849), - [sym__whitespace_ge_2] = ACTIONS(849), - [aux_sym__whitespace_token1] = ACTIONS(851), - [sym__word_no_digit] = ACTIONS(849), - [sym__digits] = ACTIONS(849), - [aux_sym__newline_token1] = ACTIONS(849), - [sym__block_close] = ACTIONS(849), - [sym__block_continuation] = ACTIONS(853), - [sym__block_quote_continuation] = ACTIONS(853), - [sym__block_quote_start] = ACTIONS(849), - [sym__indented_chunk_start] = ACTIONS(849), - [sym_atx_h1_marker] = ACTIONS(849), - [sym_atx_h2_marker] = ACTIONS(849), - [sym_atx_h3_marker] = ACTIONS(849), - [sym_atx_h4_marker] = ACTIONS(849), - [sym_atx_h5_marker] = ACTIONS(849), - [sym_atx_h6_marker] = ACTIONS(849), - [sym__thematic_break] = ACTIONS(849), - [sym__list_marker_minus] = ACTIONS(849), - [sym__list_marker_plus] = ACTIONS(849), - [sym__list_marker_star] = ACTIONS(849), - [sym__list_marker_parenthesis] = ACTIONS(849), - [sym__list_marker_dot] = ACTIONS(849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), - [sym__fenced_code_block_start_backtick] = ACTIONS(849), - [sym__fenced_code_block_start_tilde] = ACTIONS(849), - [sym__blank_line_start] = ACTIONS(849), - [sym__code_span_start] = ACTIONS(849), - [sym__emphasis_open_star] = ACTIONS(849), - [sym__emphasis_open_underscore] = ACTIONS(849), - [sym__last_token_whitespace] = ACTIONS(853), - }, - [141] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_BSLASH] = ACTIONS(851), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym__] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [aux_sym__html_block_1_token1] = ACTIONS(849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), - [anon_sym_LT_QMARK] = ACTIONS(851), - [aux_sym__html_block_4_token1] = ACTIONS(851), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), - [aux_sym__html_block_6_token1] = ACTIONS(851), - [aux_sym__html_block_6_token2] = ACTIONS(849), - [sym__open_tag_html_block] = ACTIONS(849), - [sym__open_tag_html_block_newline] = ACTIONS(849), - [sym__closing_tag_html_block] = ACTIONS(849), - [sym__closing_tag_html_block_newline] = ACTIONS(849), - [sym_backslash_escape] = ACTIONS(849), - [sym_entity_reference] = ACTIONS(849), - [sym_numeric_character_reference] = ACTIONS(849), - [sym_uri_autolink] = ACTIONS(849), - [sym_email_autolink] = ACTIONS(849), - [sym__whitespace_ge_2] = ACTIONS(849), - [aux_sym__whitespace_token1] = ACTIONS(851), - [sym__word_no_digit] = ACTIONS(849), - [sym__digits] = ACTIONS(849), - [aux_sym__newline_token1] = ACTIONS(849), - [sym__block_close] = ACTIONS(849), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(849), - [sym__indented_chunk_start] = ACTIONS(849), - [sym_atx_h1_marker] = ACTIONS(849), - [sym_atx_h2_marker] = ACTIONS(849), - [sym_atx_h3_marker] = ACTIONS(849), - [sym_atx_h4_marker] = ACTIONS(849), - [sym_atx_h5_marker] = ACTIONS(849), - [sym_atx_h6_marker] = ACTIONS(849), - [sym__thematic_break] = ACTIONS(849), - [sym__list_marker_minus] = ACTIONS(849), - [sym__list_marker_plus] = ACTIONS(849), - [sym__list_marker_star] = ACTIONS(849), - [sym__list_marker_parenthesis] = ACTIONS(849), - [sym__list_marker_dot] = ACTIONS(849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), - [sym__fenced_code_block_start_backtick] = ACTIONS(849), - [sym__fenced_code_block_start_tilde] = ACTIONS(849), - [sym__blank_line_start] = ACTIONS(849), - [sym__code_span_start] = ACTIONS(849), - [sym__emphasis_open_star] = ACTIONS(849), - [sym__emphasis_open_underscore] = ACTIONS(849), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [142] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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), - }, - [143] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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), - }, - [144] = { - [aux_sym__ignore_matching_tokens] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_POUND] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PERCENT] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(857), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym__] = ACTIONS(855), - [anon_sym_BQUOTE] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [aux_sym__html_block_1_token1] = ACTIONS(855), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), - [anon_sym_LT_QMARK] = ACTIONS(857), - [aux_sym__html_block_4_token1] = ACTIONS(857), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), - [aux_sym__html_block_6_token1] = ACTIONS(857), - [aux_sym__html_block_6_token2] = ACTIONS(855), - [sym__open_tag_html_block] = ACTIONS(855), - [sym__open_tag_html_block_newline] = ACTIONS(855), - [sym__closing_tag_html_block] = ACTIONS(855), - [sym__closing_tag_html_block_newline] = ACTIONS(855), - [sym_backslash_escape] = ACTIONS(855), - [sym_entity_reference] = ACTIONS(855), - [sym_numeric_character_reference] = ACTIONS(855), - [sym_uri_autolink] = ACTIONS(855), - [sym_email_autolink] = ACTIONS(855), - [sym__whitespace_ge_2] = ACTIONS(855), - [aux_sym__whitespace_token1] = ACTIONS(857), - [sym__word_no_digit] = ACTIONS(855), - [sym__digits] = ACTIONS(855), - [aux_sym__newline_token1] = ACTIONS(855), - [sym__block_continuation] = ACTIONS(859), - [sym__block_quote_continuation] = ACTIONS(859), - [sym__block_quote_start] = ACTIONS(855), - [sym__indented_chunk_start] = ACTIONS(855), - [sym_atx_h1_marker] = ACTIONS(855), - [sym_atx_h2_marker] = ACTIONS(855), - [sym_atx_h3_marker] = ACTIONS(855), - [sym_atx_h4_marker] = ACTIONS(855), - [sym_atx_h5_marker] = ACTIONS(855), - [sym_atx_h6_marker] = ACTIONS(855), - [sym__thematic_break] = ACTIONS(855), - [sym__list_marker_minus] = ACTIONS(855), - [sym__list_marker_plus] = ACTIONS(855), - [sym__list_marker_star] = ACTIONS(855), - [sym__list_marker_parenthesis] = ACTIONS(855), - [sym__list_marker_dot] = ACTIONS(855), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_star_dont_interrupt] = ACTIONS(855), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), - [sym__fenced_code_block_start_backtick] = ACTIONS(855), - [sym__fenced_code_block_start_tilde] = ACTIONS(855), - [sym__blank_line_start] = ACTIONS(855), - [sym__code_span_start] = ACTIONS(855), - [sym__emphasis_open_star] = ACTIONS(855), - [sym__emphasis_open_underscore] = ACTIONS(855), - [sym__last_token_whitespace] = ACTIONS(859), - }, - [145] = { - [aux_sym__ignore_matching_tokens] = STATE(139), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PERCENT] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_COLON] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_BSLASH] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym__] = ACTIONS(861), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(861), - [aux_sym__html_block_1_token1] = ACTIONS(861), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), - [anon_sym_LT_QMARK] = ACTIONS(863), - [aux_sym__html_block_4_token1] = ACTIONS(863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), - [aux_sym__html_block_6_token1] = ACTIONS(863), - [aux_sym__html_block_6_token2] = ACTIONS(861), - [sym__open_tag_html_block] = ACTIONS(861), - [sym__open_tag_html_block_newline] = ACTIONS(861), - [sym__closing_tag_html_block] = ACTIONS(861), - [sym__closing_tag_html_block_newline] = ACTIONS(861), - [sym_backslash_escape] = ACTIONS(861), - [sym_entity_reference] = ACTIONS(861), - [sym_numeric_character_reference] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(861), - [sym_email_autolink] = ACTIONS(861), - [sym__whitespace_ge_2] = ACTIONS(861), - [aux_sym__whitespace_token1] = ACTIONS(863), - [sym__word_no_digit] = ACTIONS(861), - [sym__digits] = ACTIONS(861), - [aux_sym__newline_token1] = ACTIONS(861), - [sym__block_close] = ACTIONS(861), - [sym__block_continuation] = ACTIONS(865), - [sym__block_quote_continuation] = ACTIONS(865), - [sym__block_quote_start] = ACTIONS(861), - [sym__indented_chunk_start] = ACTIONS(861), - [sym_atx_h1_marker] = ACTIONS(861), - [sym_atx_h2_marker] = ACTIONS(861), - [sym_atx_h3_marker] = ACTIONS(861), - [sym_atx_h4_marker] = ACTIONS(861), - [sym_atx_h5_marker] = ACTIONS(861), - [sym_atx_h6_marker] = ACTIONS(861), - [sym__thematic_break] = ACTIONS(861), - [sym__list_marker_minus] = ACTIONS(861), - [sym__list_marker_plus] = ACTIONS(861), - [sym__list_marker_star] = ACTIONS(861), - [sym__list_marker_parenthesis] = ACTIONS(861), - [sym__list_marker_dot] = ACTIONS(861), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_star_dont_interrupt] = ACTIONS(861), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), - [sym__fenced_code_block_start_backtick] = ACTIONS(861), - [sym__fenced_code_block_start_tilde] = ACTIONS(861), - [sym__blank_line_start] = ACTIONS(861), - [sym__code_span_start] = ACTIONS(861), - [sym__emphasis_open_star] = ACTIONS(861), - [sym__emphasis_open_underscore] = ACTIONS(861), - [sym__last_token_whitespace] = ACTIONS(865), - }, - [146] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PERCENT] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_COLON] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_BSLASH] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym__] = ACTIONS(861), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(861), - [aux_sym__html_block_1_token1] = ACTIONS(861), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), - [anon_sym_LT_QMARK] = ACTIONS(863), - [aux_sym__html_block_4_token1] = ACTIONS(863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), - [aux_sym__html_block_6_token1] = ACTIONS(863), - [aux_sym__html_block_6_token2] = ACTIONS(861), - [sym__open_tag_html_block] = ACTIONS(861), - [sym__open_tag_html_block_newline] = ACTIONS(861), - [sym__closing_tag_html_block] = ACTIONS(861), - [sym__closing_tag_html_block_newline] = ACTIONS(861), - [sym_backslash_escape] = ACTIONS(861), - [sym_entity_reference] = ACTIONS(861), - [sym_numeric_character_reference] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(861), - [sym_email_autolink] = ACTIONS(861), - [sym__whitespace_ge_2] = ACTIONS(861), - [aux_sym__whitespace_token1] = ACTIONS(863), - [sym__word_no_digit] = ACTIONS(861), - [sym__digits] = ACTIONS(861), - [aux_sym__newline_token1] = ACTIONS(861), - [sym__block_close] = ACTIONS(861), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(861), - [sym__indented_chunk_start] = ACTIONS(861), - [sym_atx_h1_marker] = ACTIONS(861), - [sym_atx_h2_marker] = ACTIONS(861), - [sym_atx_h3_marker] = ACTIONS(861), - [sym_atx_h4_marker] = ACTIONS(861), - [sym_atx_h5_marker] = ACTIONS(861), - [sym_atx_h6_marker] = ACTIONS(861), - [sym__thematic_break] = ACTIONS(861), - [sym__list_marker_minus] = ACTIONS(861), - [sym__list_marker_plus] = ACTIONS(861), - [sym__list_marker_star] = ACTIONS(861), - [sym__list_marker_parenthesis] = ACTIONS(861), - [sym__list_marker_dot] = ACTIONS(861), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_star_dont_interrupt] = ACTIONS(861), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), - [sym__fenced_code_block_start_backtick] = ACTIONS(861), - [sym__fenced_code_block_start_tilde] = ACTIONS(861), - [sym__blank_line_start] = ACTIONS(861), - [sym__code_span_start] = ACTIONS(861), - [sym__emphasis_open_star] = ACTIONS(861), - [sym__emphasis_open_underscore] = ACTIONS(861), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [147] = { - [aux_sym__ignore_matching_tokens] = STATE(141), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(867), - [anon_sym_POUND] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_RPAREN] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym__] = ACTIONS(867), - [anon_sym_BQUOTE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(867), - [aux_sym__html_block_1_token1] = ACTIONS(867), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), - [anon_sym_LT_QMARK] = ACTIONS(869), - [aux_sym__html_block_4_token1] = ACTIONS(869), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), - [aux_sym__html_block_6_token1] = ACTIONS(869), - [aux_sym__html_block_6_token2] = ACTIONS(867), - [sym__open_tag_html_block] = ACTIONS(867), - [sym__open_tag_html_block_newline] = ACTIONS(867), - [sym__closing_tag_html_block] = ACTIONS(867), - [sym__closing_tag_html_block_newline] = ACTIONS(867), - [sym_backslash_escape] = ACTIONS(867), - [sym_entity_reference] = ACTIONS(867), - [sym_numeric_character_reference] = ACTIONS(867), - [sym_uri_autolink] = ACTIONS(867), - [sym_email_autolink] = ACTIONS(867), - [sym__whitespace_ge_2] = ACTIONS(867), - [aux_sym__whitespace_token1] = ACTIONS(869), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [aux_sym__newline_token1] = ACTIONS(867), - [sym__block_close] = ACTIONS(867), - [sym__block_continuation] = ACTIONS(871), - [sym__block_quote_continuation] = ACTIONS(871), - [sym__block_quote_start] = ACTIONS(867), - [sym__indented_chunk_start] = ACTIONS(867), - [sym_atx_h1_marker] = ACTIONS(867), - [sym_atx_h2_marker] = ACTIONS(867), - [sym_atx_h3_marker] = ACTIONS(867), - [sym_atx_h4_marker] = ACTIONS(867), - [sym_atx_h5_marker] = ACTIONS(867), - [sym_atx_h6_marker] = ACTIONS(867), - [sym__thematic_break] = ACTIONS(867), - [sym__list_marker_minus] = ACTIONS(867), - [sym__list_marker_plus] = ACTIONS(867), - [sym__list_marker_star] = ACTIONS(867), - [sym__list_marker_parenthesis] = ACTIONS(867), - [sym__list_marker_dot] = ACTIONS(867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), - [sym__fenced_code_block_start_backtick] = ACTIONS(867), - [sym__fenced_code_block_start_tilde] = ACTIONS(867), - [sym__blank_line_start] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(867), - [sym__emphasis_open_star] = ACTIONS(867), - [sym__emphasis_open_underscore] = ACTIONS(867), - [sym__last_token_whitespace] = ACTIONS(871), - }, - [148] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(867), - [anon_sym_POUND] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_RPAREN] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym__] = ACTIONS(867), - [anon_sym_BQUOTE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(867), - [aux_sym__html_block_1_token1] = ACTIONS(867), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), - [anon_sym_LT_QMARK] = ACTIONS(869), - [aux_sym__html_block_4_token1] = ACTIONS(869), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), - [aux_sym__html_block_6_token1] = ACTIONS(869), - [aux_sym__html_block_6_token2] = ACTIONS(867), - [sym__open_tag_html_block] = ACTIONS(867), - [sym__open_tag_html_block_newline] = ACTIONS(867), - [sym__closing_tag_html_block] = ACTIONS(867), - [sym__closing_tag_html_block_newline] = ACTIONS(867), - [sym_backslash_escape] = ACTIONS(867), - [sym_entity_reference] = ACTIONS(867), - [sym_numeric_character_reference] = ACTIONS(867), - [sym_uri_autolink] = ACTIONS(867), - [sym_email_autolink] = ACTIONS(867), - [sym__whitespace_ge_2] = ACTIONS(867), - [aux_sym__whitespace_token1] = ACTIONS(869), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [aux_sym__newline_token1] = ACTIONS(867), - [sym__block_close] = ACTIONS(867), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(867), - [sym__indented_chunk_start] = ACTIONS(867), - [sym_atx_h1_marker] = ACTIONS(867), - [sym_atx_h2_marker] = ACTIONS(867), - [sym_atx_h3_marker] = ACTIONS(867), - [sym_atx_h4_marker] = ACTIONS(867), - [sym_atx_h5_marker] = ACTIONS(867), - [sym_atx_h6_marker] = ACTIONS(867), - [sym__thematic_break] = ACTIONS(867), - [sym__list_marker_minus] = ACTIONS(867), - [sym__list_marker_plus] = ACTIONS(867), - [sym__list_marker_star] = ACTIONS(867), - [sym__list_marker_parenthesis] = ACTIONS(867), - [sym__list_marker_dot] = ACTIONS(867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), - [sym__fenced_code_block_start_backtick] = ACTIONS(867), - [sym__fenced_code_block_start_tilde] = ACTIONS(867), - [sym__blank_line_start] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(867), - [sym__emphasis_open_star] = ACTIONS(867), - [sym__emphasis_open_underscore] = ACTIONS(867), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [149] = { - [sym__soft_line_break] = STATE(889), - [sym__paragraph_end_newline] = STATE(381), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(90), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(873), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), - [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(35), - [sym__digits] = ACTIONS(35), - [aux_sym__newline_token1] = ACTIONS(887), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), - }, - [150] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_POUND] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PERCENT] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(857), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym__] = ACTIONS(855), - [anon_sym_BQUOTE] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [aux_sym__html_block_1_token1] = ACTIONS(855), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), - [anon_sym_LT_QMARK] = ACTIONS(857), - [aux_sym__html_block_4_token1] = ACTIONS(857), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), - [aux_sym__html_block_6_token1] = ACTIONS(857), - [aux_sym__html_block_6_token2] = ACTIONS(855), - [sym__open_tag_html_block] = ACTIONS(855), - [sym__open_tag_html_block_newline] = ACTIONS(855), - [sym__closing_tag_html_block] = ACTIONS(855), - [sym__closing_tag_html_block_newline] = ACTIONS(855), - [sym_backslash_escape] = ACTIONS(855), - [sym_entity_reference] = ACTIONS(855), - [sym_numeric_character_reference] = ACTIONS(855), - [sym_uri_autolink] = ACTIONS(855), - [sym_email_autolink] = ACTIONS(855), - [sym__whitespace_ge_2] = ACTIONS(855), - [aux_sym__whitespace_token1] = ACTIONS(857), - [sym__word_no_digit] = ACTIONS(855), - [sym__digits] = ACTIONS(855), - [aux_sym__newline_token1] = ACTIONS(855), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(855), - [sym__indented_chunk_start] = ACTIONS(855), - [sym_atx_h1_marker] = ACTIONS(855), - [sym_atx_h2_marker] = ACTIONS(855), - [sym_atx_h3_marker] = ACTIONS(855), - [sym_atx_h4_marker] = ACTIONS(855), - [sym_atx_h5_marker] = ACTIONS(855), - [sym_atx_h6_marker] = ACTIONS(855), - [sym__thematic_break] = ACTIONS(855), - [sym__list_marker_minus] = ACTIONS(855), - [sym__list_marker_plus] = ACTIONS(855), - [sym__list_marker_star] = ACTIONS(855), - [sym__list_marker_parenthesis] = ACTIONS(855), - [sym__list_marker_dot] = ACTIONS(855), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_star_dont_interrupt] = ACTIONS(855), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), - [sym__fenced_code_block_start_backtick] = ACTIONS(855), - [sym__fenced_code_block_start_tilde] = ACTIONS(855), - [sym__blank_line_start] = ACTIONS(855), - [sym__code_span_start] = ACTIONS(855), - [sym__emphasis_open_star] = ACTIONS(855), - [sym__emphasis_open_underscore] = ACTIONS(855), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [151] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_BSLASH] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym__] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_TILDE] = ACTIONS(399), - [aux_sym__html_block_1_token1] = ACTIONS(399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(401), - [anon_sym_LT_QMARK] = ACTIONS(401), - [aux_sym__html_block_4_token1] = ACTIONS(401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(399), - [aux_sym__html_block_6_token1] = ACTIONS(401), - [aux_sym__html_block_6_token2] = ACTIONS(399), - [sym__open_tag_html_block] = ACTIONS(399), - [sym__open_tag_html_block_newline] = ACTIONS(399), - [sym__closing_tag_html_block] = ACTIONS(399), - [sym__closing_tag_html_block_newline] = ACTIONS(399), - [sym_backslash_escape] = ACTIONS(399), - [sym_entity_reference] = ACTIONS(399), - [sym_numeric_character_reference] = ACTIONS(399), - [sym_uri_autolink] = ACTIONS(399), - [sym_email_autolink] = ACTIONS(399), - [sym__whitespace_ge_2] = ACTIONS(399), - [aux_sym__whitespace_token1] = ACTIONS(401), - [sym__word_no_digit] = ACTIONS(399), - [sym__digits] = ACTIONS(399), - [aux_sym__newline_token1] = ACTIONS(399), - [sym__block_close] = ACTIONS(399), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(399), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(399), - [sym_atx_h2_marker] = ACTIONS(399), - [sym_atx_h3_marker] = ACTIONS(399), - [sym_atx_h4_marker] = ACTIONS(399), - [sym_atx_h5_marker] = ACTIONS(399), - [sym_atx_h6_marker] = ACTIONS(399), - [sym__thematic_break] = ACTIONS(399), - [sym__list_marker_minus] = ACTIONS(399), - [sym__list_marker_plus] = ACTIONS(399), - [sym__list_marker_star] = ACTIONS(399), - [sym__list_marker_parenthesis] = ACTIONS(399), - [sym__list_marker_dot] = ACTIONS(399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(399), - [sym__fenced_code_block_start_backtick] = ACTIONS(399), - [sym__fenced_code_block_start_tilde] = ACTIONS(399), - [sym__blank_line_start] = ACTIONS(399), - [sym__code_span_start] = ACTIONS(399), - [sym__emphasis_open_star] = ACTIONS(399), - [sym__emphasis_open_underscore] = ACTIONS(399), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [152] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(791), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__emphasis_close_underscore] = ACTIONS(889), - }, - [153] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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(115), - }, - [154] = { - [aux_sym__ignore_matching_tokens] = STATE(173), + [aux_sym__ignore_matching_tokens] = STATE(205), [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_BANG] = ACTIONS(895), [anon_sym_DQUOTE] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(895), @@ -46103,9 +44077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(895), [anon_sym__] = ACTIONS(895), [anon_sym_BQUOTE] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(895), [aux_sym__html_block_1_token1] = ACTIONS(895), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(897), @@ -46128,8 +44100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(895), [sym__digits] = ACTIONS(895), [aux_sym__newline_token1] = ACTIONS(895), - [sym__block_continuation] = ACTIONS(899), - [sym__block_quote_continuation] = ACTIONS(899), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), [sym__block_quote_start] = ACTIONS(895), [sym__indented_chunk_start] = ACTIONS(895), [sym_atx_h1_marker] = ACTIONS(895), @@ -46155,351 +44127,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(895), [sym__emphasis_open_star] = ACTIONS(895), [sym__emphasis_open_underscore] = ACTIONS(895), - [sym__last_token_whitespace] = ACTIONS(899), + [sym__last_token_whitespace] = ACTIONS(93), }, - [155] = { - [aux_sym__ignore_matching_tokens] = STATE(146), - [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(901), - [sym__block_quote_continuation] = ACTIONS(901), - [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(901), + [131] = { + [aux_sym__ignore_matching_tokens] = STATE(239), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_PERCENT] = ACTIONS(899), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BSLASH] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym__] = ACTIONS(899), + [anon_sym_BQUOTE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_TILDE] = ACTIONS(899), + [aux_sym__html_block_1_token1] = ACTIONS(899), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(901), + [anon_sym_LT_QMARK] = ACTIONS(901), + [aux_sym__html_block_4_token1] = ACTIONS(901), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(899), + [aux_sym__html_block_6_token1] = ACTIONS(901), + [aux_sym__html_block_6_token2] = ACTIONS(899), + [sym__open_tag_html_block] = ACTIONS(899), + [sym__open_tag_html_block_newline] = ACTIONS(899), + [sym__closing_tag_html_block] = ACTIONS(899), + [sym__closing_tag_html_block_newline] = ACTIONS(899), + [sym_backslash_escape] = ACTIONS(899), + [sym_entity_reference] = ACTIONS(899), + [sym_numeric_character_reference] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(899), + [sym_email_autolink] = ACTIONS(899), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(899), + [sym__digits] = ACTIONS(899), + [aux_sym__newline_token1] = ACTIONS(899), + [sym__block_close] = ACTIONS(899), + [sym__block_continuation] = ACTIONS(903), + [sym__block_quote_continuation] = ACTIONS(903), + [sym__block_quote_start] = ACTIONS(899), + [sym__indented_chunk_start] = ACTIONS(899), + [sym_atx_h1_marker] = ACTIONS(899), + [sym_atx_h2_marker] = ACTIONS(899), + [sym_atx_h3_marker] = ACTIONS(899), + [sym_atx_h4_marker] = ACTIONS(899), + [sym_atx_h5_marker] = ACTIONS(899), + [sym_atx_h6_marker] = ACTIONS(899), + [sym__thematic_break] = ACTIONS(899), + [sym__list_marker_minus] = ACTIONS(899), + [sym__list_marker_plus] = ACTIONS(899), + [sym__list_marker_star] = ACTIONS(899), + [sym__list_marker_parenthesis] = ACTIONS(899), + [sym__list_marker_dot] = ACTIONS(899), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(899), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(899), + [sym__list_marker_star_dont_interrupt] = ACTIONS(899), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(899), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(899), + [sym__fenced_code_block_start_backtick] = ACTIONS(899), + [sym__fenced_code_block_start_tilde] = ACTIONS(899), + [sym__blank_line_start] = ACTIONS(899), + [sym__code_span_start] = ACTIONS(899), + [sym__emphasis_open_star] = ACTIONS(899), + [sym__emphasis_open_underscore] = ACTIONS(899), + [sym__last_token_whitespace] = ACTIONS(903), }, - [156] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_BSLASH] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym__] = ACTIONS(903), - [anon_sym_BQUOTE] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [aux_sym__html_block_1_token1] = ACTIONS(903), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(905), - [anon_sym_LT_QMARK] = ACTIONS(905), - [aux_sym__html_block_4_token1] = ACTIONS(905), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(903), - [aux_sym__html_block_6_token1] = ACTIONS(905), - [aux_sym__html_block_6_token2] = ACTIONS(903), - [sym__open_tag_html_block] = ACTIONS(903), - [sym__open_tag_html_block_newline] = ACTIONS(903), - [sym__closing_tag_html_block] = ACTIONS(903), - [sym__closing_tag_html_block_newline] = ACTIONS(903), - [sym_backslash_escape] = ACTIONS(903), - [sym_entity_reference] = ACTIONS(903), - [sym_numeric_character_reference] = ACTIONS(903), - [sym_uri_autolink] = ACTIONS(903), - [sym_email_autolink] = ACTIONS(903), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(903), - [sym__digits] = ACTIONS(903), - [aux_sym__newline_token1] = ACTIONS(903), - [sym__block_close] = ACTIONS(903), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(903), - [sym__indented_chunk_start] = ACTIONS(903), - [sym_atx_h1_marker] = ACTIONS(903), - [sym_atx_h2_marker] = ACTIONS(903), - [sym_atx_h3_marker] = ACTIONS(903), - [sym_atx_h4_marker] = ACTIONS(903), - [sym_atx_h5_marker] = ACTIONS(903), - [sym_atx_h6_marker] = ACTIONS(903), - [sym__thematic_break] = ACTIONS(903), - [sym__list_marker_minus] = ACTIONS(903), - [sym__list_marker_plus] = ACTIONS(903), - [sym__list_marker_star] = ACTIONS(903), - [sym__list_marker_parenthesis] = ACTIONS(903), - [sym__list_marker_dot] = ACTIONS(903), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_star_dont_interrupt] = ACTIONS(903), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(903), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(903), - [sym__fenced_code_block_start_backtick] = ACTIONS(903), - [sym__fenced_code_block_start_tilde] = ACTIONS(903), - [sym__blank_line_start] = ACTIONS(903), - [sym__code_span_start] = ACTIONS(903), - [sym__emphasis_open_star] = ACTIONS(903), - [sym__emphasis_open_underscore] = ACTIONS(903), - [sym__last_token_whitespace] = ACTIONS(115), + [132] = { + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(884), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [sym_uri_autolink] = ACTIONS(884), + [sym_email_autolink] = ACTIONS(884), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(884), + [sym__digits] = ACTIONS(884), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__emphasis_close_underscore] = ACTIONS(905), }, - [157] = { - [aux_sym__ignore_matching_tokens] = STATE(148), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_BSLASH] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym__] = ACTIONS(903), - [anon_sym_BQUOTE] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [aux_sym__html_block_1_token1] = ACTIONS(903), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(905), - [anon_sym_LT_QMARK] = ACTIONS(905), - [aux_sym__html_block_4_token1] = ACTIONS(905), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(903), - [aux_sym__html_block_6_token1] = ACTIONS(905), - [aux_sym__html_block_6_token2] = ACTIONS(903), - [sym__open_tag_html_block] = ACTIONS(903), - [sym__open_tag_html_block_newline] = ACTIONS(903), - [sym__closing_tag_html_block] = ACTIONS(903), - [sym__closing_tag_html_block_newline] = ACTIONS(903), - [sym_backslash_escape] = ACTIONS(903), - [sym_entity_reference] = ACTIONS(903), - [sym_numeric_character_reference] = ACTIONS(903), - [sym_uri_autolink] = ACTIONS(903), - [sym_email_autolink] = ACTIONS(903), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(903), - [sym__digits] = ACTIONS(903), - [aux_sym__newline_token1] = ACTIONS(903), - [sym__block_close] = ACTIONS(903), - [sym__block_continuation] = ACTIONS(907), - [sym__block_quote_continuation] = ACTIONS(907), - [sym__block_quote_start] = ACTIONS(903), - [sym__indented_chunk_start] = ACTIONS(903), - [sym_atx_h1_marker] = ACTIONS(903), - [sym_atx_h2_marker] = ACTIONS(903), - [sym_atx_h3_marker] = ACTIONS(903), - [sym_atx_h4_marker] = ACTIONS(903), - [sym_atx_h5_marker] = ACTIONS(903), - [sym_atx_h6_marker] = ACTIONS(903), - [sym__thematic_break] = ACTIONS(903), - [sym__list_marker_minus] = ACTIONS(903), - [sym__list_marker_plus] = ACTIONS(903), - [sym__list_marker_star] = ACTIONS(903), - [sym__list_marker_parenthesis] = ACTIONS(903), - [sym__list_marker_dot] = ACTIONS(903), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_star_dont_interrupt] = ACTIONS(903), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(903), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(903), - [sym__fenced_code_block_start_backtick] = ACTIONS(903), - [sym__fenced_code_block_start_tilde] = ACTIONS(903), - [sym__blank_line_start] = ACTIONS(903), - [sym__code_span_start] = ACTIONS(903), - [sym__emphasis_open_star] = ACTIONS(903), - [sym__emphasis_open_underscore] = ACTIONS(903), - [sym__last_token_whitespace] = ACTIONS(907), + [133] = { + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(778), + [sym_entity_reference] = ACTIONS(778), + [sym_numeric_character_reference] = ACTIONS(778), + [sym_uri_autolink] = ACTIONS(778), + [sym_email_autolink] = ACTIONS(778), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(778), + [sym__digits] = ACTIONS(778), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__emphasis_close_star] = ACTIONS(907), }, - [158] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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(115), - }, - [159] = { - [aux_sym__ignore_matching_tokens] = STATE(203), + [134] = { + [aux_sym__ignore_matching_tokens] = STATE(270), [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_BANG] = ACTIONS(895), [anon_sym_DQUOTE] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(895), @@ -46528,9 +44417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(895), [anon_sym__] = ACTIONS(895), [anon_sym_BQUOTE] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(895), [aux_sym__html_block_1_token1] = ACTIONS(895), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(897), @@ -46553,8 +44440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(895), [sym__digits] = ACTIONS(895), [aux_sym__newline_token1] = ACTIONS(895), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_continuation] = ACTIONS(909), + [sym__block_quote_continuation] = ACTIONS(909), [sym__block_quote_start] = ACTIONS(895), [sym__indented_chunk_start] = ACTIONS(895), [sym_atx_h1_marker] = ACTIONS(895), @@ -46580,96 +44467,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(895), [sym__emphasis_open_star] = ACTIONS(895), [sym__emphasis_open_underscore] = ACTIONS(895), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [160] = { - [aux_sym__ignore_matching_tokens] = STATE(151), - [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(909), - [sym__block_quote_continuation] = ACTIONS(909), - [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(909), }, - [161] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(911), + [135] = { + [aux_sym__ignore_matching_tokens] = STATE(245), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DQUOTE] = ACTIONS(911), [anon_sym_POUND] = ACTIONS(911), @@ -46698,9 +44501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(911), [anon_sym__] = ACTIONS(911), [anon_sym_BQUOTE] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), [anon_sym_TILDE] = ACTIONS(911), [aux_sym__html_block_1_token1] = ACTIONS(911), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(913), @@ -46723,6 +44524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(911), [sym__digits] = ACTIONS(911), [aux_sym__newline_token1] = ACTIONS(911), + [sym__block_close] = ACTIONS(911), + [sym__block_continuation] = ACTIONS(915), + [sym__block_quote_continuation] = ACTIONS(915), [sym__block_quote_start] = ACTIONS(911), [sym__indented_chunk_start] = ACTIONS(911), [sym_atx_h1_marker] = ACTIONS(911), @@ -46731,8 +44535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(911), [sym_atx_h5_marker] = ACTIONS(911), [sym_atx_h6_marker] = ACTIONS(911), - [sym_setext_h1_underline] = ACTIONS(911), - [sym_setext_h2_underline] = ACTIONS(911), [sym__thematic_break] = ACTIONS(911), [sym__list_marker_minus] = ACTIONS(911), [sym__list_marker_plus] = ACTIONS(911), @@ -46747,5708 +44549,2225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_backtick] = ACTIONS(911), [sym__fenced_code_block_start_tilde] = ACTIONS(911), [sym__blank_line_start] = ACTIONS(911), - [sym__split_token] = ACTIONS(915), [sym__code_span_start] = ACTIONS(911), [sym__emphasis_open_star] = ACTIONS(911), [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__last_token_whitespace] = ACTIONS(915), }, - [162] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_PERCENT] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(918), - [anon_sym_COLON] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_QMARK] = ACTIONS(918), - [anon_sym_AT] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_BSLASH] = ACTIONS(920), - [anon_sym_RBRACK] = ACTIONS(918), - [anon_sym_CARET] = ACTIONS(918), - [anon_sym__] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [aux_sym__html_block_1_token1] = ACTIONS(918), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(920), - [anon_sym_LT_QMARK] = ACTIONS(920), - [aux_sym__html_block_4_token1] = ACTIONS(920), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(918), - [aux_sym__html_block_6_token1] = ACTIONS(920), - [aux_sym__html_block_6_token2] = ACTIONS(918), - [sym__open_tag_html_block] = ACTIONS(918), - [sym__open_tag_html_block_newline] = ACTIONS(918), - [sym__closing_tag_html_block] = ACTIONS(918), - [sym__closing_tag_html_block_newline] = ACTIONS(918), - [sym_backslash_escape] = ACTIONS(918), - [sym_entity_reference] = ACTIONS(918), - [sym_numeric_character_reference] = ACTIONS(918), - [sym_uri_autolink] = ACTIONS(918), - [sym_email_autolink] = ACTIONS(918), - [sym__whitespace_ge_2] = ACTIONS(918), - [aux_sym__whitespace_token1] = ACTIONS(920), - [sym__word_no_digit] = ACTIONS(918), - [sym__digits] = ACTIONS(918), - [aux_sym__newline_token1] = ACTIONS(918), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(918), - [sym__indented_chunk_start] = ACTIONS(918), - [sym_atx_h1_marker] = ACTIONS(918), - [sym_atx_h2_marker] = ACTIONS(918), - [sym_atx_h3_marker] = ACTIONS(918), - [sym_atx_h4_marker] = ACTIONS(918), - [sym_atx_h5_marker] = ACTIONS(918), - [sym_atx_h6_marker] = ACTIONS(918), - [sym__thematic_break] = ACTIONS(918), - [sym__list_marker_minus] = ACTIONS(918), - [sym__list_marker_plus] = ACTIONS(918), - [sym__list_marker_star] = ACTIONS(918), - [sym__list_marker_parenthesis] = ACTIONS(918), - [sym__list_marker_dot] = ACTIONS(918), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(918), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(918), - [sym__list_marker_star_dont_interrupt] = ACTIONS(918), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(918), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(918), - [sym__fenced_code_block_start_backtick] = ACTIONS(918), - [sym__fenced_code_block_start_tilde] = ACTIONS(918), - [sym__blank_line_start] = ACTIONS(918), - [sym__code_span_start] = ACTIONS(918), - [sym__emphasis_open_star] = ACTIONS(918), - [sym__emphasis_open_underscore] = ACTIONS(918), - [sym__last_token_whitespace] = ACTIONS(111), + [136] = { + [aux_sym__ignore_matching_tokens] = STATE(247), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = 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_PIPE] = 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(921), + [sym__block_quote_continuation] = ACTIONS(921), + [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(921), }, - [163] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_QMARK] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [anon_sym_RBRACK] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym__] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [aux_sym__html_block_1_token1] = ACTIONS(922), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(924), - [anon_sym_LT_QMARK] = ACTIONS(924), - [aux_sym__html_block_4_token1] = ACTIONS(924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(922), - [aux_sym__html_block_6_token1] = ACTIONS(924), - [aux_sym__html_block_6_token2] = ACTIONS(922), - [sym__open_tag_html_block] = ACTIONS(922), - [sym__open_tag_html_block_newline] = ACTIONS(922), - [sym__closing_tag_html_block] = ACTIONS(922), - [sym__closing_tag_html_block_newline] = ACTIONS(922), - [sym_backslash_escape] = ACTIONS(922), - [sym_entity_reference] = ACTIONS(922), - [sym_numeric_character_reference] = ACTIONS(922), - [sym_uri_autolink] = ACTIONS(922), - [sym_email_autolink] = ACTIONS(922), - [sym__whitespace_ge_2] = ACTIONS(922), - [aux_sym__whitespace_token1] = ACTIONS(924), - [sym__word_no_digit] = ACTIONS(922), - [sym__digits] = ACTIONS(922), - [aux_sym__newline_token1] = ACTIONS(922), - [sym__block_close] = ACTIONS(922), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(922), - [sym__indented_chunk_start] = ACTIONS(922), - [sym_atx_h1_marker] = ACTIONS(922), - [sym_atx_h2_marker] = ACTIONS(922), - [sym_atx_h3_marker] = ACTIONS(922), - [sym_atx_h4_marker] = ACTIONS(922), - [sym_atx_h5_marker] = ACTIONS(922), - [sym_atx_h6_marker] = ACTIONS(922), - [sym__thematic_break] = ACTIONS(922), - [sym__list_marker_minus] = ACTIONS(922), - [sym__list_marker_plus] = ACTIONS(922), - [sym__list_marker_star] = ACTIONS(922), - [sym__list_marker_parenthesis] = ACTIONS(922), - [sym__list_marker_dot] = ACTIONS(922), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(922), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(922), - [sym__list_marker_star_dont_interrupt] = ACTIONS(922), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(922), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(922), - [sym__fenced_code_block_start_backtick] = ACTIONS(922), - [sym__fenced_code_block_start_tilde] = ACTIONS(922), - [sym__blank_line_start] = ACTIONS(922), - [sym__code_span_start] = ACTIONS(922), - [sym__emphasis_open_star] = ACTIONS(922), - [sym__emphasis_open_underscore] = ACTIONS(922), - [sym__last_token_whitespace] = ACTIONS(115), + [137] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_BSLASH] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym__] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [aux_sym__html_block_1_token1] = ACTIONS(923), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(925), + [anon_sym_LT_QMARK] = ACTIONS(925), + [aux_sym__html_block_4_token1] = ACTIONS(925), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(923), + [aux_sym__html_block_6_token1] = ACTIONS(925), + [aux_sym__html_block_6_token2] = ACTIONS(923), + [sym__open_tag_html_block] = ACTIONS(923), + [sym__open_tag_html_block_newline] = ACTIONS(923), + [sym__closing_tag_html_block] = ACTIONS(923), + [sym__closing_tag_html_block_newline] = ACTIONS(923), + [sym_backslash_escape] = ACTIONS(923), + [sym_entity_reference] = ACTIONS(923), + [sym_numeric_character_reference] = ACTIONS(923), + [sym_uri_autolink] = ACTIONS(923), + [sym_email_autolink] = ACTIONS(923), + [sym__whitespace_ge_2] = ACTIONS(923), + [aux_sym__whitespace_token1] = ACTIONS(925), + [sym__word_no_digit] = ACTIONS(923), + [sym__digits] = ACTIONS(923), + [aux_sym__newline_token1] = ACTIONS(923), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(923), + [sym__indented_chunk_start] = ACTIONS(923), + [sym_atx_h1_marker] = ACTIONS(923), + [sym_atx_h2_marker] = ACTIONS(923), + [sym_atx_h3_marker] = ACTIONS(923), + [sym_atx_h4_marker] = ACTIONS(923), + [sym_atx_h5_marker] = ACTIONS(923), + [sym_atx_h6_marker] = ACTIONS(923), + [sym__thematic_break] = ACTIONS(923), + [sym__list_marker_minus] = ACTIONS(923), + [sym__list_marker_plus] = ACTIONS(923), + [sym__list_marker_star] = ACTIONS(923), + [sym__list_marker_parenthesis] = ACTIONS(923), + [sym__list_marker_dot] = ACTIONS(923), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_star_dont_interrupt] = ACTIONS(923), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(923), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(923), + [sym__fenced_code_block_start_backtick] = ACTIONS(923), + [sym__fenced_code_block_start_tilde] = ACTIONS(923), + [sym__blank_line_start] = ACTIONS(923), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(923), + [sym__emphasis_open_underscore] = ACTIONS(923), + [sym__last_token_whitespace] = ACTIONS(93), }, - [164] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_COLON] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_BSLASH] = ACTIONS(928), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(926), - [anon_sym__] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [aux_sym__html_block_1_token1] = ACTIONS(926), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(928), - [anon_sym_LT_QMARK] = ACTIONS(928), - [aux_sym__html_block_4_token1] = ACTIONS(928), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(926), - [aux_sym__html_block_6_token1] = ACTIONS(928), - [aux_sym__html_block_6_token2] = ACTIONS(926), - [sym__open_tag_html_block] = ACTIONS(926), - [sym__open_tag_html_block_newline] = ACTIONS(926), - [sym__closing_tag_html_block] = ACTIONS(926), - [sym__closing_tag_html_block_newline] = ACTIONS(926), - [sym_backslash_escape] = ACTIONS(926), - [sym_entity_reference] = ACTIONS(926), - [sym_numeric_character_reference] = ACTIONS(926), - [sym_uri_autolink] = ACTIONS(926), - [sym_email_autolink] = ACTIONS(926), - [sym__whitespace_ge_2] = ACTIONS(926), - [aux_sym__whitespace_token1] = ACTIONS(928), - [sym__word_no_digit] = ACTIONS(926), - [sym__digits] = ACTIONS(926), - [aux_sym__newline_token1] = ACTIONS(926), - [sym__block_close] = ACTIONS(926), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(926), - [sym__indented_chunk_start] = ACTIONS(926), - [sym_atx_h1_marker] = ACTIONS(926), - [sym_atx_h2_marker] = ACTIONS(926), - [sym_atx_h3_marker] = ACTIONS(926), - [sym_atx_h4_marker] = ACTIONS(926), - [sym_atx_h5_marker] = ACTIONS(926), - [sym_atx_h6_marker] = ACTIONS(926), - [sym__thematic_break] = ACTIONS(926), - [sym__list_marker_minus] = ACTIONS(926), - [sym__list_marker_plus] = ACTIONS(926), - [sym__list_marker_star] = ACTIONS(926), - [sym__list_marker_parenthesis] = ACTIONS(926), - [sym__list_marker_dot] = ACTIONS(926), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_star_dont_interrupt] = ACTIONS(926), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(926), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(926), - [sym__fenced_code_block_start_backtick] = ACTIONS(926), - [sym__fenced_code_block_start_tilde] = ACTIONS(926), - [sym__blank_line_start] = ACTIONS(926), - [sym__code_span_start] = ACTIONS(926), - [sym__emphasis_open_star] = ACTIONS(926), - [sym__emphasis_open_underscore] = ACTIONS(926), - [sym__last_token_whitespace] = ACTIONS(115), + [138] = { + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(778), + [sym_entity_reference] = ACTIONS(778), + [sym_numeric_character_reference] = ACTIONS(778), + [sym_uri_autolink] = ACTIONS(778), + [sym_email_autolink] = ACTIONS(778), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(778), + [sym__digits] = ACTIONS(778), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__emphasis_close_star] = ACTIONS(927), }, - [165] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_QMARK] = ACTIONS(930), - [anon_sym_AT] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_BSLASH] = ACTIONS(932), - [anon_sym_RBRACK] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym__] = ACTIONS(930), - [anon_sym_BQUOTE] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [aux_sym__html_block_1_token1] = ACTIONS(930), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(932), - [anon_sym_LT_QMARK] = ACTIONS(932), - [aux_sym__html_block_4_token1] = ACTIONS(932), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(930), - [aux_sym__html_block_6_token1] = ACTIONS(932), - [aux_sym__html_block_6_token2] = ACTIONS(930), - [sym__open_tag_html_block] = ACTIONS(930), - [sym__open_tag_html_block_newline] = ACTIONS(930), - [sym__closing_tag_html_block] = ACTIONS(930), - [sym__closing_tag_html_block_newline] = ACTIONS(930), - [sym_backslash_escape] = ACTIONS(930), - [sym_entity_reference] = ACTIONS(930), - [sym_numeric_character_reference] = ACTIONS(930), - [sym_uri_autolink] = ACTIONS(930), - [sym_email_autolink] = ACTIONS(930), - [sym__whitespace_ge_2] = ACTIONS(930), - [aux_sym__whitespace_token1] = ACTIONS(932), - [sym__word_no_digit] = ACTIONS(930), - [sym__digits] = ACTIONS(930), - [aux_sym__newline_token1] = ACTIONS(930), - [sym__block_close] = ACTIONS(930), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(930), - [sym__indented_chunk_start] = ACTIONS(930), - [sym_atx_h1_marker] = ACTIONS(930), - [sym_atx_h2_marker] = ACTIONS(930), - [sym_atx_h3_marker] = ACTIONS(930), - [sym_atx_h4_marker] = ACTIONS(930), - [sym_atx_h5_marker] = ACTIONS(930), - [sym_atx_h6_marker] = ACTIONS(930), - [sym__thematic_break] = ACTIONS(930), - [sym__list_marker_minus] = ACTIONS(930), - [sym__list_marker_plus] = ACTIONS(930), - [sym__list_marker_star] = ACTIONS(930), - [sym__list_marker_parenthesis] = ACTIONS(930), - [sym__list_marker_dot] = ACTIONS(930), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(930), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(930), - [sym__list_marker_star_dont_interrupt] = ACTIONS(930), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(930), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(930), - [sym__fenced_code_block_start_backtick] = ACTIONS(930), - [sym__fenced_code_block_start_tilde] = ACTIONS(930), - [sym__blank_line_start] = ACTIONS(930), - [sym__code_span_start] = ACTIONS(930), - [sym__emphasis_open_star] = ACTIONS(930), - [sym__emphasis_open_underscore] = ACTIONS(930), - [sym__last_token_whitespace] = ACTIONS(115), + [139] = { + [aux_sym__ignore_matching_tokens] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_BSLASH] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym__] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [aux_sym__html_block_1_token1] = ACTIONS(923), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(925), + [anon_sym_LT_QMARK] = ACTIONS(925), + [aux_sym__html_block_4_token1] = ACTIONS(925), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(923), + [aux_sym__html_block_6_token1] = ACTIONS(925), + [aux_sym__html_block_6_token2] = ACTIONS(923), + [sym__open_tag_html_block] = ACTIONS(923), + [sym__open_tag_html_block_newline] = ACTIONS(923), + [sym__closing_tag_html_block] = ACTIONS(923), + [sym__closing_tag_html_block_newline] = ACTIONS(923), + [sym_backslash_escape] = ACTIONS(923), + [sym_entity_reference] = ACTIONS(923), + [sym_numeric_character_reference] = ACTIONS(923), + [sym_uri_autolink] = ACTIONS(923), + [sym_email_autolink] = ACTIONS(923), + [sym__whitespace_ge_2] = ACTIONS(923), + [aux_sym__whitespace_token1] = ACTIONS(925), + [sym__word_no_digit] = ACTIONS(923), + [sym__digits] = ACTIONS(923), + [aux_sym__newline_token1] = ACTIONS(923), + [sym__block_continuation] = ACTIONS(929), + [sym__block_quote_continuation] = ACTIONS(929), + [sym__block_quote_start] = ACTIONS(923), + [sym__indented_chunk_start] = ACTIONS(923), + [sym_atx_h1_marker] = ACTIONS(923), + [sym_atx_h2_marker] = ACTIONS(923), + [sym_atx_h3_marker] = ACTIONS(923), + [sym_atx_h4_marker] = ACTIONS(923), + [sym_atx_h5_marker] = ACTIONS(923), + [sym_atx_h6_marker] = ACTIONS(923), + [sym__thematic_break] = ACTIONS(923), + [sym__list_marker_minus] = ACTIONS(923), + [sym__list_marker_plus] = ACTIONS(923), + [sym__list_marker_star] = ACTIONS(923), + [sym__list_marker_parenthesis] = ACTIONS(923), + [sym__list_marker_dot] = ACTIONS(923), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_star_dont_interrupt] = ACTIONS(923), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(923), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(923), + [sym__fenced_code_block_start_backtick] = ACTIONS(923), + [sym__fenced_code_block_start_tilde] = ACTIONS(923), + [sym__blank_line_start] = ACTIONS(923), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(923), + [sym__emphasis_open_underscore] = ACTIONS(923), + [sym__last_token_whitespace] = ACTIONS(929), }, - [166] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(936), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(934), - [anon_sym_AT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_BSLASH] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_CARET] = ACTIONS(934), - [anon_sym__] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [aux_sym__html_block_1_token1] = ACTIONS(934), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(936), - [anon_sym_LT_QMARK] = ACTIONS(936), - [aux_sym__html_block_4_token1] = ACTIONS(936), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(934), - [aux_sym__html_block_6_token1] = ACTIONS(936), - [aux_sym__html_block_6_token2] = ACTIONS(934), - [sym__open_tag_html_block] = ACTIONS(934), - [sym__open_tag_html_block_newline] = ACTIONS(934), - [sym__closing_tag_html_block] = ACTIONS(934), - [sym__closing_tag_html_block_newline] = ACTIONS(934), - [sym_backslash_escape] = ACTIONS(934), - [sym_entity_reference] = ACTIONS(934), - [sym_numeric_character_reference] = ACTIONS(934), - [sym_uri_autolink] = ACTIONS(934), - [sym_email_autolink] = ACTIONS(934), - [sym__whitespace_ge_2] = ACTIONS(934), - [aux_sym__whitespace_token1] = ACTIONS(936), - [sym__word_no_digit] = ACTIONS(934), - [sym__digits] = ACTIONS(934), - [aux_sym__newline_token1] = ACTIONS(934), - [sym__block_close] = ACTIONS(934), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(934), - [sym__indented_chunk_start] = ACTIONS(934), - [sym_atx_h1_marker] = ACTIONS(934), - [sym_atx_h2_marker] = ACTIONS(934), - [sym_atx_h3_marker] = ACTIONS(934), - [sym_atx_h4_marker] = ACTIONS(934), - [sym_atx_h5_marker] = ACTIONS(934), - [sym_atx_h6_marker] = ACTIONS(934), - [sym__thematic_break] = ACTIONS(934), - [sym__list_marker_minus] = ACTIONS(934), - [sym__list_marker_plus] = ACTIONS(934), - [sym__list_marker_star] = ACTIONS(934), - [sym__list_marker_parenthesis] = ACTIONS(934), - [sym__list_marker_dot] = ACTIONS(934), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(934), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(934), - [sym__list_marker_star_dont_interrupt] = ACTIONS(934), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(934), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(934), - [sym__fenced_code_block_start_backtick] = ACTIONS(934), - [sym__fenced_code_block_start_tilde] = ACTIONS(934), - [sym__blank_line_start] = ACTIONS(934), - [sym__code_span_start] = ACTIONS(934), - [sym__emphasis_open_star] = ACTIONS(934), - [sym__emphasis_open_underscore] = ACTIONS(934), - [sym__last_token_whitespace] = ACTIONS(115), + [140] = { + [aux_sym__ignore_matching_tokens] = STATE(275), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_BSLASH] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym__] = ACTIONS(931), + [anon_sym_BQUOTE] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [aux_sym__html_block_1_token1] = ACTIONS(931), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(933), + [anon_sym_LT_QMARK] = ACTIONS(933), + [aux_sym__html_block_4_token1] = ACTIONS(933), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(931), + [aux_sym__html_block_6_token1] = ACTIONS(933), + [aux_sym__html_block_6_token2] = ACTIONS(931), + [sym__open_tag_html_block] = ACTIONS(931), + [sym__open_tag_html_block_newline] = ACTIONS(931), + [sym__closing_tag_html_block] = ACTIONS(931), + [sym__closing_tag_html_block_newline] = ACTIONS(931), + [sym_backslash_escape] = ACTIONS(931), + [sym_entity_reference] = ACTIONS(931), + [sym_numeric_character_reference] = ACTIONS(931), + [sym_uri_autolink] = ACTIONS(931), + [sym_email_autolink] = ACTIONS(931), + [sym__whitespace_ge_2] = ACTIONS(931), + [aux_sym__whitespace_token1] = ACTIONS(933), + [sym__word_no_digit] = ACTIONS(931), + [sym__digits] = ACTIONS(931), + [aux_sym__newline_token1] = ACTIONS(931), + [sym__block_close] = ACTIONS(931), + [sym__block_continuation] = ACTIONS(935), + [sym__block_quote_continuation] = ACTIONS(935), + [sym__block_quote_start] = ACTIONS(931), + [sym__indented_chunk_start] = ACTIONS(931), + [sym_atx_h1_marker] = ACTIONS(931), + [sym_atx_h2_marker] = ACTIONS(931), + [sym_atx_h3_marker] = ACTIONS(931), + [sym_atx_h4_marker] = ACTIONS(931), + [sym_atx_h5_marker] = ACTIONS(931), + [sym_atx_h6_marker] = ACTIONS(931), + [sym__thematic_break] = ACTIONS(931), + [sym__list_marker_minus] = ACTIONS(931), + [sym__list_marker_plus] = ACTIONS(931), + [sym__list_marker_star] = ACTIONS(931), + [sym__list_marker_parenthesis] = ACTIONS(931), + [sym__list_marker_dot] = ACTIONS(931), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(931), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(931), + [sym__list_marker_star_dont_interrupt] = ACTIONS(931), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(931), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(931), + [sym__fenced_code_block_start_backtick] = ACTIONS(931), + [sym__fenced_code_block_start_tilde] = ACTIONS(931), + [sym__blank_line_start] = ACTIONS(931), + [sym__code_span_start] = ACTIONS(931), + [sym__emphasis_open_star] = ACTIONS(931), + [sym__emphasis_open_underscore] = ACTIONS(931), + [sym__last_token_whitespace] = ACTIONS(935), }, - [167] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(938), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_AT] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_BSLASH] = ACTIONS(940), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym__] = ACTIONS(938), - [anon_sym_BQUOTE] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [aux_sym__html_block_1_token1] = ACTIONS(938), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(940), - [anon_sym_LT_QMARK] = ACTIONS(940), - [aux_sym__html_block_4_token1] = ACTIONS(940), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(938), - [aux_sym__html_block_6_token1] = ACTIONS(940), - [aux_sym__html_block_6_token2] = ACTIONS(938), - [sym__open_tag_html_block] = ACTIONS(938), - [sym__open_tag_html_block_newline] = ACTIONS(938), - [sym__closing_tag_html_block] = ACTIONS(938), - [sym__closing_tag_html_block_newline] = ACTIONS(938), - [sym_backslash_escape] = ACTIONS(938), - [sym_entity_reference] = ACTIONS(938), - [sym_numeric_character_reference] = ACTIONS(938), - [sym_uri_autolink] = ACTIONS(938), - [sym_email_autolink] = ACTIONS(938), - [sym__whitespace_ge_2] = ACTIONS(938), - [aux_sym__whitespace_token1] = ACTIONS(940), - [sym__word_no_digit] = ACTIONS(938), - [sym__digits] = ACTIONS(938), - [aux_sym__newline_token1] = ACTIONS(938), - [sym__block_close] = ACTIONS(938), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(938), - [sym__indented_chunk_start] = ACTIONS(938), - [sym_atx_h1_marker] = ACTIONS(938), - [sym_atx_h2_marker] = ACTIONS(938), - [sym_atx_h3_marker] = ACTIONS(938), - [sym_atx_h4_marker] = ACTIONS(938), - [sym_atx_h5_marker] = ACTIONS(938), - [sym_atx_h6_marker] = ACTIONS(938), - [sym__thematic_break] = ACTIONS(938), - [sym__list_marker_minus] = ACTIONS(938), - [sym__list_marker_plus] = ACTIONS(938), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(938), - [sym__list_marker_dot] = ACTIONS(938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(938), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(938), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(938), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(938), - [sym__fenced_code_block_start_backtick] = ACTIONS(938), - [sym__fenced_code_block_start_tilde] = ACTIONS(938), - [sym__blank_line_start] = ACTIONS(938), - [sym__code_span_start] = ACTIONS(938), - [sym__emphasis_open_star] = ACTIONS(938), - [sym__emphasis_open_underscore] = ACTIONS(938), - [sym__last_token_whitespace] = ACTIONS(115), + [141] = { + [sym__soft_line_break] = STATE(923), + [sym__paragraph_end_newline] = STATE(372), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(88), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [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(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(951), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), }, - [168] = { - [aux_sym__ignore_matching_tokens] = STATE(153), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_BSLASH] = ACTIONS(944), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym__] = ACTIONS(942), - [anon_sym_BQUOTE] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [aux_sym__html_block_1_token1] = ACTIONS(942), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(944), - [anon_sym_LT_QMARK] = ACTIONS(944), - [aux_sym__html_block_4_token1] = ACTIONS(944), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(942), - [aux_sym__html_block_6_token1] = ACTIONS(944), - [aux_sym__html_block_6_token2] = ACTIONS(942), - [sym__open_tag_html_block] = ACTIONS(942), - [sym__open_tag_html_block_newline] = ACTIONS(942), - [sym__closing_tag_html_block] = ACTIONS(942), - [sym__closing_tag_html_block_newline] = ACTIONS(942), - [sym_backslash_escape] = ACTIONS(942), - [sym_entity_reference] = ACTIONS(942), - [sym_numeric_character_reference] = ACTIONS(942), - [sym_uri_autolink] = ACTIONS(942), - [sym_email_autolink] = ACTIONS(942), - [sym__whitespace_ge_2] = ACTIONS(942), - [aux_sym__whitespace_token1] = ACTIONS(944), - [sym__word_no_digit] = ACTIONS(942), - [sym__digits] = ACTIONS(942), - [aux_sym__newline_token1] = ACTIONS(942), - [sym__block_close] = ACTIONS(942), - [sym__block_continuation] = ACTIONS(946), - [sym__block_quote_continuation] = ACTIONS(946), - [sym__block_quote_start] = ACTIONS(942), - [sym__indented_chunk_start] = ACTIONS(942), - [sym_atx_h1_marker] = ACTIONS(942), - [sym_atx_h2_marker] = ACTIONS(942), - [sym_atx_h3_marker] = ACTIONS(942), - [sym_atx_h4_marker] = ACTIONS(942), - [sym_atx_h5_marker] = ACTIONS(942), - [sym_atx_h6_marker] = ACTIONS(942), - [sym__thematic_break] = ACTIONS(942), - [sym__list_marker_minus] = ACTIONS(942), - [sym__list_marker_plus] = ACTIONS(942), - [sym__list_marker_star] = ACTIONS(942), - [sym__list_marker_parenthesis] = ACTIONS(942), - [sym__list_marker_dot] = ACTIONS(942), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_star_dont_interrupt] = ACTIONS(942), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(942), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(942), - [sym__fenced_code_block_start_backtick] = ACTIONS(942), - [sym__fenced_code_block_start_tilde] = ACTIONS(942), - [sym__blank_line_start] = ACTIONS(942), - [sym__code_span_start] = ACTIONS(942), - [sym__emphasis_open_star] = ACTIONS(942), - [sym__emphasis_open_underscore] = ACTIONS(942), - [sym__last_token_whitespace] = ACTIONS(946), + [142] = { + [aux_sym__ignore_matching_tokens] = STATE(277), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = 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_PIPE] = 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), }, - [169] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_BSLASH] = ACTIONS(944), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym__] = ACTIONS(942), - [anon_sym_BQUOTE] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [aux_sym__html_block_1_token1] = ACTIONS(942), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(944), - [anon_sym_LT_QMARK] = ACTIONS(944), - [aux_sym__html_block_4_token1] = ACTIONS(944), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(942), - [aux_sym__html_block_6_token1] = ACTIONS(944), - [aux_sym__html_block_6_token2] = ACTIONS(942), - [sym__open_tag_html_block] = ACTIONS(942), - [sym__open_tag_html_block_newline] = ACTIONS(942), - [sym__closing_tag_html_block] = ACTIONS(942), - [sym__closing_tag_html_block_newline] = ACTIONS(942), - [sym_backslash_escape] = ACTIONS(942), - [sym_entity_reference] = ACTIONS(942), - [sym_numeric_character_reference] = ACTIONS(942), - [sym_uri_autolink] = ACTIONS(942), - [sym_email_autolink] = ACTIONS(942), - [sym__whitespace_ge_2] = ACTIONS(942), - [aux_sym__whitespace_token1] = ACTIONS(944), - [sym__word_no_digit] = ACTIONS(942), - [sym__digits] = ACTIONS(942), - [aux_sym__newline_token1] = ACTIONS(942), - [sym__block_close] = ACTIONS(942), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(942), - [sym__indented_chunk_start] = ACTIONS(942), - [sym_atx_h1_marker] = ACTIONS(942), - [sym_atx_h2_marker] = ACTIONS(942), - [sym_atx_h3_marker] = ACTIONS(942), - [sym_atx_h4_marker] = ACTIONS(942), - [sym_atx_h5_marker] = ACTIONS(942), - [sym_atx_h6_marker] = ACTIONS(942), - [sym__thematic_break] = ACTIONS(942), - [sym__list_marker_minus] = ACTIONS(942), - [sym__list_marker_plus] = ACTIONS(942), - [sym__list_marker_star] = ACTIONS(942), - [sym__list_marker_parenthesis] = ACTIONS(942), - [sym__list_marker_dot] = ACTIONS(942), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_star_dont_interrupt] = ACTIONS(942), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(942), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(942), - [sym__fenced_code_block_start_backtick] = ACTIONS(942), - [sym__fenced_code_block_start_tilde] = ACTIONS(942), - [sym__blank_line_start] = ACTIONS(942), - [sym__code_span_start] = ACTIONS(942), - [sym__emphasis_open_star] = ACTIONS(942), - [sym__emphasis_open_underscore] = ACTIONS(942), - [sym__last_token_whitespace] = ACTIONS(115), + [143] = { + [aux_sym__ignore_matching_tokens] = STATE(281), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = 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_PIPE] = 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), }, - [170] = { - [aux_sym__ignore_matching_tokens] = STATE(156), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_COLON] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_QMARK] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_BSLASH] = ACTIONS(950), - [anon_sym_RBRACK] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym__] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [aux_sym__html_block_1_token1] = ACTIONS(948), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(950), - [anon_sym_LT_QMARK] = ACTIONS(950), - [aux_sym__html_block_4_token1] = ACTIONS(950), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(948), - [aux_sym__html_block_6_token1] = ACTIONS(950), - [aux_sym__html_block_6_token2] = ACTIONS(948), - [sym__open_tag_html_block] = ACTIONS(948), - [sym__open_tag_html_block_newline] = ACTIONS(948), - [sym__closing_tag_html_block] = ACTIONS(948), - [sym__closing_tag_html_block_newline] = ACTIONS(948), - [sym_backslash_escape] = ACTIONS(948), - [sym_entity_reference] = ACTIONS(948), - [sym_numeric_character_reference] = ACTIONS(948), - [sym_uri_autolink] = ACTIONS(948), - [sym_email_autolink] = ACTIONS(948), - [sym__whitespace_ge_2] = ACTIONS(948), - [aux_sym__whitespace_token1] = ACTIONS(950), - [sym__word_no_digit] = ACTIONS(948), - [sym__digits] = ACTIONS(948), - [aux_sym__newline_token1] = ACTIONS(948), - [sym__block_close] = ACTIONS(948), - [sym__block_continuation] = ACTIONS(952), - [sym__block_quote_continuation] = ACTIONS(952), - [sym__block_quote_start] = ACTIONS(948), - [sym__indented_chunk_start] = ACTIONS(948), - [sym_atx_h1_marker] = ACTIONS(948), - [sym_atx_h2_marker] = ACTIONS(948), - [sym_atx_h3_marker] = ACTIONS(948), - [sym_atx_h4_marker] = ACTIONS(948), - [sym_atx_h5_marker] = ACTIONS(948), - [sym_atx_h6_marker] = ACTIONS(948), - [sym__thematic_break] = ACTIONS(948), - [sym__list_marker_minus] = ACTIONS(948), - [sym__list_marker_plus] = ACTIONS(948), - [sym__list_marker_star] = ACTIONS(948), - [sym__list_marker_parenthesis] = ACTIONS(948), - [sym__list_marker_dot] = ACTIONS(948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(948), - [sym__fenced_code_block_start_backtick] = ACTIONS(948), - [sym__fenced_code_block_start_tilde] = ACTIONS(948), - [sym__blank_line_start] = ACTIONS(948), - [sym__code_span_start] = ACTIONS(948), - [sym__emphasis_open_star] = ACTIONS(948), - [sym__emphasis_open_underscore] = ACTIONS(948), - [sym__last_token_whitespace] = ACTIONS(952), + [144] = { + [sym__block_interrupt_paragraph] = STATE(774), + [sym_thematic_break] = STATE(774), + [sym_atx_heading] = STATE(774), + [sym_fenced_code_block] = STATE(774), + [sym__html_block_1] = STATE(774), + [sym__html_block_2] = STATE(774), + [sym__html_block_3] = STATE(774), + [sym__html_block_4] = STATE(774), + [sym__html_block_5] = STATE(774), + [sym__html_block_6] = STATE(774), + [sym__blank_line] = STATE(774), + [sym_block_quote] = STATE(774), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_BSLASH] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [aux_sym__html_block_1_token1] = ACTIONS(459), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(461), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(465), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(467), + [aux_sym__html_block_6_token1] = ACTIONS(469), + [aux_sym__html_block_6_token2] = ACTIONS(471), + [sym_backslash_escape] = ACTIONS(734), + [sym_entity_reference] = ACTIONS(734), + [sym_numeric_character_reference] = ACTIONS(734), + [sym_uri_autolink] = ACTIONS(734), + [sym_email_autolink] = ACTIONS(734), + [sym__whitespace_ge_2] = ACTIONS(734), + [aux_sym__whitespace_token1] = ACTIONS(736), + [sym__word_no_digit] = ACTIONS(734), + [sym__digits] = ACTIONS(734), + [aux_sym__newline_token1] = ACTIONS(734), + [sym__block_quote_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(475), + [sym_atx_h2_marker] = ACTIONS(475), + [sym_atx_h3_marker] = ACTIONS(475), + [sym_atx_h4_marker] = ACTIONS(475), + [sym_atx_h5_marker] = ACTIONS(475), + [sym_atx_h6_marker] = ACTIONS(475), + [sym_setext_h1_underline] = ACTIONS(965), + [sym_setext_h2_underline] = ACTIONS(965), + [sym__thematic_break] = ACTIONS(479), + [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__fenced_code_block_start_backtick] = ACTIONS(481), + [sym__fenced_code_block_start_tilde] = ACTIONS(483), + [sym__blank_line_start] = ACTIONS(485), + [sym__code_span_start] = ACTIONS(734), + [sym__emphasis_open_star] = ACTIONS(734), + [sym__emphasis_open_underscore] = ACTIONS(734), + [sym__emphasis_close_star] = ACTIONS(734), }, - [171] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_COLON] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_QMARK] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_BSLASH] = ACTIONS(950), - [anon_sym_RBRACK] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym__] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [aux_sym__html_block_1_token1] = ACTIONS(948), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(950), - [anon_sym_LT_QMARK] = ACTIONS(950), - [aux_sym__html_block_4_token1] = ACTIONS(950), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(948), - [aux_sym__html_block_6_token1] = ACTIONS(950), - [aux_sym__html_block_6_token2] = ACTIONS(948), - [sym__open_tag_html_block] = ACTIONS(948), - [sym__open_tag_html_block_newline] = ACTIONS(948), - [sym__closing_tag_html_block] = ACTIONS(948), - [sym__closing_tag_html_block_newline] = ACTIONS(948), - [sym_backslash_escape] = ACTIONS(948), - [sym_entity_reference] = ACTIONS(948), - [sym_numeric_character_reference] = ACTIONS(948), - [sym_uri_autolink] = ACTIONS(948), - [sym_email_autolink] = ACTIONS(948), - [sym__whitespace_ge_2] = ACTIONS(948), - [aux_sym__whitespace_token1] = ACTIONS(950), - [sym__word_no_digit] = ACTIONS(948), - [sym__digits] = ACTIONS(948), - [aux_sym__newline_token1] = ACTIONS(948), - [sym__block_close] = ACTIONS(948), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(948), - [sym__indented_chunk_start] = ACTIONS(948), - [sym_atx_h1_marker] = ACTIONS(948), - [sym_atx_h2_marker] = ACTIONS(948), - [sym_atx_h3_marker] = ACTIONS(948), - [sym_atx_h4_marker] = ACTIONS(948), - [sym_atx_h5_marker] = ACTIONS(948), - [sym_atx_h6_marker] = ACTIONS(948), - [sym__thematic_break] = ACTIONS(948), - [sym__list_marker_minus] = ACTIONS(948), - [sym__list_marker_plus] = ACTIONS(948), - [sym__list_marker_star] = ACTIONS(948), - [sym__list_marker_parenthesis] = ACTIONS(948), - [sym__list_marker_dot] = ACTIONS(948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(948), - [sym__fenced_code_block_start_backtick] = ACTIONS(948), - [sym__fenced_code_block_start_tilde] = ACTIONS(948), - [sym__blank_line_start] = ACTIONS(948), - [sym__code_span_start] = ACTIONS(948), - [sym__emphasis_open_star] = ACTIONS(948), - [sym__emphasis_open_underscore] = ACTIONS(948), - [sym__last_token_whitespace] = ACTIONS(115), + [145] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_BSLASH] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym__] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [aux_sym__html_block_1_token1] = ACTIONS(967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(969), + [anon_sym_LT_QMARK] = ACTIONS(969), + [aux_sym__html_block_4_token1] = ACTIONS(969), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(967), + [aux_sym__html_block_6_token1] = ACTIONS(969), + [aux_sym__html_block_6_token2] = ACTIONS(967), + [sym__open_tag_html_block] = ACTIONS(967), + [sym__open_tag_html_block_newline] = ACTIONS(967), + [sym__closing_tag_html_block] = ACTIONS(967), + [sym__closing_tag_html_block_newline] = ACTIONS(967), + [sym_backslash_escape] = ACTIONS(967), + [sym_entity_reference] = ACTIONS(967), + [sym_numeric_character_reference] = ACTIONS(967), + [sym_uri_autolink] = ACTIONS(967), + [sym_email_autolink] = ACTIONS(967), + [sym__whitespace_ge_2] = ACTIONS(967), + [aux_sym__whitespace_token1] = ACTIONS(969), + [sym__word_no_digit] = ACTIONS(967), + [sym__digits] = ACTIONS(967), + [aux_sym__newline_token1] = ACTIONS(967), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(967), + [sym__indented_chunk_start] = ACTIONS(967), + [sym_atx_h1_marker] = ACTIONS(967), + [sym_atx_h2_marker] = ACTIONS(967), + [sym_atx_h3_marker] = ACTIONS(967), + [sym_atx_h4_marker] = ACTIONS(967), + [sym_atx_h5_marker] = ACTIONS(967), + [sym_atx_h6_marker] = ACTIONS(967), + [sym__thematic_break] = ACTIONS(967), + [sym__list_marker_minus] = ACTIONS(967), + [sym__list_marker_plus] = ACTIONS(967), + [sym__list_marker_star] = ACTIONS(967), + [sym__list_marker_parenthesis] = ACTIONS(967), + [sym__list_marker_dot] = ACTIONS(967), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_star_dont_interrupt] = ACTIONS(967), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(967), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(967), + [sym__fenced_code_block_start_tilde] = ACTIONS(967), + [sym__blank_line_start] = ACTIONS(967), + [sym__code_span_start] = ACTIONS(967), + [sym__emphasis_open_star] = ACTIONS(967), + [sym__emphasis_open_underscore] = ACTIONS(967), + [sym__last_token_whitespace] = ACTIONS(93), }, - [172] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(954), - [anon_sym_AT] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_BSLASH] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym__] = ACTIONS(954), - [anon_sym_BQUOTE] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [aux_sym__html_block_1_token1] = ACTIONS(954), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(956), - [anon_sym_LT_QMARK] = ACTIONS(956), - [aux_sym__html_block_4_token1] = ACTIONS(956), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(954), - [aux_sym__html_block_6_token1] = ACTIONS(956), - [aux_sym__html_block_6_token2] = ACTIONS(954), - [sym__open_tag_html_block] = ACTIONS(954), - [sym__open_tag_html_block_newline] = ACTIONS(954), - [sym__closing_tag_html_block] = ACTIONS(954), - [sym__closing_tag_html_block_newline] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [sym_entity_reference] = ACTIONS(954), - [sym_numeric_character_reference] = ACTIONS(954), - [sym_uri_autolink] = ACTIONS(954), - [sym_email_autolink] = ACTIONS(954), - [sym__whitespace_ge_2] = ACTIONS(954), - [aux_sym__whitespace_token1] = ACTIONS(956), - [sym__word_no_digit] = ACTIONS(954), - [sym__digits] = ACTIONS(954), - [aux_sym__newline_token1] = ACTIONS(954), - [sym__block_close] = ACTIONS(954), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(954), - [sym__indented_chunk_start] = ACTIONS(954), - [sym_atx_h1_marker] = ACTIONS(954), - [sym_atx_h2_marker] = ACTIONS(954), - [sym_atx_h3_marker] = ACTIONS(954), - [sym_atx_h4_marker] = ACTIONS(954), - [sym_atx_h5_marker] = ACTIONS(954), - [sym_atx_h6_marker] = ACTIONS(954), - [sym__thematic_break] = ACTIONS(954), - [sym__list_marker_minus] = ACTIONS(954), - [sym__list_marker_plus] = ACTIONS(954), - [sym__list_marker_star] = ACTIONS(954), - [sym__list_marker_parenthesis] = ACTIONS(954), - [sym__list_marker_dot] = ACTIONS(954), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_star_dont_interrupt] = ACTIONS(954), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(954), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(954), - [sym__fenced_code_block_start_backtick] = ACTIONS(954), - [sym__fenced_code_block_start_tilde] = ACTIONS(954), - [sym__blank_line_start] = ACTIONS(954), - [sym__code_span_start] = ACTIONS(954), - [sym__emphasis_open_star] = ACTIONS(954), - [sym__emphasis_open_underscore] = ACTIONS(954), - [sym__last_token_whitespace] = ACTIONS(115), + [146] = { + [aux_sym__ignore_matching_tokens] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_BSLASH] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym__] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [aux_sym__html_block_1_token1] = ACTIONS(967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(969), + [anon_sym_LT_QMARK] = ACTIONS(969), + [aux_sym__html_block_4_token1] = ACTIONS(969), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(967), + [aux_sym__html_block_6_token1] = ACTIONS(969), + [aux_sym__html_block_6_token2] = ACTIONS(967), + [sym__open_tag_html_block] = ACTIONS(967), + [sym__open_tag_html_block_newline] = ACTIONS(967), + [sym__closing_tag_html_block] = ACTIONS(967), + [sym__closing_tag_html_block_newline] = ACTIONS(967), + [sym_backslash_escape] = ACTIONS(967), + [sym_entity_reference] = ACTIONS(967), + [sym_numeric_character_reference] = ACTIONS(967), + [sym_uri_autolink] = ACTIONS(967), + [sym_email_autolink] = ACTIONS(967), + [sym__whitespace_ge_2] = ACTIONS(967), + [aux_sym__whitespace_token1] = ACTIONS(969), + [sym__word_no_digit] = ACTIONS(967), + [sym__digits] = ACTIONS(967), + [aux_sym__newline_token1] = ACTIONS(967), + [sym__block_continuation] = ACTIONS(971), + [sym__block_quote_continuation] = ACTIONS(971), + [sym__block_quote_start] = ACTIONS(967), + [sym__indented_chunk_start] = ACTIONS(967), + [sym_atx_h1_marker] = ACTIONS(967), + [sym_atx_h2_marker] = ACTIONS(967), + [sym_atx_h3_marker] = ACTIONS(967), + [sym_atx_h4_marker] = ACTIONS(967), + [sym_atx_h5_marker] = ACTIONS(967), + [sym_atx_h6_marker] = ACTIONS(967), + [sym__thematic_break] = ACTIONS(967), + [sym__list_marker_minus] = ACTIONS(967), + [sym__list_marker_plus] = ACTIONS(967), + [sym__list_marker_star] = ACTIONS(967), + [sym__list_marker_parenthesis] = ACTIONS(967), + [sym__list_marker_dot] = ACTIONS(967), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_star_dont_interrupt] = ACTIONS(967), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(967), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(967), + [sym__fenced_code_block_start_tilde] = ACTIONS(967), + [sym__blank_line_start] = ACTIONS(967), + [sym__code_span_start] = ACTIONS(967), + [sym__emphasis_open_star] = ACTIONS(967), + [sym__emphasis_open_underscore] = ACTIONS(967), + [sym__last_token_whitespace] = ACTIONS(971), }, - [173] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_PERCENT] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_DOT] = ACTIONS(958), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_COLON] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(958), - [anon_sym_AT] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_RBRACK] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(958), - [anon_sym__] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [aux_sym__html_block_1_token1] = ACTIONS(958), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(960), - [anon_sym_LT_QMARK] = ACTIONS(960), - [aux_sym__html_block_4_token1] = ACTIONS(960), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(958), - [aux_sym__html_block_6_token1] = ACTIONS(960), - [aux_sym__html_block_6_token2] = ACTIONS(958), - [sym__open_tag_html_block] = ACTIONS(958), - [sym__open_tag_html_block_newline] = ACTIONS(958), - [sym__closing_tag_html_block] = ACTIONS(958), - [sym__closing_tag_html_block_newline] = ACTIONS(958), - [sym_backslash_escape] = ACTIONS(958), - [sym_entity_reference] = ACTIONS(958), - [sym_numeric_character_reference] = ACTIONS(958), - [sym_uri_autolink] = ACTIONS(958), - [sym_email_autolink] = ACTIONS(958), - [sym__whitespace_ge_2] = ACTIONS(958), - [aux_sym__whitespace_token1] = ACTIONS(960), - [sym__word_no_digit] = ACTIONS(958), - [sym__digits] = ACTIONS(958), - [aux_sym__newline_token1] = ACTIONS(958), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(958), - [sym__indented_chunk_start] = ACTIONS(958), - [sym_atx_h1_marker] = ACTIONS(958), - [sym_atx_h2_marker] = ACTIONS(958), - [sym_atx_h3_marker] = ACTIONS(958), - [sym_atx_h4_marker] = ACTIONS(958), - [sym_atx_h5_marker] = ACTIONS(958), - [sym_atx_h6_marker] = ACTIONS(958), - [sym__thematic_break] = ACTIONS(958), - [sym__list_marker_minus] = ACTIONS(958), - [sym__list_marker_plus] = ACTIONS(958), - [sym__list_marker_star] = ACTIONS(958), - [sym__list_marker_parenthesis] = ACTIONS(958), - [sym__list_marker_dot] = ACTIONS(958), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(958), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(958), - [sym__list_marker_star_dont_interrupt] = ACTIONS(958), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(958), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(958), - [sym__fenced_code_block_start_backtick] = ACTIONS(958), - [sym__fenced_code_block_start_tilde] = ACTIONS(958), - [sym__blank_line_start] = ACTIONS(958), - [sym__code_span_start] = ACTIONS(958), - [sym__emphasis_open_star] = ACTIONS(958), - [sym__emphasis_open_underscore] = ACTIONS(958), - [sym__last_token_whitespace] = ACTIONS(111), + [147] = { + [sym__soft_line_break] = STATE(133), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(133), + [sym_full_reference_link] = STATE(133), + [sym_collapsed_reference_link] = STATE(133), + [sym_inline_link] = STATE(133), + [sym_image] = STATE(133), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(133), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(133), + [sym__whitespace] = STATE(133), + [sym__word] = STATE(133), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(133), + [aux_sym__inline_no_star] = STATE(133), + [sym__text_inline_no_star] = STATE(133), + [sym__emphasis_star] = STATE(823), + [sym__strong_emphasis_star] = STATE(133), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(133), + [sym__code_span] = STATE(133), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(973), + [sym_entity_reference] = ACTIONS(973), + [sym_numeric_character_reference] = ACTIONS(973), + [sym_uri_autolink] = ACTIONS(973), + [sym_email_autolink] = ACTIONS(973), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(973), + [sym__digits] = ACTIONS(973), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__last_token_punctuation] = ACTIONS(975), }, - [174] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_COLON] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(962), - [anon_sym_AT] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_BSLASH] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym__] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [aux_sym__html_block_1_token1] = ACTIONS(962), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(964), - [anon_sym_LT_QMARK] = ACTIONS(964), - [aux_sym__html_block_4_token1] = ACTIONS(964), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(962), - [aux_sym__html_block_6_token1] = ACTIONS(964), - [aux_sym__html_block_6_token2] = ACTIONS(962), - [sym__open_tag_html_block] = ACTIONS(962), - [sym__open_tag_html_block_newline] = ACTIONS(962), - [sym__closing_tag_html_block] = ACTIONS(962), - [sym__closing_tag_html_block_newline] = ACTIONS(962), - [sym_backslash_escape] = ACTIONS(962), - [sym_entity_reference] = ACTIONS(962), - [sym_numeric_character_reference] = ACTIONS(962), - [sym_uri_autolink] = ACTIONS(962), - [sym_email_autolink] = ACTIONS(962), - [sym__whitespace_ge_2] = ACTIONS(962), - [aux_sym__whitespace_token1] = ACTIONS(964), - [sym__word_no_digit] = ACTIONS(962), - [sym__digits] = ACTIONS(962), - [aux_sym__newline_token1] = ACTIONS(962), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(962), - [sym__indented_chunk_start] = ACTIONS(962), - [sym_atx_h1_marker] = ACTIONS(962), - [sym_atx_h2_marker] = ACTIONS(962), - [sym_atx_h3_marker] = ACTIONS(962), - [sym_atx_h4_marker] = ACTIONS(962), - [sym_atx_h5_marker] = ACTIONS(962), - [sym_atx_h6_marker] = ACTIONS(962), - [sym__thematic_break] = ACTIONS(962), - [sym__list_marker_minus] = ACTIONS(962), - [sym__list_marker_plus] = ACTIONS(962), - [sym__list_marker_star] = ACTIONS(962), - [sym__list_marker_parenthesis] = ACTIONS(962), - [sym__list_marker_dot] = ACTIONS(962), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(962), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(962), - [sym__list_marker_star_dont_interrupt] = ACTIONS(962), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(962), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(962), - [sym__fenced_code_block_start_backtick] = ACTIONS(962), - [sym__fenced_code_block_start_tilde] = ACTIONS(962), - [sym__blank_line_start] = ACTIONS(962), - [sym__code_span_start] = ACTIONS(962), - [sym__emphasis_open_star] = ACTIONS(962), - [sym__emphasis_open_underscore] = ACTIONS(962), - [sym__last_token_whitespace] = ACTIONS(111), + [148] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym__] = ACTIONS(977), + [anon_sym_BQUOTE] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(977), + [aux_sym__html_block_1_token1] = ACTIONS(977), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(979), + [anon_sym_LT_QMARK] = ACTIONS(979), + [aux_sym__html_block_4_token1] = ACTIONS(979), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(977), + [aux_sym__html_block_6_token1] = ACTIONS(979), + [aux_sym__html_block_6_token2] = ACTIONS(977), + [sym__open_tag_html_block] = ACTIONS(977), + [sym__open_tag_html_block_newline] = ACTIONS(977), + [sym__closing_tag_html_block] = ACTIONS(977), + [sym__closing_tag_html_block_newline] = ACTIONS(977), + [sym_backslash_escape] = ACTIONS(977), + [sym_entity_reference] = ACTIONS(977), + [sym_numeric_character_reference] = ACTIONS(977), + [sym_uri_autolink] = ACTIONS(977), + [sym_email_autolink] = ACTIONS(977), + [sym__whitespace_ge_2] = ACTIONS(977), + [aux_sym__whitespace_token1] = ACTIONS(979), + [sym__word_no_digit] = ACTIONS(977), + [sym__digits] = ACTIONS(977), + [aux_sym__newline_token1] = ACTIONS(977), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(977), + [sym__indented_chunk_start] = ACTIONS(977), + [sym_atx_h1_marker] = ACTIONS(977), + [sym_atx_h2_marker] = ACTIONS(977), + [sym_atx_h3_marker] = ACTIONS(977), + [sym_atx_h4_marker] = ACTIONS(977), + [sym_atx_h5_marker] = ACTIONS(977), + [sym_atx_h6_marker] = ACTIONS(977), + [sym__thematic_break] = ACTIONS(977), + [sym__list_marker_minus] = ACTIONS(977), + [sym__list_marker_plus] = ACTIONS(977), + [sym__list_marker_star] = ACTIONS(977), + [sym__list_marker_parenthesis] = ACTIONS(977), + [sym__list_marker_dot] = ACTIONS(977), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_star_dont_interrupt] = ACTIONS(977), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(977), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(977), + [sym__fenced_code_block_start_backtick] = ACTIONS(977), + [sym__fenced_code_block_start_tilde] = ACTIONS(977), + [sym__blank_line_start] = ACTIONS(977), + [sym__code_span_start] = ACTIONS(977), + [sym__emphasis_open_star] = ACTIONS(977), + [sym__emphasis_open_underscore] = ACTIONS(977), + [sym__last_token_whitespace] = ACTIONS(93), }, - [175] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym__] = ACTIONS(966), - [anon_sym_BQUOTE] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [aux_sym__html_block_1_token1] = ACTIONS(966), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(968), - [anon_sym_LT_QMARK] = ACTIONS(968), - [aux_sym__html_block_4_token1] = ACTIONS(968), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(966), - [aux_sym__html_block_6_token1] = ACTIONS(968), - [aux_sym__html_block_6_token2] = ACTIONS(966), - [sym__open_tag_html_block] = ACTIONS(966), - [sym__open_tag_html_block_newline] = ACTIONS(966), - [sym__closing_tag_html_block] = ACTIONS(966), - [sym__closing_tag_html_block_newline] = ACTIONS(966), - [sym_backslash_escape] = ACTIONS(966), - [sym_entity_reference] = ACTIONS(966), - [sym_numeric_character_reference] = ACTIONS(966), - [sym_uri_autolink] = ACTIONS(966), - [sym_email_autolink] = ACTIONS(966), - [sym__whitespace_ge_2] = ACTIONS(966), - [aux_sym__whitespace_token1] = ACTIONS(968), - [sym__word_no_digit] = ACTIONS(966), - [sym__digits] = ACTIONS(966), - [aux_sym__newline_token1] = ACTIONS(966), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(966), - [sym__indented_chunk_start] = ACTIONS(966), - [sym_atx_h1_marker] = ACTIONS(966), - [sym_atx_h2_marker] = ACTIONS(966), - [sym_atx_h3_marker] = ACTIONS(966), - [sym_atx_h4_marker] = ACTIONS(966), - [sym_atx_h5_marker] = ACTIONS(966), - [sym_atx_h6_marker] = ACTIONS(966), - [sym__thematic_break] = ACTIONS(966), - [sym__list_marker_minus] = ACTIONS(966), - [sym__list_marker_plus] = ACTIONS(966), - [sym__list_marker_star] = ACTIONS(966), - [sym__list_marker_parenthesis] = ACTIONS(966), - [sym__list_marker_dot] = ACTIONS(966), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_star_dont_interrupt] = ACTIONS(966), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(966), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(966), - [sym__fenced_code_block_start_backtick] = ACTIONS(966), - [sym__fenced_code_block_start_tilde] = ACTIONS(966), - [sym__blank_line_start] = ACTIONS(966), - [sym__code_span_start] = ACTIONS(966), - [sym__emphasis_open_star] = ACTIONS(966), - [sym__emphasis_open_underscore] = ACTIONS(966), - [sym__last_token_whitespace] = ACTIONS(111), + [149] = { + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(884), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [sym_uri_autolink] = ACTIONS(884), + [sym_email_autolink] = ACTIONS(884), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(884), + [sym__digits] = ACTIONS(884), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__emphasis_close_underscore] = ACTIONS(981), }, - [176] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_COLON] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_QMARK] = ACTIONS(970), - [anon_sym_AT] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_BSLASH] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(970), - [anon_sym__] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [aux_sym__html_block_1_token1] = ACTIONS(970), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(972), - [anon_sym_LT_QMARK] = ACTIONS(972), - [aux_sym__html_block_4_token1] = ACTIONS(972), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(970), - [aux_sym__html_block_6_token1] = ACTIONS(972), - [aux_sym__html_block_6_token2] = ACTIONS(970), - [sym__open_tag_html_block] = ACTIONS(970), - [sym__open_tag_html_block_newline] = ACTIONS(970), - [sym__closing_tag_html_block] = ACTIONS(970), - [sym__closing_tag_html_block_newline] = ACTIONS(970), - [sym_backslash_escape] = ACTIONS(970), - [sym_entity_reference] = ACTIONS(970), - [sym_numeric_character_reference] = ACTIONS(970), - [sym_uri_autolink] = ACTIONS(970), - [sym_email_autolink] = ACTIONS(970), - [sym__whitespace_ge_2] = ACTIONS(970), - [aux_sym__whitespace_token1] = ACTIONS(972), - [sym__word_no_digit] = ACTIONS(970), - [sym__digits] = ACTIONS(970), - [aux_sym__newline_token1] = ACTIONS(970), - [sym__block_close] = ACTIONS(970), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(970), - [sym__indented_chunk_start] = ACTIONS(970), - [sym_atx_h1_marker] = ACTIONS(970), - [sym_atx_h2_marker] = ACTIONS(970), - [sym_atx_h3_marker] = ACTIONS(970), - [sym_atx_h4_marker] = ACTIONS(970), - [sym_atx_h5_marker] = ACTIONS(970), - [sym_atx_h6_marker] = ACTIONS(970), - [sym__thematic_break] = ACTIONS(970), - [sym__list_marker_minus] = ACTIONS(970), - [sym__list_marker_plus] = ACTIONS(970), - [sym__list_marker_star] = ACTIONS(970), - [sym__list_marker_parenthesis] = ACTIONS(970), - [sym__list_marker_dot] = ACTIONS(970), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(970), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(970), - [sym__list_marker_star_dont_interrupt] = ACTIONS(970), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(970), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(970), - [sym__fenced_code_block_start_backtick] = ACTIONS(970), - [sym__fenced_code_block_start_tilde] = ACTIONS(970), - [sym__blank_line_start] = ACTIONS(970), - [sym__code_span_start] = ACTIONS(970), - [sym__emphasis_open_star] = ACTIONS(970), - [sym__emphasis_open_underscore] = ACTIONS(970), - [sym__last_token_whitespace] = ACTIONS(115), + [150] = { + [aux_sym__ignore_matching_tokens] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym__] = ACTIONS(977), + [anon_sym_BQUOTE] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(977), + [aux_sym__html_block_1_token1] = ACTIONS(977), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(979), + [anon_sym_LT_QMARK] = ACTIONS(979), + [aux_sym__html_block_4_token1] = ACTIONS(979), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(977), + [aux_sym__html_block_6_token1] = ACTIONS(979), + [aux_sym__html_block_6_token2] = ACTIONS(977), + [sym__open_tag_html_block] = ACTIONS(977), + [sym__open_tag_html_block_newline] = ACTIONS(977), + [sym__closing_tag_html_block] = ACTIONS(977), + [sym__closing_tag_html_block_newline] = ACTIONS(977), + [sym_backslash_escape] = ACTIONS(977), + [sym_entity_reference] = ACTIONS(977), + [sym_numeric_character_reference] = ACTIONS(977), + [sym_uri_autolink] = ACTIONS(977), + [sym_email_autolink] = ACTIONS(977), + [sym__whitespace_ge_2] = ACTIONS(977), + [aux_sym__whitespace_token1] = ACTIONS(979), + [sym__word_no_digit] = ACTIONS(977), + [sym__digits] = ACTIONS(977), + [aux_sym__newline_token1] = ACTIONS(977), + [sym__block_continuation] = ACTIONS(983), + [sym__block_quote_continuation] = ACTIONS(983), + [sym__block_quote_start] = ACTIONS(977), + [sym__indented_chunk_start] = ACTIONS(977), + [sym_atx_h1_marker] = ACTIONS(977), + [sym_atx_h2_marker] = ACTIONS(977), + [sym_atx_h3_marker] = ACTIONS(977), + [sym_atx_h4_marker] = ACTIONS(977), + [sym_atx_h5_marker] = ACTIONS(977), + [sym_atx_h6_marker] = ACTIONS(977), + [sym__thematic_break] = ACTIONS(977), + [sym__list_marker_minus] = ACTIONS(977), + [sym__list_marker_plus] = ACTIONS(977), + [sym__list_marker_star] = ACTIONS(977), + [sym__list_marker_parenthesis] = ACTIONS(977), + [sym__list_marker_dot] = ACTIONS(977), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_star_dont_interrupt] = ACTIONS(977), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(977), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(977), + [sym__fenced_code_block_start_backtick] = ACTIONS(977), + [sym__fenced_code_block_start_tilde] = ACTIONS(977), + [sym__blank_line_start] = ACTIONS(977), + [sym__code_span_start] = ACTIONS(977), + [sym__emphasis_open_star] = ACTIONS(977), + [sym__emphasis_open_underscore] = ACTIONS(977), + [sym__last_token_whitespace] = ACTIONS(983), }, - [177] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym__] = ACTIONS(966), - [anon_sym_BQUOTE] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [aux_sym__html_block_1_token1] = ACTIONS(966), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(968), - [anon_sym_LT_QMARK] = ACTIONS(968), - [aux_sym__html_block_4_token1] = ACTIONS(968), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(966), - [aux_sym__html_block_6_token1] = ACTIONS(968), - [aux_sym__html_block_6_token2] = ACTIONS(966), - [sym__open_tag_html_block] = ACTIONS(966), - [sym__open_tag_html_block_newline] = ACTIONS(966), - [sym__closing_tag_html_block] = ACTIONS(966), - [sym__closing_tag_html_block_newline] = ACTIONS(966), - [sym_backslash_escape] = ACTIONS(966), - [sym_entity_reference] = ACTIONS(966), - [sym_numeric_character_reference] = ACTIONS(966), - [sym_uri_autolink] = ACTIONS(966), - [sym_email_autolink] = ACTIONS(966), - [sym__whitespace_ge_2] = ACTIONS(966), - [aux_sym__whitespace_token1] = ACTIONS(968), - [sym__word_no_digit] = ACTIONS(966), - [sym__digits] = ACTIONS(966), - [aux_sym__newline_token1] = ACTIONS(966), - [sym__block_close] = ACTIONS(966), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(966), - [sym__indented_chunk_start] = ACTIONS(966), - [sym_atx_h1_marker] = ACTIONS(966), - [sym_atx_h2_marker] = ACTIONS(966), - [sym_atx_h3_marker] = ACTIONS(966), - [sym_atx_h4_marker] = ACTIONS(966), - [sym_atx_h5_marker] = ACTIONS(966), - [sym_atx_h6_marker] = ACTIONS(966), - [sym__thematic_break] = ACTIONS(966), - [sym__list_marker_minus] = ACTIONS(966), - [sym__list_marker_plus] = ACTIONS(966), - [sym__list_marker_star] = ACTIONS(966), - [sym__list_marker_parenthesis] = ACTIONS(966), - [sym__list_marker_dot] = ACTIONS(966), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_star_dont_interrupt] = ACTIONS(966), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(966), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(966), - [sym__fenced_code_block_start_backtick] = ACTIONS(966), - [sym__fenced_code_block_start_tilde] = ACTIONS(966), - [sym__blank_line_start] = ACTIONS(966), - [sym__code_span_start] = ACTIONS(966), - [sym__emphasis_open_star] = ACTIONS(966), - [sym__emphasis_open_underscore] = ACTIONS(966), - [sym__last_token_whitespace] = ACTIONS(115), + [151] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym__] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(985), + [aux_sym__html_block_1_token1] = ACTIONS(985), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(987), + [anon_sym_LT_QMARK] = ACTIONS(987), + [aux_sym__html_block_4_token1] = ACTIONS(987), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(985), + [aux_sym__html_block_6_token1] = ACTIONS(987), + [aux_sym__html_block_6_token2] = ACTIONS(985), + [sym__open_tag_html_block] = ACTIONS(985), + [sym__open_tag_html_block_newline] = ACTIONS(985), + [sym__closing_tag_html_block] = ACTIONS(985), + [sym__closing_tag_html_block_newline] = ACTIONS(985), + [sym_backslash_escape] = ACTIONS(985), + [sym_entity_reference] = ACTIONS(985), + [sym_numeric_character_reference] = ACTIONS(985), + [sym_uri_autolink] = ACTIONS(985), + [sym_email_autolink] = ACTIONS(985), + [sym__whitespace_ge_2] = ACTIONS(985), + [aux_sym__whitespace_token1] = ACTIONS(987), + [sym__word_no_digit] = ACTIONS(985), + [sym__digits] = ACTIONS(985), + [aux_sym__newline_token1] = ACTIONS(985), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(985), + [sym__indented_chunk_start] = ACTIONS(985), + [sym_atx_h1_marker] = ACTIONS(985), + [sym_atx_h2_marker] = ACTIONS(985), + [sym_atx_h3_marker] = ACTIONS(985), + [sym_atx_h4_marker] = ACTIONS(985), + [sym_atx_h5_marker] = ACTIONS(985), + [sym_atx_h6_marker] = ACTIONS(985), + [sym__thematic_break] = ACTIONS(985), + [sym__list_marker_minus] = ACTIONS(985), + [sym__list_marker_plus] = ACTIONS(985), + [sym__list_marker_star] = ACTIONS(985), + [sym__list_marker_parenthesis] = ACTIONS(985), + [sym__list_marker_dot] = ACTIONS(985), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_star_dont_interrupt] = ACTIONS(985), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(985), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(985), + [sym__fenced_code_block_start_backtick] = ACTIONS(985), + [sym__fenced_code_block_start_tilde] = ACTIONS(985), + [sym__blank_line_start] = ACTIONS(985), + [sym__code_span_start] = ACTIONS(985), + [sym__emphasis_open_star] = ACTIONS(985), + [sym__emphasis_open_underscore] = ACTIONS(985), + [sym__last_token_whitespace] = ACTIONS(93), }, - [178] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_COLON] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(962), - [anon_sym_AT] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_BSLASH] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym__] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [aux_sym__html_block_1_token1] = ACTIONS(962), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(964), - [anon_sym_LT_QMARK] = ACTIONS(964), - [aux_sym__html_block_4_token1] = ACTIONS(964), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(962), - [aux_sym__html_block_6_token1] = ACTIONS(964), - [aux_sym__html_block_6_token2] = ACTIONS(962), - [sym__open_tag_html_block] = ACTIONS(962), - [sym__open_tag_html_block_newline] = ACTIONS(962), - [sym__closing_tag_html_block] = ACTIONS(962), - [sym__closing_tag_html_block_newline] = ACTIONS(962), - [sym_backslash_escape] = ACTIONS(962), - [sym_entity_reference] = ACTIONS(962), - [sym_numeric_character_reference] = ACTIONS(962), - [sym_uri_autolink] = ACTIONS(962), - [sym_email_autolink] = ACTIONS(962), - [sym__whitespace_ge_2] = ACTIONS(962), - [aux_sym__whitespace_token1] = ACTIONS(964), - [sym__word_no_digit] = ACTIONS(962), - [sym__digits] = ACTIONS(962), - [aux_sym__newline_token1] = ACTIONS(962), - [sym__block_close] = ACTIONS(962), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(962), - [sym__indented_chunk_start] = ACTIONS(962), - [sym_atx_h1_marker] = ACTIONS(962), - [sym_atx_h2_marker] = ACTIONS(962), - [sym_atx_h3_marker] = ACTIONS(962), - [sym_atx_h4_marker] = ACTIONS(962), - [sym_atx_h5_marker] = ACTIONS(962), - [sym_atx_h6_marker] = ACTIONS(962), - [sym__thematic_break] = ACTIONS(962), - [sym__list_marker_minus] = ACTIONS(962), - [sym__list_marker_plus] = ACTIONS(962), - [sym__list_marker_star] = ACTIONS(962), - [sym__list_marker_parenthesis] = ACTIONS(962), - [sym__list_marker_dot] = ACTIONS(962), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(962), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(962), - [sym__list_marker_star_dont_interrupt] = ACTIONS(962), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(962), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(962), - [sym__fenced_code_block_start_backtick] = ACTIONS(962), - [sym__fenced_code_block_start_tilde] = ACTIONS(962), - [sym__blank_line_start] = ACTIONS(962), - [sym__code_span_start] = ACTIONS(962), - [sym__emphasis_open_star] = ACTIONS(962), - [sym__emphasis_open_underscore] = ACTIONS(962), - [sym__last_token_whitespace] = ACTIONS(115), + [152] = { + [aux_sym__ignore_matching_tokens] = STATE(288), + [ts_builtin_sym_end] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym__] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(985), + [aux_sym__html_block_1_token1] = ACTIONS(985), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(987), + [anon_sym_LT_QMARK] = ACTIONS(987), + [aux_sym__html_block_4_token1] = ACTIONS(987), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(985), + [aux_sym__html_block_6_token1] = ACTIONS(987), + [aux_sym__html_block_6_token2] = ACTIONS(985), + [sym__open_tag_html_block] = ACTIONS(985), + [sym__open_tag_html_block_newline] = ACTIONS(985), + [sym__closing_tag_html_block] = ACTIONS(985), + [sym__closing_tag_html_block_newline] = ACTIONS(985), + [sym_backslash_escape] = ACTIONS(985), + [sym_entity_reference] = ACTIONS(985), + [sym_numeric_character_reference] = ACTIONS(985), + [sym_uri_autolink] = ACTIONS(985), + [sym_email_autolink] = ACTIONS(985), + [sym__whitespace_ge_2] = ACTIONS(985), + [aux_sym__whitespace_token1] = ACTIONS(987), + [sym__word_no_digit] = ACTIONS(985), + [sym__digits] = ACTIONS(985), + [aux_sym__newline_token1] = ACTIONS(985), + [sym__block_continuation] = ACTIONS(989), + [sym__block_quote_continuation] = ACTIONS(989), + [sym__block_quote_start] = ACTIONS(985), + [sym__indented_chunk_start] = ACTIONS(985), + [sym_atx_h1_marker] = ACTIONS(985), + [sym_atx_h2_marker] = ACTIONS(985), + [sym_atx_h3_marker] = ACTIONS(985), + [sym_atx_h4_marker] = ACTIONS(985), + [sym_atx_h5_marker] = ACTIONS(985), + [sym_atx_h6_marker] = ACTIONS(985), + [sym__thematic_break] = ACTIONS(985), + [sym__list_marker_minus] = ACTIONS(985), + [sym__list_marker_plus] = ACTIONS(985), + [sym__list_marker_star] = ACTIONS(985), + [sym__list_marker_parenthesis] = ACTIONS(985), + [sym__list_marker_dot] = ACTIONS(985), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_star_dont_interrupt] = ACTIONS(985), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(985), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(985), + [sym__fenced_code_block_start_backtick] = ACTIONS(985), + [sym__fenced_code_block_start_tilde] = ACTIONS(985), + [sym__blank_line_start] = ACTIONS(985), + [sym__code_span_start] = ACTIONS(985), + [sym__emphasis_open_star] = ACTIONS(985), + [sym__emphasis_open_underscore] = ACTIONS(985), + [sym__last_token_whitespace] = ACTIONS(989), }, - [179] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_PERCENT] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_DOT] = ACTIONS(958), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_COLON] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(958), - [anon_sym_AT] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_RBRACK] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(958), - [anon_sym__] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [aux_sym__html_block_1_token1] = ACTIONS(958), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(960), - [anon_sym_LT_QMARK] = ACTIONS(960), - [aux_sym__html_block_4_token1] = ACTIONS(960), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(958), - [aux_sym__html_block_6_token1] = ACTIONS(960), - [aux_sym__html_block_6_token2] = ACTIONS(958), - [sym__open_tag_html_block] = ACTIONS(958), - [sym__open_tag_html_block_newline] = ACTIONS(958), - [sym__closing_tag_html_block] = ACTIONS(958), - [sym__closing_tag_html_block_newline] = ACTIONS(958), - [sym_backslash_escape] = ACTIONS(958), - [sym_entity_reference] = ACTIONS(958), - [sym_numeric_character_reference] = ACTIONS(958), - [sym_uri_autolink] = ACTIONS(958), - [sym_email_autolink] = ACTIONS(958), - [sym__whitespace_ge_2] = ACTIONS(958), - [aux_sym__whitespace_token1] = ACTIONS(960), - [sym__word_no_digit] = ACTIONS(958), - [sym__digits] = ACTIONS(958), - [aux_sym__newline_token1] = ACTIONS(958), - [sym__block_close] = ACTIONS(958), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(958), - [sym__indented_chunk_start] = ACTIONS(958), - [sym_atx_h1_marker] = ACTIONS(958), - [sym_atx_h2_marker] = ACTIONS(958), - [sym_atx_h3_marker] = ACTIONS(958), - [sym_atx_h4_marker] = ACTIONS(958), - [sym_atx_h5_marker] = ACTIONS(958), - [sym_atx_h6_marker] = ACTIONS(958), - [sym__thematic_break] = ACTIONS(958), - [sym__list_marker_minus] = ACTIONS(958), - [sym__list_marker_plus] = ACTIONS(958), - [sym__list_marker_star] = ACTIONS(958), - [sym__list_marker_parenthesis] = ACTIONS(958), - [sym__list_marker_dot] = ACTIONS(958), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(958), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(958), - [sym__list_marker_star_dont_interrupt] = ACTIONS(958), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(958), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(958), - [sym__fenced_code_block_start_backtick] = ACTIONS(958), - [sym__fenced_code_block_start_tilde] = ACTIONS(958), - [sym__blank_line_start] = ACTIONS(958), - [sym__code_span_start] = ACTIONS(958), - [sym__emphasis_open_star] = ACTIONS(958), - [sym__emphasis_open_underscore] = ACTIONS(958), - [sym__last_token_whitespace] = ACTIONS(115), + [153] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_BSLASH] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym__] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [aux_sym__html_block_1_token1] = ACTIONS(991), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(993), + [anon_sym_LT_QMARK] = ACTIONS(993), + [aux_sym__html_block_4_token1] = ACTIONS(993), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(991), + [aux_sym__html_block_6_token1] = ACTIONS(993), + [aux_sym__html_block_6_token2] = ACTIONS(991), + [sym__open_tag_html_block] = ACTIONS(991), + [sym__open_tag_html_block_newline] = ACTIONS(991), + [sym__closing_tag_html_block] = ACTIONS(991), + [sym__closing_tag_html_block_newline] = ACTIONS(991), + [sym_backslash_escape] = ACTIONS(991), + [sym_entity_reference] = ACTIONS(991), + [sym_numeric_character_reference] = ACTIONS(991), + [sym_uri_autolink] = ACTIONS(991), + [sym_email_autolink] = ACTIONS(991), + [sym__whitespace_ge_2] = ACTIONS(991), + [aux_sym__whitespace_token1] = ACTIONS(993), + [sym__word_no_digit] = ACTIONS(991), + [sym__digits] = ACTIONS(991), + [aux_sym__newline_token1] = ACTIONS(991), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(991), + [sym_atx_h2_marker] = ACTIONS(991), + [sym_atx_h3_marker] = ACTIONS(991), + [sym_atx_h4_marker] = ACTIONS(991), + [sym_atx_h5_marker] = ACTIONS(991), + [sym_atx_h6_marker] = ACTIONS(991), + [sym__thematic_break] = ACTIONS(991), + [sym__list_marker_minus] = ACTIONS(991), + [sym__list_marker_plus] = ACTIONS(991), + [sym__list_marker_star] = ACTIONS(991), + [sym__list_marker_parenthesis] = ACTIONS(991), + [sym__list_marker_dot] = ACTIONS(991), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_star_dont_interrupt] = ACTIONS(991), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(991), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(991), + [sym__fenced_code_block_start_backtick] = ACTIONS(991), + [sym__fenced_code_block_start_tilde] = ACTIONS(991), + [sym__blank_line_start] = ACTIONS(991), + [sym__code_span_start] = ACTIONS(991), + [sym__emphasis_open_star] = ACTIONS(991), + [sym__emphasis_open_underscore] = ACTIONS(991), + [sym__last_token_whitespace] = ACTIONS(93), }, - [180] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_COLON] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_QMARK] = ACTIONS(970), - [anon_sym_AT] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_BSLASH] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(970), - [anon_sym__] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [aux_sym__html_block_1_token1] = ACTIONS(970), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(972), - [anon_sym_LT_QMARK] = ACTIONS(972), - [aux_sym__html_block_4_token1] = ACTIONS(972), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(970), - [aux_sym__html_block_6_token1] = ACTIONS(972), - [aux_sym__html_block_6_token2] = ACTIONS(970), - [sym__open_tag_html_block] = ACTIONS(970), - [sym__open_tag_html_block_newline] = ACTIONS(970), - [sym__closing_tag_html_block] = ACTIONS(970), - [sym__closing_tag_html_block_newline] = ACTIONS(970), - [sym_backslash_escape] = ACTIONS(970), - [sym_entity_reference] = ACTIONS(970), - [sym_numeric_character_reference] = ACTIONS(970), - [sym_uri_autolink] = ACTIONS(970), - [sym_email_autolink] = ACTIONS(970), - [sym__whitespace_ge_2] = ACTIONS(970), - [aux_sym__whitespace_token1] = ACTIONS(972), - [sym__word_no_digit] = ACTIONS(970), - [sym__digits] = ACTIONS(970), - [aux_sym__newline_token1] = ACTIONS(970), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(970), - [sym__indented_chunk_start] = ACTIONS(970), - [sym_atx_h1_marker] = ACTIONS(970), - [sym_atx_h2_marker] = ACTIONS(970), - [sym_atx_h3_marker] = ACTIONS(970), - [sym_atx_h4_marker] = ACTIONS(970), - [sym_atx_h5_marker] = ACTIONS(970), - [sym_atx_h6_marker] = ACTIONS(970), - [sym__thematic_break] = ACTIONS(970), - [sym__list_marker_minus] = ACTIONS(970), - [sym__list_marker_plus] = ACTIONS(970), - [sym__list_marker_star] = ACTIONS(970), - [sym__list_marker_parenthesis] = ACTIONS(970), - [sym__list_marker_dot] = ACTIONS(970), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(970), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(970), - [sym__list_marker_star_dont_interrupt] = ACTIONS(970), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(970), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(970), - [sym__fenced_code_block_start_backtick] = ACTIONS(970), - [sym__fenced_code_block_start_tilde] = ACTIONS(970), - [sym__blank_line_start] = ACTIONS(970), - [sym__code_span_start] = ACTIONS(970), - [sym__emphasis_open_star] = ACTIONS(970), - [sym__emphasis_open_underscore] = ACTIONS(970), - [sym__last_token_whitespace] = ACTIONS(111), + [154] = { + [aux_sym__ignore_matching_tokens] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_BSLASH] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym__] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [aux_sym__html_block_1_token1] = ACTIONS(991), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(993), + [anon_sym_LT_QMARK] = ACTIONS(993), + [aux_sym__html_block_4_token1] = ACTIONS(993), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(991), + [aux_sym__html_block_6_token1] = ACTIONS(993), + [aux_sym__html_block_6_token2] = ACTIONS(991), + [sym__open_tag_html_block] = ACTIONS(991), + [sym__open_tag_html_block_newline] = ACTIONS(991), + [sym__closing_tag_html_block] = ACTIONS(991), + [sym__closing_tag_html_block_newline] = ACTIONS(991), + [sym_backslash_escape] = ACTIONS(991), + [sym_entity_reference] = ACTIONS(991), + [sym_numeric_character_reference] = ACTIONS(991), + [sym_uri_autolink] = ACTIONS(991), + [sym_email_autolink] = ACTIONS(991), + [sym__whitespace_ge_2] = ACTIONS(991), + [aux_sym__whitespace_token1] = ACTIONS(993), + [sym__word_no_digit] = ACTIONS(991), + [sym__digits] = ACTIONS(991), + [aux_sym__newline_token1] = ACTIONS(991), + [sym__block_continuation] = ACTIONS(995), + [sym__block_quote_continuation] = ACTIONS(995), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(991), + [sym_atx_h2_marker] = ACTIONS(991), + [sym_atx_h3_marker] = ACTIONS(991), + [sym_atx_h4_marker] = ACTIONS(991), + [sym_atx_h5_marker] = ACTIONS(991), + [sym_atx_h6_marker] = ACTIONS(991), + [sym__thematic_break] = ACTIONS(991), + [sym__list_marker_minus] = ACTIONS(991), + [sym__list_marker_plus] = ACTIONS(991), + [sym__list_marker_star] = ACTIONS(991), + [sym__list_marker_parenthesis] = ACTIONS(991), + [sym__list_marker_dot] = ACTIONS(991), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_star_dont_interrupt] = ACTIONS(991), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(991), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(991), + [sym__fenced_code_block_start_backtick] = ACTIONS(991), + [sym__fenced_code_block_start_tilde] = ACTIONS(991), + [sym__blank_line_start] = ACTIONS(991), + [sym__code_span_start] = ACTIONS(991), + [sym__emphasis_open_star] = ACTIONS(991), + [sym__emphasis_open_underscore] = ACTIONS(991), + [sym__last_token_whitespace] = ACTIONS(995), }, - [181] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(954), - [anon_sym_AT] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_BSLASH] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym__] = ACTIONS(954), - [anon_sym_BQUOTE] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [aux_sym__html_block_1_token1] = ACTIONS(954), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(956), - [anon_sym_LT_QMARK] = ACTIONS(956), - [aux_sym__html_block_4_token1] = ACTIONS(956), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(954), - [aux_sym__html_block_6_token1] = ACTIONS(956), - [aux_sym__html_block_6_token2] = ACTIONS(954), - [sym__open_tag_html_block] = ACTIONS(954), - [sym__open_tag_html_block_newline] = ACTIONS(954), - [sym__closing_tag_html_block] = ACTIONS(954), - [sym__closing_tag_html_block_newline] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [sym_entity_reference] = ACTIONS(954), - [sym_numeric_character_reference] = ACTIONS(954), - [sym_uri_autolink] = ACTIONS(954), - [sym_email_autolink] = ACTIONS(954), - [sym__whitespace_ge_2] = ACTIONS(954), - [aux_sym__whitespace_token1] = ACTIONS(956), - [sym__word_no_digit] = ACTIONS(954), - [sym__digits] = ACTIONS(954), - [aux_sym__newline_token1] = ACTIONS(954), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(954), - [sym__indented_chunk_start] = ACTIONS(954), - [sym_atx_h1_marker] = ACTIONS(954), - [sym_atx_h2_marker] = ACTIONS(954), - [sym_atx_h3_marker] = ACTIONS(954), - [sym_atx_h4_marker] = ACTIONS(954), - [sym_atx_h5_marker] = ACTIONS(954), - [sym_atx_h6_marker] = ACTIONS(954), - [sym__thematic_break] = ACTIONS(954), - [sym__list_marker_minus] = ACTIONS(954), - [sym__list_marker_plus] = ACTIONS(954), - [sym__list_marker_star] = ACTIONS(954), - [sym__list_marker_parenthesis] = ACTIONS(954), - [sym__list_marker_dot] = ACTIONS(954), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_star_dont_interrupt] = ACTIONS(954), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(954), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(954), - [sym__fenced_code_block_start_backtick] = ACTIONS(954), - [sym__fenced_code_block_start_tilde] = ACTIONS(954), - [sym__blank_line_start] = ACTIONS(954), - [sym__code_span_start] = ACTIONS(954), - [sym__emphasis_open_star] = ACTIONS(954), - [sym__emphasis_open_underscore] = ACTIONS(954), - [sym__last_token_whitespace] = ACTIONS(111), + [155] = { + [sym__block_interrupt_paragraph] = STATE(718), + [sym_thematic_break] = STATE(718), + [sym_atx_heading] = STATE(718), + [sym_fenced_code_block] = STATE(718), + [sym__html_block_1] = STATE(718), + [sym__html_block_2] = STATE(718), + [sym__html_block_3] = STATE(718), + [sym__html_block_4] = STATE(718), + [sym__html_block_5] = STATE(718), + [sym__html_block_6] = STATE(718), + [sym__blank_line] = STATE(718), + [sym_block_quote] = STATE(718), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(459), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(461), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(465), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(467), + [aux_sym__html_block_6_token1] = ACTIONS(469), + [aux_sym__html_block_6_token2] = ACTIONS(471), + [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(473), + [sym_atx_h1_marker] = ACTIONS(475), + [sym_atx_h2_marker] = ACTIONS(475), + [sym_atx_h3_marker] = ACTIONS(475), + [sym_atx_h4_marker] = ACTIONS(475), + [sym_atx_h5_marker] = ACTIONS(475), + [sym_atx_h6_marker] = ACTIONS(475), + [sym_setext_h1_underline] = ACTIONS(477), + [sym_setext_h2_underline] = ACTIONS(477), + [sym__thematic_break] = ACTIONS(479), + [sym__list_marker_minus] = ACTIONS(477), + [sym__list_marker_plus] = ACTIONS(477), + [sym__list_marker_star] = ACTIONS(477), + [sym__list_marker_parenthesis] = ACTIONS(477), + [sym__list_marker_dot] = ACTIONS(477), + [sym__fenced_code_block_start_backtick] = ACTIONS(481), + [sym__fenced_code_block_start_tilde] = ACTIONS(483), + [sym__blank_line_start] = ACTIONS(485), + [sym__code_span_start] = ACTIONS(415), + [sym__emphasis_open_star] = ACTIONS(415), + [sym__emphasis_open_underscore] = ACTIONS(415), + [sym__emphasis_close_star] = ACTIONS(415), }, - [182] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_PERCENT] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(918), - [anon_sym_COLON] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_QMARK] = ACTIONS(918), - [anon_sym_AT] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_BSLASH] = ACTIONS(920), - [anon_sym_RBRACK] = ACTIONS(918), - [anon_sym_CARET] = ACTIONS(918), - [anon_sym__] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [aux_sym__html_block_1_token1] = ACTIONS(918), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(920), - [anon_sym_LT_QMARK] = ACTIONS(920), - [aux_sym__html_block_4_token1] = ACTIONS(920), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(918), - [aux_sym__html_block_6_token1] = ACTIONS(920), - [aux_sym__html_block_6_token2] = ACTIONS(918), - [sym__open_tag_html_block] = ACTIONS(918), - [sym__open_tag_html_block_newline] = ACTIONS(918), - [sym__closing_tag_html_block] = ACTIONS(918), - [sym__closing_tag_html_block_newline] = ACTIONS(918), - [sym_backslash_escape] = ACTIONS(918), - [sym_entity_reference] = ACTIONS(918), - [sym_numeric_character_reference] = ACTIONS(918), - [sym_uri_autolink] = ACTIONS(918), - [sym_email_autolink] = ACTIONS(918), - [sym__whitespace_ge_2] = ACTIONS(918), - [aux_sym__whitespace_token1] = ACTIONS(920), - [sym__word_no_digit] = ACTIONS(918), - [sym__digits] = ACTIONS(918), - [aux_sym__newline_token1] = ACTIONS(918), - [sym__block_close] = ACTIONS(918), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(918), - [sym__indented_chunk_start] = ACTIONS(918), - [sym_atx_h1_marker] = ACTIONS(918), - [sym_atx_h2_marker] = ACTIONS(918), - [sym_atx_h3_marker] = ACTIONS(918), - [sym_atx_h4_marker] = ACTIONS(918), - [sym_atx_h5_marker] = ACTIONS(918), - [sym_atx_h6_marker] = ACTIONS(918), - [sym__thematic_break] = ACTIONS(918), - [sym__list_marker_minus] = ACTIONS(918), - [sym__list_marker_plus] = ACTIONS(918), - [sym__list_marker_star] = ACTIONS(918), - [sym__list_marker_parenthesis] = ACTIONS(918), - [sym__list_marker_dot] = ACTIONS(918), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(918), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(918), - [sym__list_marker_star_dont_interrupt] = ACTIONS(918), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(918), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(918), - [sym__fenced_code_block_start_backtick] = ACTIONS(918), - [sym__fenced_code_block_start_tilde] = ACTIONS(918), - [sym__blank_line_start] = ACTIONS(918), - [sym__code_span_start] = ACTIONS(918), - [sym__emphasis_open_star] = ACTIONS(918), - [sym__emphasis_open_underscore] = ACTIONS(918), - [sym__last_token_whitespace] = ACTIONS(115), + [156] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym__] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [aux_sym__html_block_1_token1] = ACTIONS(402), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(404), + [anon_sym_LT_QMARK] = ACTIONS(404), + [aux_sym__html_block_4_token1] = ACTIONS(404), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(402), + [aux_sym__html_block_6_token1] = ACTIONS(404), + [aux_sym__html_block_6_token2] = ACTIONS(402), + [sym__open_tag_html_block] = ACTIONS(402), + [sym__open_tag_html_block_newline] = ACTIONS(402), + [sym__closing_tag_html_block] = ACTIONS(402), + [sym__closing_tag_html_block_newline] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [sym_entity_reference] = ACTIONS(402), + [sym_numeric_character_reference] = ACTIONS(402), + [sym_uri_autolink] = ACTIONS(402), + [sym_email_autolink] = ACTIONS(402), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(404), + [sym__word_no_digit] = ACTIONS(402), + [sym__digits] = ACTIONS(402), + [aux_sym__newline_token1] = ACTIONS(402), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(402), + [sym__indented_chunk_start] = ACTIONS(402), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(402), + [sym_atx_h4_marker] = ACTIONS(402), + [sym_atx_h5_marker] = ACTIONS(402), + [sym_atx_h6_marker] = ACTIONS(402), + [sym__thematic_break] = ACTIONS(402), + [sym__list_marker_minus] = ACTIONS(402), + [sym__list_marker_plus] = ACTIONS(402), + [sym__list_marker_star] = ACTIONS(402), + [sym__list_marker_parenthesis] = ACTIONS(402), + [sym__list_marker_dot] = ACTIONS(402), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_star_dont_interrupt] = ACTIONS(402), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(402), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(402), + [sym__fenced_code_block_start_backtick] = ACTIONS(402), + [sym__fenced_code_block_start_tilde] = ACTIONS(402), + [sym__blank_line_start] = ACTIONS(402), + [sym__code_span_start] = ACTIONS(402), + [sym__emphasis_open_star] = ACTIONS(402), + [sym__emphasis_open_underscore] = ACTIONS(402), + [sym__last_token_whitespace] = ACTIONS(93), }, - [183] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(183), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_BSLASH] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym__] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(911), - [aux_sym__html_block_1_token1] = ACTIONS(911), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(913), - [anon_sym_LT_QMARK] = ACTIONS(913), - [aux_sym__html_block_4_token1] = ACTIONS(913), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(911), - [aux_sym__html_block_6_token1] = ACTIONS(913), - [aux_sym__html_block_6_token2] = ACTIONS(911), - [sym__open_tag_html_block] = ACTIONS(911), - [sym__open_tag_html_block_newline] = ACTIONS(911), - [sym__closing_tag_html_block] = ACTIONS(911), - [sym__closing_tag_html_block_newline] = ACTIONS(911), - [sym_backslash_escape] = ACTIONS(911), - [sym_entity_reference] = ACTIONS(911), - [sym_numeric_character_reference] = ACTIONS(911), - [sym_uri_autolink] = ACTIONS(911), - [sym_email_autolink] = ACTIONS(911), - [sym__whitespace_ge_2] = ACTIONS(911), - [aux_sym__whitespace_token1] = ACTIONS(913), - [sym__word_no_digit] = ACTIONS(911), - [sym__digits] = ACTIONS(911), - [aux_sym__newline_token1] = ACTIONS(911), - [sym__block_close] = ACTIONS(911), - [sym__block_quote_start] = ACTIONS(911), - [sym__indented_chunk_start] = ACTIONS(911), - [sym_atx_h1_marker] = ACTIONS(911), - [sym_atx_h2_marker] = ACTIONS(911), - [sym_atx_h3_marker] = ACTIONS(911), - [sym_atx_h4_marker] = ACTIONS(911), - [sym_atx_h5_marker] = ACTIONS(911), - [sym_atx_h6_marker] = ACTIONS(911), - [sym_setext_h1_underline] = ACTIONS(911), - [sym_setext_h2_underline] = ACTIONS(911), - [sym__thematic_break] = ACTIONS(911), - [sym__list_marker_minus] = ACTIONS(911), - [sym__list_marker_plus] = ACTIONS(911), - [sym__list_marker_star] = ACTIONS(911), - [sym__list_marker_parenthesis] = ACTIONS(911), - [sym__list_marker_dot] = ACTIONS(911), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(911), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(911), - [sym__list_marker_star_dont_interrupt] = ACTIONS(911), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(911), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(911), - [sym__fenced_code_block_start_backtick] = ACTIONS(911), - [sym__fenced_code_block_start_tilde] = ACTIONS(911), - [sym__blank_line_start] = ACTIONS(911), - [sym__split_token] = ACTIONS(974), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(911), - [sym__emphasis_open_underscore] = ACTIONS(911), + [157] = { + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_POUND] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(888), + [anon_sym_PERCENT] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_AT] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_BSLASH] = ACTIONS(890), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_CARET] = ACTIONS(888), + [anon_sym__] = ACTIONS(888), + [anon_sym_BQUOTE] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_TILDE] = ACTIONS(888), + [aux_sym__html_block_1_token1] = ACTIONS(888), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(890), + [anon_sym_LT_QMARK] = ACTIONS(890), + [aux_sym__html_block_4_token1] = ACTIONS(890), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(888), + [aux_sym__html_block_6_token1] = ACTIONS(890), + [aux_sym__html_block_6_token2] = ACTIONS(888), + [sym__open_tag_html_block] = ACTIONS(888), + [sym__open_tag_html_block_newline] = ACTIONS(888), + [sym__closing_tag_html_block] = ACTIONS(888), + [sym__closing_tag_html_block_newline] = ACTIONS(888), + [sym_backslash_escape] = ACTIONS(888), + [sym_entity_reference] = ACTIONS(888), + [sym_numeric_character_reference] = ACTIONS(888), + [sym_uri_autolink] = ACTIONS(888), + [sym_email_autolink] = ACTIONS(888), + [sym__whitespace_ge_2] = ACTIONS(888), + [aux_sym__whitespace_token1] = ACTIONS(890), + [sym__word_no_digit] = ACTIONS(888), + [sym__digits] = ACTIONS(888), + [aux_sym__newline_token1] = ACTIONS(888), + [sym__block_close] = ACTIONS(888), + [sym__block_quote_start] = ACTIONS(888), + [sym__indented_chunk_start] = ACTIONS(888), + [sym_atx_h1_marker] = ACTIONS(888), + [sym_atx_h2_marker] = ACTIONS(888), + [sym_atx_h3_marker] = ACTIONS(888), + [sym_atx_h4_marker] = ACTIONS(888), + [sym_atx_h5_marker] = ACTIONS(888), + [sym_atx_h6_marker] = ACTIONS(888), + [sym_setext_h1_underline] = ACTIONS(888), + [sym_setext_h2_underline] = ACTIONS(888), + [sym__thematic_break] = ACTIONS(888), + [sym__list_marker_minus] = ACTIONS(888), + [sym__list_marker_plus] = ACTIONS(888), + [sym__list_marker_star] = ACTIONS(888), + [sym__list_marker_parenthesis] = ACTIONS(888), + [sym__list_marker_dot] = ACTIONS(888), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(888), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(888), + [sym__list_marker_star_dont_interrupt] = ACTIONS(888), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(888), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(888), + [sym__fenced_code_block_start_backtick] = ACTIONS(888), + [sym__fenced_code_block_start_tilde] = ACTIONS(888), + [sym__blank_line_start] = ACTIONS(888), + [sym__split_token] = ACTIONS(892), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(888), + [sym__emphasis_open_star] = ACTIONS(888), + [sym__emphasis_open_underscore] = ACTIONS(888), }, - [184] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_COLON] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_QMARK] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_BSLASH] = ACTIONS(950), - [anon_sym_RBRACK] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym__] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [aux_sym__html_block_1_token1] = ACTIONS(948), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(950), - [anon_sym_LT_QMARK] = ACTIONS(950), - [aux_sym__html_block_4_token1] = ACTIONS(950), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(948), - [aux_sym__html_block_6_token1] = ACTIONS(950), - [aux_sym__html_block_6_token2] = ACTIONS(948), - [sym__open_tag_html_block] = ACTIONS(948), - [sym__open_tag_html_block_newline] = ACTIONS(948), - [sym__closing_tag_html_block] = ACTIONS(948), - [sym__closing_tag_html_block_newline] = ACTIONS(948), - [sym_backslash_escape] = ACTIONS(948), - [sym_entity_reference] = ACTIONS(948), - [sym_numeric_character_reference] = ACTIONS(948), - [sym_uri_autolink] = ACTIONS(948), - [sym_email_autolink] = ACTIONS(948), - [sym__whitespace_ge_2] = ACTIONS(948), - [aux_sym__whitespace_token1] = ACTIONS(950), - [sym__word_no_digit] = ACTIONS(948), - [sym__digits] = ACTIONS(948), - [aux_sym__newline_token1] = ACTIONS(948), + [158] = { + [aux_sym__paragraph_end_newline_repeat1] = STATE(285), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_DOT] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_QMARK] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_BSLASH] = ACTIONS(836), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym__] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_TILDE] = ACTIONS(834), + [aux_sym__html_block_1_token1] = ACTIONS(834), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(836), + [anon_sym_LT_QMARK] = ACTIONS(836), + [aux_sym__html_block_4_token1] = ACTIONS(836), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(834), + [aux_sym__html_block_6_token1] = ACTIONS(836), + [aux_sym__html_block_6_token2] = ACTIONS(834), + [sym__open_tag_html_block] = ACTIONS(834), + [sym__open_tag_html_block_newline] = ACTIONS(834), + [sym__closing_tag_html_block] = ACTIONS(834), + [sym__closing_tag_html_block_newline] = ACTIONS(834), + [sym_backslash_escape] = ACTIONS(834), + [sym_entity_reference] = ACTIONS(834), + [sym_numeric_character_reference] = ACTIONS(834), + [sym_uri_autolink] = ACTIONS(834), + [sym_email_autolink] = ACTIONS(834), + [sym__whitespace_ge_2] = ACTIONS(834), + [aux_sym__whitespace_token1] = ACTIONS(836), + [sym__word_no_digit] = ACTIONS(834), + [sym__digits] = ACTIONS(834), + [aux_sym__newline_token1] = ACTIONS(834), + [sym__block_close] = ACTIONS(834), + [sym__block_quote_start] = ACTIONS(834), + [sym__indented_chunk_start] = ACTIONS(834), + [sym_atx_h1_marker] = ACTIONS(834), + [sym_atx_h2_marker] = ACTIONS(834), + [sym_atx_h3_marker] = ACTIONS(834), + [sym_atx_h4_marker] = ACTIONS(834), + [sym_atx_h5_marker] = ACTIONS(834), + [sym_atx_h6_marker] = ACTIONS(834), + [sym_setext_h1_underline] = ACTIONS(834), + [sym_setext_h2_underline] = ACTIONS(834), + [sym__thematic_break] = ACTIONS(834), + [sym__list_marker_minus] = ACTIONS(834), + [sym__list_marker_plus] = ACTIONS(834), + [sym__list_marker_star] = ACTIONS(834), + [sym__list_marker_parenthesis] = ACTIONS(834), + [sym__list_marker_dot] = ACTIONS(834), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(834), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(834), + [sym__list_marker_star_dont_interrupt] = ACTIONS(834), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(834), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(834), + [sym__fenced_code_block_start_backtick] = ACTIONS(834), + [sym__fenced_code_block_start_tilde] = ACTIONS(834), + [sym__blank_line_start] = ACTIONS(834), + [sym__split_token] = ACTIONS(997), + [sym__code_span_start] = ACTIONS(834), + [sym__emphasis_open_star] = ACTIONS(834), + [sym__emphasis_open_underscore] = ACTIONS(834), + }, + [159] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_DOT] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_BSLASH] = ACTIONS(794), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym__] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [aux_sym__html_block_1_token1] = ACTIONS(792), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(794), + [anon_sym_LT_QMARK] = ACTIONS(794), + [aux_sym__html_block_4_token1] = ACTIONS(794), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(792), + [aux_sym__html_block_6_token1] = ACTIONS(794), + [aux_sym__html_block_6_token2] = ACTIONS(792), + [sym__open_tag_html_block] = ACTIONS(792), + [sym__open_tag_html_block_newline] = ACTIONS(792), + [sym__closing_tag_html_block] = ACTIONS(792), + [sym__closing_tag_html_block_newline] = ACTIONS(792), + [sym_backslash_escape] = ACTIONS(792), + [sym_entity_reference] = ACTIONS(792), + [sym_numeric_character_reference] = ACTIONS(792), + [sym_uri_autolink] = ACTIONS(792), + [sym_email_autolink] = ACTIONS(792), + [sym__whitespace_ge_2] = ACTIONS(792), + [aux_sym__whitespace_token1] = ACTIONS(794), + [sym__word_no_digit] = ACTIONS(792), + [sym__digits] = ACTIONS(792), + [aux_sym__newline_token1] = ACTIONS(792), + [sym__block_close] = ACTIONS(792), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(948), - [sym__indented_chunk_start] = ACTIONS(948), - [sym_atx_h1_marker] = ACTIONS(948), - [sym_atx_h2_marker] = ACTIONS(948), - [sym_atx_h3_marker] = ACTIONS(948), - [sym_atx_h4_marker] = ACTIONS(948), - [sym_atx_h5_marker] = ACTIONS(948), - [sym_atx_h6_marker] = ACTIONS(948), - [sym__thematic_break] = ACTIONS(948), - [sym__list_marker_minus] = ACTIONS(948), - [sym__list_marker_plus] = ACTIONS(948), - [sym__list_marker_star] = ACTIONS(948), - [sym__list_marker_parenthesis] = ACTIONS(948), - [sym__list_marker_dot] = ACTIONS(948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(948), - [sym__fenced_code_block_start_backtick] = ACTIONS(948), - [sym__fenced_code_block_start_tilde] = ACTIONS(948), - [sym__blank_line_start] = ACTIONS(948), - [sym__code_span_start] = ACTIONS(948), - [sym__emphasis_open_star] = ACTIONS(948), - [sym__emphasis_open_underscore] = ACTIONS(948), + [sym__block_quote_start] = ACTIONS(792), + [sym__indented_chunk_start] = ACTIONS(792), + [sym_atx_h1_marker] = ACTIONS(792), + [sym_atx_h2_marker] = ACTIONS(792), + [sym_atx_h3_marker] = ACTIONS(792), + [sym_atx_h4_marker] = ACTIONS(792), + [sym_atx_h5_marker] = ACTIONS(792), + [sym_atx_h6_marker] = ACTIONS(792), + [sym__thematic_break] = ACTIONS(792), + [sym__list_marker_minus] = ACTIONS(792), + [sym__list_marker_plus] = ACTIONS(792), + [sym__list_marker_star] = ACTIONS(792), + [sym__list_marker_parenthesis] = ACTIONS(792), + [sym__list_marker_dot] = ACTIONS(792), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_star_dont_interrupt] = ACTIONS(792), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(792), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(792), + [sym__fenced_code_block_start_backtick] = ACTIONS(792), + [sym__fenced_code_block_start_tilde] = ACTIONS(792), + [sym__blank_line_start] = ACTIONS(792), + [sym__code_span_start] = ACTIONS(792), + [sym__emphasis_open_star] = ACTIONS(792), + [sym__emphasis_open_underscore] = ACTIONS(792), [sym__last_token_whitespace] = ACTIONS(111), }, - [185] = { - [aux_sym__ignore_matching_tokens] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_COLON] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_QMARK] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_BSLASH] = ACTIONS(950), - [anon_sym_RBRACK] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym__] = ACTIONS(948), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [aux_sym__html_block_1_token1] = ACTIONS(948), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(950), - [anon_sym_LT_QMARK] = ACTIONS(950), - [aux_sym__html_block_4_token1] = ACTIONS(950), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(948), - [aux_sym__html_block_6_token1] = ACTIONS(950), - [aux_sym__html_block_6_token2] = ACTIONS(948), - [sym__open_tag_html_block] = ACTIONS(948), - [sym__open_tag_html_block_newline] = ACTIONS(948), - [sym__closing_tag_html_block] = ACTIONS(948), - [sym__closing_tag_html_block_newline] = ACTIONS(948), - [sym_backslash_escape] = ACTIONS(948), - [sym_entity_reference] = ACTIONS(948), - [sym_numeric_character_reference] = ACTIONS(948), - [sym_uri_autolink] = ACTIONS(948), - [sym_email_autolink] = ACTIONS(948), - [sym__whitespace_ge_2] = ACTIONS(948), - [aux_sym__whitespace_token1] = ACTIONS(950), - [sym__word_no_digit] = ACTIONS(948), - [sym__digits] = ACTIONS(948), - [aux_sym__newline_token1] = ACTIONS(948), - [sym__block_continuation] = ACTIONS(977), - [sym__block_quote_continuation] = ACTIONS(977), - [sym__block_quote_start] = ACTIONS(948), - [sym__indented_chunk_start] = ACTIONS(948), - [sym_atx_h1_marker] = ACTIONS(948), - [sym_atx_h2_marker] = ACTIONS(948), - [sym_atx_h3_marker] = ACTIONS(948), - [sym_atx_h4_marker] = ACTIONS(948), - [sym_atx_h5_marker] = ACTIONS(948), - [sym_atx_h6_marker] = ACTIONS(948), - [sym__thematic_break] = ACTIONS(948), - [sym__list_marker_minus] = ACTIONS(948), - [sym__list_marker_plus] = ACTIONS(948), - [sym__list_marker_star] = ACTIONS(948), - [sym__list_marker_parenthesis] = ACTIONS(948), - [sym__list_marker_dot] = ACTIONS(948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(948), - [sym__fenced_code_block_start_backtick] = ACTIONS(948), - [sym__fenced_code_block_start_tilde] = ACTIONS(948), - [sym__blank_line_start] = ACTIONS(948), - [sym__code_span_start] = ACTIONS(948), - [sym__emphasis_open_star] = ACTIONS(948), - [sym__emphasis_open_underscore] = ACTIONS(948), - [sym__last_token_whitespace] = ACTIONS(977), - }, - [186] = { - [aux_sym__ignore_matching_tokens] = STATE(163), - [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(979), - [sym__block_quote_continuation] = ACTIONS(979), - [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(979), - }, - [187] = { + [160] = { [aux_sym__ignore_matching_tokens] = STATE(286), - [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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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(115), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_DOT] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_BSLASH] = ACTIONS(794), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym__] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [aux_sym__html_block_1_token1] = ACTIONS(792), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(794), + [anon_sym_LT_QMARK] = ACTIONS(794), + [aux_sym__html_block_4_token1] = ACTIONS(794), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(792), + [aux_sym__html_block_6_token1] = ACTIONS(794), + [aux_sym__html_block_6_token2] = ACTIONS(792), + [sym__open_tag_html_block] = ACTIONS(792), + [sym__open_tag_html_block_newline] = ACTIONS(792), + [sym__closing_tag_html_block] = ACTIONS(792), + [sym__closing_tag_html_block_newline] = ACTIONS(792), + [sym_backslash_escape] = ACTIONS(792), + [sym_entity_reference] = ACTIONS(792), + [sym_numeric_character_reference] = ACTIONS(792), + [sym_uri_autolink] = ACTIONS(792), + [sym_email_autolink] = ACTIONS(792), + [sym__whitespace_ge_2] = ACTIONS(792), + [aux_sym__whitespace_token1] = ACTIONS(794), + [sym__word_no_digit] = ACTIONS(792), + [sym__digits] = ACTIONS(792), + [aux_sym__newline_token1] = ACTIONS(792), + [sym__block_close] = ACTIONS(792), + [sym__block_continuation] = ACTIONS(999), + [sym__block_quote_continuation] = ACTIONS(999), + [sym__block_quote_start] = ACTIONS(792), + [sym__indented_chunk_start] = ACTIONS(792), + [sym_atx_h1_marker] = ACTIONS(792), + [sym_atx_h2_marker] = ACTIONS(792), + [sym_atx_h3_marker] = ACTIONS(792), + [sym_atx_h4_marker] = ACTIONS(792), + [sym_atx_h5_marker] = ACTIONS(792), + [sym_atx_h6_marker] = ACTIONS(792), + [sym__thematic_break] = ACTIONS(792), + [sym__list_marker_minus] = ACTIONS(792), + [sym__list_marker_plus] = ACTIONS(792), + [sym__list_marker_star] = ACTIONS(792), + [sym__list_marker_parenthesis] = ACTIONS(792), + [sym__list_marker_dot] = ACTIONS(792), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(792), + [sym__list_marker_star_dont_interrupt] = ACTIONS(792), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(792), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(792), + [sym__fenced_code_block_start_backtick] = ACTIONS(792), + [sym__fenced_code_block_start_tilde] = ACTIONS(792), + [sym__blank_line_start] = ACTIONS(792), + [sym__code_span_start] = ACTIONS(792), + [sym__emphasis_open_star] = ACTIONS(792), + [sym__emphasis_open_underscore] = ACTIONS(792), + [sym__last_token_whitespace] = ACTIONS(999), }, - [188] = { + [161] = { [aux_sym__ignore_matching_tokens] = STATE(164), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [aux_sym__html_block_1_token1] = ACTIONS(729), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(731), - [anon_sym_LT_QMARK] = ACTIONS(731), - [aux_sym__html_block_4_token1] = ACTIONS(731), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [aux_sym__html_block_6_token1] = ACTIONS(731), - [aux_sym__html_block_6_token2] = ACTIONS(729), - [sym__open_tag_html_block] = ACTIONS(729), - [sym__open_tag_html_block_newline] = ACTIONS(729), - [sym__closing_tag_html_block] = ACTIONS(729), - [sym__closing_tag_html_block_newline] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(729), - [sym_entity_reference] = ACTIONS(729), - [sym_numeric_character_reference] = ACTIONS(729), - [sym_uri_autolink] = ACTIONS(729), - [sym_email_autolink] = ACTIONS(729), - [sym__whitespace_ge_2] = ACTIONS(729), - [aux_sym__whitespace_token1] = ACTIONS(731), - [sym__word_no_digit] = ACTIONS(729), - [sym__digits] = ACTIONS(729), - [aux_sym__newline_token1] = ACTIONS(729), - [sym__block_close] = ACTIONS(729), - [sym__block_continuation] = ACTIONS(981), - [sym__block_quote_continuation] = ACTIONS(981), - [sym__block_quote_start] = ACTIONS(729), - [sym__indented_chunk_start] = ACTIONS(729), - [sym_atx_h1_marker] = ACTIONS(729), - [sym_atx_h2_marker] = ACTIONS(729), - [sym_atx_h3_marker] = ACTIONS(729), - [sym_atx_h4_marker] = ACTIONS(729), - [sym_atx_h5_marker] = ACTIONS(729), - [sym_atx_h6_marker] = ACTIONS(729), - [sym__thematic_break] = ACTIONS(729), - [sym__list_marker_minus] = ACTIONS(729), - [sym__list_marker_plus] = ACTIONS(729), - [sym__list_marker_star] = ACTIONS(729), - [sym__list_marker_parenthesis] = ACTIONS(729), - [sym__list_marker_dot] = ACTIONS(729), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_star_dont_interrupt] = ACTIONS(729), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(729), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(729), - [sym__fenced_code_block_start_backtick] = ACTIONS(729), - [sym__fenced_code_block_start_tilde] = ACTIONS(729), - [sym__blank_line_start] = ACTIONS(729), - [sym__code_span_start] = ACTIONS(729), - [sym__emphasis_open_star] = ACTIONS(729), - [sym__emphasis_open_underscore] = ACTIONS(729), - [sym__last_token_whitespace] = ACTIONS(981), - }, - [189] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_POUND] = ACTIONS(729), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [aux_sym__html_block_1_token1] = ACTIONS(729), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(731), - [anon_sym_LT_QMARK] = ACTIONS(731), - [aux_sym__html_block_4_token1] = ACTIONS(731), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [aux_sym__html_block_6_token1] = ACTIONS(731), - [aux_sym__html_block_6_token2] = ACTIONS(729), - [sym__open_tag_html_block] = ACTIONS(729), - [sym__open_tag_html_block_newline] = ACTIONS(729), - [sym__closing_tag_html_block] = ACTIONS(729), - [sym__closing_tag_html_block_newline] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(729), - [sym_entity_reference] = ACTIONS(729), - [sym_numeric_character_reference] = ACTIONS(729), - [sym_uri_autolink] = ACTIONS(729), - [sym_email_autolink] = ACTIONS(729), - [sym__whitespace_ge_2] = ACTIONS(729), - [aux_sym__whitespace_token1] = ACTIONS(731), - [sym__word_no_digit] = ACTIONS(729), - [sym__digits] = ACTIONS(729), - [aux_sym__newline_token1] = ACTIONS(729), - [sym__block_close] = ACTIONS(729), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(729), - [sym__indented_chunk_start] = ACTIONS(729), - [sym_atx_h1_marker] = ACTIONS(729), - [sym_atx_h2_marker] = ACTIONS(729), - [sym_atx_h3_marker] = ACTIONS(729), - [sym_atx_h4_marker] = ACTIONS(729), - [sym_atx_h5_marker] = ACTIONS(729), - [sym_atx_h6_marker] = ACTIONS(729), - [sym__thematic_break] = ACTIONS(729), - [sym__list_marker_minus] = ACTIONS(729), - [sym__list_marker_plus] = ACTIONS(729), - [sym__list_marker_star] = ACTIONS(729), - [sym__list_marker_parenthesis] = ACTIONS(729), - [sym__list_marker_dot] = ACTIONS(729), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(729), - [sym__list_marker_star_dont_interrupt] = ACTIONS(729), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(729), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(729), - [sym__fenced_code_block_start_backtick] = ACTIONS(729), - [sym__fenced_code_block_start_tilde] = ACTIONS(729), - [sym__blank_line_start] = ACTIONS(729), - [sym__code_span_start] = ACTIONS(729), - [sym__emphasis_open_star] = ACTIONS(729), - [sym__emphasis_open_underscore] = ACTIONS(729), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [190] = { - [aux_sym__ignore_matching_tokens] = STATE(165), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(735), - [anon_sym_AT] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym__] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [aux_sym__html_block_1_token1] = ACTIONS(735), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(737), - [anon_sym_LT_QMARK] = ACTIONS(737), - [aux_sym__html_block_4_token1] = ACTIONS(737), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(735), - [aux_sym__html_block_6_token1] = ACTIONS(737), - [aux_sym__html_block_6_token2] = ACTIONS(735), - [sym__open_tag_html_block] = ACTIONS(735), - [sym__open_tag_html_block_newline] = ACTIONS(735), - [sym__closing_tag_html_block] = ACTIONS(735), - [sym__closing_tag_html_block_newline] = ACTIONS(735), - [sym_backslash_escape] = ACTIONS(735), - [sym_entity_reference] = ACTIONS(735), - [sym_numeric_character_reference] = ACTIONS(735), - [sym_uri_autolink] = ACTIONS(735), - [sym_email_autolink] = ACTIONS(735), - [sym__whitespace_ge_2] = ACTIONS(735), - [aux_sym__whitespace_token1] = ACTIONS(737), - [sym__word_no_digit] = ACTIONS(735), - [sym__digits] = ACTIONS(735), - [aux_sym__newline_token1] = ACTIONS(735), - [sym__block_close] = ACTIONS(735), - [sym__block_continuation] = ACTIONS(983), - [sym__block_quote_continuation] = ACTIONS(983), - [sym__block_quote_start] = ACTIONS(735), - [sym__indented_chunk_start] = ACTIONS(735), - [sym_atx_h1_marker] = ACTIONS(735), - [sym_atx_h2_marker] = ACTIONS(735), - [sym_atx_h3_marker] = ACTIONS(735), - [sym_atx_h4_marker] = ACTIONS(735), - [sym_atx_h5_marker] = ACTIONS(735), - [sym_atx_h6_marker] = ACTIONS(735), - [sym__thematic_break] = ACTIONS(735), - [sym__list_marker_minus] = ACTIONS(735), - [sym__list_marker_plus] = ACTIONS(735), - [sym__list_marker_star] = ACTIONS(735), - [sym__list_marker_parenthesis] = ACTIONS(735), - [sym__list_marker_dot] = ACTIONS(735), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_star_dont_interrupt] = ACTIONS(735), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(735), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(735), - [sym__fenced_code_block_start_backtick] = ACTIONS(735), - [sym__fenced_code_block_start_tilde] = ACTIONS(735), - [sym__blank_line_start] = ACTIONS(735), - [sym__code_span_start] = ACTIONS(735), - [sym__emphasis_open_star] = ACTIONS(735), - [sym__emphasis_open_underscore] = ACTIONS(735), - [sym__last_token_whitespace] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_BSLASH] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [aux_sym__html_block_1_token1] = ACTIONS(744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(746), + [anon_sym_LT_QMARK] = ACTIONS(746), + [aux_sym__html_block_4_token1] = ACTIONS(746), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(744), + [aux_sym__html_block_6_token1] = ACTIONS(746), + [aux_sym__html_block_6_token2] = ACTIONS(744), + [sym__open_tag_html_block] = ACTIONS(744), + [sym__open_tag_html_block_newline] = ACTIONS(744), + [sym__closing_tag_html_block] = ACTIONS(744), + [sym__closing_tag_html_block_newline] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [sym_entity_reference] = ACTIONS(744), + [sym_numeric_character_reference] = ACTIONS(744), + [sym_uri_autolink] = ACTIONS(744), + [sym_email_autolink] = ACTIONS(744), + [sym__whitespace_ge_2] = ACTIONS(744), + [aux_sym__whitespace_token1] = ACTIONS(746), + [sym__word_no_digit] = ACTIONS(744), + [sym__digits] = ACTIONS(744), + [aux_sym__newline_token1] = ACTIONS(744), + [sym__block_close] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(744), + [sym__indented_chunk_start] = ACTIONS(744), + [sym_atx_h1_marker] = ACTIONS(744), + [sym_atx_h2_marker] = ACTIONS(744), + [sym_atx_h3_marker] = ACTIONS(744), + [sym_atx_h4_marker] = ACTIONS(744), + [sym_atx_h5_marker] = ACTIONS(744), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(744), + [sym__list_marker_minus] = ACTIONS(744), + [sym__list_marker_plus] = ACTIONS(744), + [sym__list_marker_star] = ACTIONS(744), + [sym__list_marker_parenthesis] = ACTIONS(744), + [sym__list_marker_dot] = ACTIONS(744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(744), + [sym__fenced_code_block_start_backtick] = ACTIONS(744), + [sym__fenced_code_block_start_tilde] = ACTIONS(744), + [sym__blank_line_start] = ACTIONS(744), + [sym__code_span_start] = ACTIONS(744), + [sym__emphasis_open_star] = ACTIONS(744), + [sym__emphasis_open_underscore] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(111), }, - [191] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [anon_sym_POUND] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(737), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_COLON] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(735), - [anon_sym_AT] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym__] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [aux_sym__html_block_1_token1] = ACTIONS(735), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(737), - [anon_sym_LT_QMARK] = ACTIONS(737), - [aux_sym__html_block_4_token1] = ACTIONS(737), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(735), - [aux_sym__html_block_6_token1] = ACTIONS(737), - [aux_sym__html_block_6_token2] = ACTIONS(735), - [sym__open_tag_html_block] = ACTIONS(735), - [sym__open_tag_html_block_newline] = ACTIONS(735), - [sym__closing_tag_html_block] = ACTIONS(735), - [sym__closing_tag_html_block_newline] = ACTIONS(735), - [sym_backslash_escape] = ACTIONS(735), - [sym_entity_reference] = ACTIONS(735), - [sym_numeric_character_reference] = ACTIONS(735), - [sym_uri_autolink] = ACTIONS(735), - [sym_email_autolink] = ACTIONS(735), - [sym__whitespace_ge_2] = ACTIONS(735), - [aux_sym__whitespace_token1] = ACTIONS(737), - [sym__word_no_digit] = ACTIONS(735), - [sym__digits] = ACTIONS(735), - [aux_sym__newline_token1] = ACTIONS(735), - [sym__block_close] = ACTIONS(735), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(735), - [sym__indented_chunk_start] = ACTIONS(735), - [sym_atx_h1_marker] = ACTIONS(735), - [sym_atx_h2_marker] = ACTIONS(735), - [sym_atx_h3_marker] = ACTIONS(735), - [sym_atx_h4_marker] = ACTIONS(735), - [sym_atx_h5_marker] = ACTIONS(735), - [sym_atx_h6_marker] = ACTIONS(735), - [sym__thematic_break] = ACTIONS(735), - [sym__list_marker_minus] = ACTIONS(735), - [sym__list_marker_plus] = ACTIONS(735), - [sym__list_marker_star] = ACTIONS(735), - [sym__list_marker_parenthesis] = ACTIONS(735), - [sym__list_marker_dot] = ACTIONS(735), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(735), - [sym__list_marker_star_dont_interrupt] = ACTIONS(735), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(735), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(735), - [sym__fenced_code_block_start_backtick] = ACTIONS(735), - [sym__fenced_code_block_start_tilde] = ACTIONS(735), - [sym__blank_line_start] = ACTIONS(735), - [sym__code_span_start] = ACTIONS(735), - [sym__emphasis_open_star] = ACTIONS(735), - [sym__emphasis_open_underscore] = ACTIONS(735), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [192] = { - [aux_sym__ignore_matching_tokens] = STATE(166), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(783), - [anon_sym_POUND] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym__] = ACTIONS(783), - [anon_sym_BQUOTE] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [aux_sym__html_block_1_token1] = ACTIONS(783), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(785), - [anon_sym_LT_QMARK] = ACTIONS(785), - [aux_sym__html_block_4_token1] = ACTIONS(785), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(783), - [aux_sym__html_block_6_token1] = ACTIONS(785), - [aux_sym__html_block_6_token2] = ACTIONS(783), - [sym__open_tag_html_block] = ACTIONS(783), - [sym__open_tag_html_block_newline] = ACTIONS(783), - [sym__closing_tag_html_block] = ACTIONS(783), - [sym__closing_tag_html_block_newline] = ACTIONS(783), - [sym_backslash_escape] = ACTIONS(783), - [sym_entity_reference] = ACTIONS(783), - [sym_numeric_character_reference] = ACTIONS(783), - [sym_uri_autolink] = ACTIONS(783), - [sym_email_autolink] = ACTIONS(783), - [sym__whitespace_ge_2] = ACTIONS(783), - [aux_sym__whitespace_token1] = ACTIONS(785), - [sym__word_no_digit] = ACTIONS(783), - [sym__digits] = ACTIONS(783), - [aux_sym__newline_token1] = ACTIONS(783), - [sym__block_close] = ACTIONS(783), - [sym__block_continuation] = ACTIONS(985), - [sym__block_quote_continuation] = ACTIONS(985), - [sym__block_quote_start] = ACTIONS(783), - [sym__indented_chunk_start] = ACTIONS(783), - [sym_atx_h1_marker] = ACTIONS(783), - [sym_atx_h2_marker] = ACTIONS(783), - [sym_atx_h3_marker] = ACTIONS(783), - [sym_atx_h4_marker] = ACTIONS(783), - [sym_atx_h5_marker] = ACTIONS(783), - [sym_atx_h6_marker] = ACTIONS(783), - [sym__thematic_break] = ACTIONS(783), - [sym__list_marker_minus] = ACTIONS(783), - [sym__list_marker_plus] = ACTIONS(783), - [sym__list_marker_star] = ACTIONS(783), - [sym__list_marker_parenthesis] = ACTIONS(783), - [sym__list_marker_dot] = ACTIONS(783), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_star_dont_interrupt] = ACTIONS(783), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(783), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(783), - [sym__fenced_code_block_start_backtick] = ACTIONS(783), - [sym__fenced_code_block_start_tilde] = ACTIONS(783), - [sym__blank_line_start] = ACTIONS(783), - [sym__code_span_start] = ACTIONS(783), - [sym__emphasis_open_star] = ACTIONS(783), - [sym__emphasis_open_underscore] = ACTIONS(783), - [sym__last_token_whitespace] = ACTIONS(985), - }, - [193] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(783), - [anon_sym_POUND] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_CARET] = ACTIONS(783), - [anon_sym__] = ACTIONS(783), - [anon_sym_BQUOTE] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [aux_sym__html_block_1_token1] = ACTIONS(783), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(785), - [anon_sym_LT_QMARK] = ACTIONS(785), - [aux_sym__html_block_4_token1] = ACTIONS(785), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(783), - [aux_sym__html_block_6_token1] = ACTIONS(785), - [aux_sym__html_block_6_token2] = ACTIONS(783), - [sym__open_tag_html_block] = ACTIONS(783), - [sym__open_tag_html_block_newline] = ACTIONS(783), - [sym__closing_tag_html_block] = ACTIONS(783), - [sym__closing_tag_html_block_newline] = ACTIONS(783), - [sym_backslash_escape] = ACTIONS(783), - [sym_entity_reference] = ACTIONS(783), - [sym_numeric_character_reference] = ACTIONS(783), - [sym_uri_autolink] = ACTIONS(783), - [sym_email_autolink] = ACTIONS(783), - [sym__whitespace_ge_2] = ACTIONS(783), - [aux_sym__whitespace_token1] = ACTIONS(785), - [sym__word_no_digit] = ACTIONS(783), - [sym__digits] = ACTIONS(783), - [aux_sym__newline_token1] = ACTIONS(783), - [sym__block_close] = ACTIONS(783), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(783), - [sym__indented_chunk_start] = ACTIONS(783), - [sym_atx_h1_marker] = ACTIONS(783), - [sym_atx_h2_marker] = ACTIONS(783), - [sym_atx_h3_marker] = ACTIONS(783), - [sym_atx_h4_marker] = ACTIONS(783), - [sym_atx_h5_marker] = ACTIONS(783), - [sym_atx_h6_marker] = ACTIONS(783), - [sym__thematic_break] = ACTIONS(783), - [sym__list_marker_minus] = ACTIONS(783), - [sym__list_marker_plus] = ACTIONS(783), - [sym__list_marker_star] = ACTIONS(783), - [sym__list_marker_parenthesis] = ACTIONS(783), - [sym__list_marker_dot] = ACTIONS(783), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(783), - [sym__list_marker_star_dont_interrupt] = ACTIONS(783), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(783), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(783), - [sym__fenced_code_block_start_backtick] = ACTIONS(783), - [sym__fenced_code_block_start_tilde] = ACTIONS(783), - [sym__blank_line_start] = ACTIONS(783), - [sym__code_span_start] = ACTIONS(783), - [sym__emphasis_open_star] = ACTIONS(783), - [sym__emphasis_open_underscore] = ACTIONS(783), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [194] = { - [aux_sym__ignore_matching_tokens] = STATE(167), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_AT] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_BQUOTE] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(795), - [aux_sym__html_block_1_token1] = ACTIONS(795), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(797), - [anon_sym_LT_QMARK] = ACTIONS(797), - [aux_sym__html_block_4_token1] = ACTIONS(797), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(795), - [aux_sym__html_block_6_token1] = ACTIONS(797), - [aux_sym__html_block_6_token2] = ACTIONS(795), - [sym__open_tag_html_block] = ACTIONS(795), - [sym__open_tag_html_block_newline] = ACTIONS(795), - [sym__closing_tag_html_block] = ACTIONS(795), - [sym__closing_tag_html_block_newline] = ACTIONS(795), - [sym_backslash_escape] = ACTIONS(795), - [sym_entity_reference] = ACTIONS(795), - [sym_numeric_character_reference] = ACTIONS(795), - [sym_uri_autolink] = ACTIONS(795), - [sym_email_autolink] = ACTIONS(795), - [sym__whitespace_ge_2] = ACTIONS(795), - [aux_sym__whitespace_token1] = ACTIONS(797), - [sym__word_no_digit] = ACTIONS(795), - [sym__digits] = ACTIONS(795), - [aux_sym__newline_token1] = ACTIONS(795), - [sym__block_close] = ACTIONS(795), - [sym__block_continuation] = ACTIONS(987), - [sym__block_quote_continuation] = ACTIONS(987), - [sym__block_quote_start] = ACTIONS(795), - [sym__indented_chunk_start] = ACTIONS(795), - [sym_atx_h1_marker] = ACTIONS(795), - [sym_atx_h2_marker] = ACTIONS(795), - [sym_atx_h3_marker] = ACTIONS(795), - [sym_atx_h4_marker] = ACTIONS(795), - [sym_atx_h5_marker] = ACTIONS(795), - [sym_atx_h6_marker] = ACTIONS(795), - [sym__thematic_break] = ACTIONS(795), - [sym__list_marker_minus] = ACTIONS(795), - [sym__list_marker_plus] = ACTIONS(795), - [sym__list_marker_star] = ACTIONS(795), - [sym__list_marker_parenthesis] = ACTIONS(795), - [sym__list_marker_dot] = ACTIONS(795), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_star_dont_interrupt] = ACTIONS(795), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(795), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(795), - [sym__fenced_code_block_start_backtick] = ACTIONS(795), - [sym__fenced_code_block_start_tilde] = ACTIONS(795), - [sym__blank_line_start] = ACTIONS(795), - [sym__code_span_start] = ACTIONS(795), - [sym__emphasis_open_star] = ACTIONS(795), - [sym__emphasis_open_underscore] = ACTIONS(795), - [sym__last_token_whitespace] = ACTIONS(987), - }, - [195] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(795), - [anon_sym_AT] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(795), - [anon_sym_CARET] = ACTIONS(795), - [anon_sym__] = ACTIONS(795), - [anon_sym_BQUOTE] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(795), - [aux_sym__html_block_1_token1] = ACTIONS(795), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(797), - [anon_sym_LT_QMARK] = ACTIONS(797), - [aux_sym__html_block_4_token1] = ACTIONS(797), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(795), - [aux_sym__html_block_6_token1] = ACTIONS(797), - [aux_sym__html_block_6_token2] = ACTIONS(795), - [sym__open_tag_html_block] = ACTIONS(795), - [sym__open_tag_html_block_newline] = ACTIONS(795), - [sym__closing_tag_html_block] = ACTIONS(795), - [sym__closing_tag_html_block_newline] = ACTIONS(795), - [sym_backslash_escape] = ACTIONS(795), - [sym_entity_reference] = ACTIONS(795), - [sym_numeric_character_reference] = ACTIONS(795), - [sym_uri_autolink] = ACTIONS(795), - [sym_email_autolink] = ACTIONS(795), - [sym__whitespace_ge_2] = ACTIONS(795), - [aux_sym__whitespace_token1] = ACTIONS(797), - [sym__word_no_digit] = ACTIONS(795), - [sym__digits] = ACTIONS(795), - [aux_sym__newline_token1] = ACTIONS(795), - [sym__block_close] = ACTIONS(795), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(795), - [sym__indented_chunk_start] = ACTIONS(795), - [sym_atx_h1_marker] = ACTIONS(795), - [sym_atx_h2_marker] = ACTIONS(795), - [sym_atx_h3_marker] = ACTIONS(795), - [sym_atx_h4_marker] = ACTIONS(795), - [sym_atx_h5_marker] = ACTIONS(795), - [sym_atx_h6_marker] = ACTIONS(795), - [sym__thematic_break] = ACTIONS(795), - [sym__list_marker_minus] = ACTIONS(795), - [sym__list_marker_plus] = ACTIONS(795), - [sym__list_marker_star] = ACTIONS(795), - [sym__list_marker_parenthesis] = ACTIONS(795), - [sym__list_marker_dot] = ACTIONS(795), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(795), - [sym__list_marker_star_dont_interrupt] = ACTIONS(795), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(795), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(795), - [sym__fenced_code_block_start_backtick] = ACTIONS(795), - [sym__fenced_code_block_start_tilde] = ACTIONS(795), - [sym__blank_line_start] = ACTIONS(795), - [sym__code_span_start] = ACTIONS(795), - [sym__emphasis_open_star] = ACTIONS(795), - [sym__emphasis_open_underscore] = ACTIONS(795), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [196] = { - [aux_sym__ignore_matching_tokens] = STATE(169), - [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(989), - [sym__block_quote_continuation] = ACTIONS(989), - [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(989), - }, - [197] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(791), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__emphasis_close_underscore] = ACTIONS(991), - }, - [198] = { - [aux_sym__ignore_matching_tokens] = STATE(171), - [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(993), - [sym__block_quote_continuation] = ACTIONS(993), - [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(993), - }, - [199] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_BSLASH] = ACTIONS(944), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym__] = ACTIONS(942), - [anon_sym_BQUOTE] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [aux_sym__html_block_1_token1] = ACTIONS(942), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(944), - [anon_sym_LT_QMARK] = ACTIONS(944), - [aux_sym__html_block_4_token1] = ACTIONS(944), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(942), - [aux_sym__html_block_6_token1] = ACTIONS(944), - [aux_sym__html_block_6_token2] = ACTIONS(942), - [sym__open_tag_html_block] = ACTIONS(942), - [sym__open_tag_html_block_newline] = ACTIONS(942), - [sym__closing_tag_html_block] = ACTIONS(942), - [sym__closing_tag_html_block_newline] = ACTIONS(942), - [sym_backslash_escape] = ACTIONS(942), - [sym_entity_reference] = ACTIONS(942), - [sym_numeric_character_reference] = ACTIONS(942), - [sym_uri_autolink] = ACTIONS(942), - [sym_email_autolink] = ACTIONS(942), - [sym__whitespace_ge_2] = ACTIONS(942), - [aux_sym__whitespace_token1] = ACTIONS(944), - [sym__word_no_digit] = ACTIONS(942), - [sym__digits] = ACTIONS(942), - [aux_sym__newline_token1] = ACTIONS(942), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(942), - [sym__indented_chunk_start] = ACTIONS(942), - [sym_atx_h1_marker] = ACTIONS(942), - [sym_atx_h2_marker] = ACTIONS(942), - [sym_atx_h3_marker] = ACTIONS(942), - [sym_atx_h4_marker] = ACTIONS(942), - [sym_atx_h5_marker] = ACTIONS(942), - [sym_atx_h6_marker] = ACTIONS(942), - [sym__thematic_break] = ACTIONS(942), - [sym__list_marker_minus] = ACTIONS(942), - [sym__list_marker_plus] = ACTIONS(942), - [sym__list_marker_star] = ACTIONS(942), - [sym__list_marker_parenthesis] = ACTIONS(942), - [sym__list_marker_dot] = ACTIONS(942), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_star_dont_interrupt] = ACTIONS(942), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(942), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(942), - [sym__fenced_code_block_start_backtick] = ACTIONS(942), - [sym__fenced_code_block_start_tilde] = ACTIONS(942), - [sym__blank_line_start] = ACTIONS(942), - [sym__code_span_start] = ACTIONS(942), - [sym__emphasis_open_star] = ACTIONS(942), - [sym__emphasis_open_underscore] = ACTIONS(942), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [200] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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(115), - }, - [201] = { - [aux_sym__ignore_matching_tokens] = STATE(232), - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_COLON] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_BSLASH] = ACTIONS(944), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym__] = ACTIONS(942), - [anon_sym_BQUOTE] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [aux_sym__html_block_1_token1] = ACTIONS(942), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(944), - [anon_sym_LT_QMARK] = ACTIONS(944), - [aux_sym__html_block_4_token1] = ACTIONS(944), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(942), - [aux_sym__html_block_6_token1] = ACTIONS(944), - [aux_sym__html_block_6_token2] = ACTIONS(942), - [sym__open_tag_html_block] = ACTIONS(942), - [sym__open_tag_html_block_newline] = ACTIONS(942), - [sym__closing_tag_html_block] = ACTIONS(942), - [sym__closing_tag_html_block_newline] = ACTIONS(942), - [sym_backslash_escape] = ACTIONS(942), - [sym_entity_reference] = ACTIONS(942), - [sym_numeric_character_reference] = ACTIONS(942), - [sym_uri_autolink] = ACTIONS(942), - [sym_email_autolink] = ACTIONS(942), - [sym__whitespace_ge_2] = ACTIONS(942), - [aux_sym__whitespace_token1] = ACTIONS(944), - [sym__word_no_digit] = ACTIONS(942), - [sym__digits] = ACTIONS(942), - [aux_sym__newline_token1] = ACTIONS(942), - [sym__block_continuation] = ACTIONS(995), - [sym__block_quote_continuation] = ACTIONS(995), - [sym__block_quote_start] = ACTIONS(942), - [sym__indented_chunk_start] = ACTIONS(942), - [sym_atx_h1_marker] = ACTIONS(942), - [sym_atx_h2_marker] = ACTIONS(942), - [sym_atx_h3_marker] = ACTIONS(942), - [sym_atx_h4_marker] = ACTIONS(942), - [sym_atx_h5_marker] = ACTIONS(942), - [sym_atx_h6_marker] = ACTIONS(942), - [sym__thematic_break] = ACTIONS(942), - [sym__list_marker_minus] = ACTIONS(942), - [sym__list_marker_plus] = ACTIONS(942), - [sym__list_marker_star] = ACTIONS(942), - [sym__list_marker_parenthesis] = ACTIONS(942), - [sym__list_marker_dot] = ACTIONS(942), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(942), - [sym__list_marker_star_dont_interrupt] = ACTIONS(942), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(942), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(942), - [sym__fenced_code_block_start_backtick] = ACTIONS(942), - [sym__fenced_code_block_start_tilde] = ACTIONS(942), - [sym__blank_line_start] = ACTIONS(942), - [sym__code_span_start] = ACTIONS(942), - [sym__emphasis_open_star] = ACTIONS(942), - [sym__emphasis_open_underscore] = ACTIONS(942), - [sym__last_token_whitespace] = ACTIONS(995), - }, - [202] = { - [aux_sym__ignore_matching_tokens] = STATE(172), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_POUND] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(801), - [anon_sym_CARET] = ACTIONS(801), - [anon_sym__] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [aux_sym__html_block_1_token1] = ACTIONS(801), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(803), - [anon_sym_LT_QMARK] = ACTIONS(803), - [aux_sym__html_block_4_token1] = ACTIONS(803), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(801), - [aux_sym__html_block_6_token1] = ACTIONS(803), - [aux_sym__html_block_6_token2] = ACTIONS(801), - [sym__open_tag_html_block] = ACTIONS(801), - [sym__open_tag_html_block_newline] = ACTIONS(801), - [sym__closing_tag_html_block] = ACTIONS(801), - [sym__closing_tag_html_block_newline] = ACTIONS(801), - [sym_backslash_escape] = ACTIONS(801), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(801), - [aux_sym__whitespace_token1] = ACTIONS(803), - [sym__word_no_digit] = ACTIONS(801), - [sym__digits] = ACTIONS(801), - [aux_sym__newline_token1] = ACTIONS(801), - [sym__block_close] = ACTIONS(801), - [sym__block_continuation] = ACTIONS(997), - [sym__block_quote_continuation] = ACTIONS(997), - [sym__block_quote_start] = ACTIONS(801), - [sym__indented_chunk_start] = ACTIONS(801), - [sym_atx_h1_marker] = ACTIONS(801), - [sym_atx_h2_marker] = ACTIONS(801), - [sym_atx_h3_marker] = ACTIONS(801), - [sym_atx_h4_marker] = ACTIONS(801), - [sym_atx_h5_marker] = ACTIONS(801), - [sym_atx_h6_marker] = ACTIONS(801), - [sym__thematic_break] = ACTIONS(801), - [sym__list_marker_minus] = ACTIONS(801), - [sym__list_marker_plus] = ACTIONS(801), - [sym__list_marker_star] = ACTIONS(801), - [sym__list_marker_parenthesis] = ACTIONS(801), - [sym__list_marker_dot] = ACTIONS(801), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_star_dont_interrupt] = ACTIONS(801), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(801), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(801), - [sym__fenced_code_block_start_backtick] = ACTIONS(801), - [sym__fenced_code_block_start_tilde] = ACTIONS(801), - [sym__blank_line_start] = ACTIONS(801), - [sym__code_span_start] = ACTIONS(801), - [sym__emphasis_open_star] = ACTIONS(801), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__last_token_whitespace] = ACTIONS(997), - }, - [203] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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(999), - [sym__block_quote_continuation] = ACTIONS(999), - [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(999), - }, - [204] = { - [sym__soft_line_break] = STATE(287), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(287), - [sym_full_reference_link] = STATE(287), - [sym_collapsed_reference_link] = STATE(287), - [sym_inline_link] = STATE(287), - [sym_image] = STATE(287), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(287), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(287), - [sym__whitespace] = STATE(287), - [sym__word] = STATE(287), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(287), - [aux_sym__inline_no_star] = STATE(287), - [sym__text_inline_no_star] = STATE(287), - [sym__emphasis_star] = STATE(752), - [sym__strong_emphasis_star] = STATE(287), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(287), - [sym__code_span] = STATE(287), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [sym_backslash_escape] = ACTIONS(1002), - [sym_entity_reference] = ACTIONS(1002), - [sym_numeric_character_reference] = ACTIONS(1002), - [sym_uri_autolink] = ACTIONS(1002), - [sym_email_autolink] = ACTIONS(1002), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1002), - [sym__digits] = ACTIONS(1002), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__last_token_punctuation] = ACTIONS(1004), - }, - [205] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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), - }, - [206] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_POUND] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(801), - [anon_sym_CARET] = ACTIONS(801), - [anon_sym__] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [aux_sym__html_block_1_token1] = ACTIONS(801), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(803), - [anon_sym_LT_QMARK] = ACTIONS(803), - [aux_sym__html_block_4_token1] = ACTIONS(803), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(801), - [aux_sym__html_block_6_token1] = ACTIONS(803), - [aux_sym__html_block_6_token2] = ACTIONS(801), - [sym__open_tag_html_block] = ACTIONS(801), - [sym__open_tag_html_block_newline] = ACTIONS(801), - [sym__closing_tag_html_block] = ACTIONS(801), - [sym__closing_tag_html_block_newline] = ACTIONS(801), - [sym_backslash_escape] = ACTIONS(801), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(801), - [aux_sym__whitespace_token1] = ACTIONS(803), - [sym__word_no_digit] = ACTIONS(801), - [sym__digits] = ACTIONS(801), - [aux_sym__newline_token1] = ACTIONS(801), - [sym__block_close] = ACTIONS(801), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(801), - [sym__indented_chunk_start] = ACTIONS(801), - [sym_atx_h1_marker] = ACTIONS(801), - [sym_atx_h2_marker] = ACTIONS(801), - [sym_atx_h3_marker] = ACTIONS(801), - [sym_atx_h4_marker] = ACTIONS(801), - [sym_atx_h5_marker] = ACTIONS(801), - [sym_atx_h6_marker] = ACTIONS(801), - [sym__thematic_break] = ACTIONS(801), - [sym__list_marker_minus] = ACTIONS(801), - [sym__list_marker_plus] = ACTIONS(801), - [sym__list_marker_star] = ACTIONS(801), - [sym__list_marker_parenthesis] = ACTIONS(801), - [sym__list_marker_dot] = ACTIONS(801), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(801), - [sym__list_marker_star_dont_interrupt] = ACTIONS(801), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(801), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(801), - [sym__fenced_code_block_start_backtick] = ACTIONS(801), - [sym__fenced_code_block_start_tilde] = ACTIONS(801), - [sym__blank_line_start] = ACTIONS(801), - [sym__code_span_start] = ACTIONS(801), - [sym__emphasis_open_star] = ACTIONS(801), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [207] = { - [aux_sym__ignore_matching_tokens] = STATE(162), - [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_continuation] = ACTIONS(1010), - [sym__block_quote_continuation] = ACTIONS(1010), - [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__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__code_span_start] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1006), - [sym__emphasis_open_underscore] = ACTIONS(1006), - [sym__last_token_whitespace] = ACTIONS(1010), - }, - [208] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__emphasis_close_star] = ACTIONS(1012), - }, - [209] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [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__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__code_span_start] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1006), - [sym__emphasis_open_underscore] = ACTIONS(1006), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [210] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_COLON] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1014), - [anon_sym_AT] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_BSLASH] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1014), - [anon_sym__] = ACTIONS(1014), - [anon_sym_BQUOTE] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [aux_sym__html_block_1_token1] = ACTIONS(1014), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1016), - [anon_sym_LT_QMARK] = ACTIONS(1016), - [aux_sym__html_block_4_token1] = ACTIONS(1016), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1014), - [aux_sym__html_block_6_token1] = ACTIONS(1016), - [aux_sym__html_block_6_token2] = ACTIONS(1014), - [sym__open_tag_html_block] = ACTIONS(1014), - [sym__open_tag_html_block_newline] = ACTIONS(1014), - [sym__closing_tag_html_block] = ACTIONS(1014), - [sym__closing_tag_html_block_newline] = ACTIONS(1014), - [sym_backslash_escape] = ACTIONS(1014), - [sym_entity_reference] = ACTIONS(1014), - [sym_numeric_character_reference] = ACTIONS(1014), - [sym_uri_autolink] = ACTIONS(1014), - [sym_email_autolink] = ACTIONS(1014), - [sym__whitespace_ge_2] = ACTIONS(1014), - [aux_sym__whitespace_token1] = ACTIONS(1016), - [sym__word_no_digit] = ACTIONS(1014), - [sym__digits] = ACTIONS(1014), - [aux_sym__newline_token1] = ACTIONS(1014), - [sym__block_quote_start] = ACTIONS(1014), - [sym__indented_chunk_start] = ACTIONS(1014), - [sym_atx_h1_marker] = ACTIONS(1014), - [sym_atx_h2_marker] = ACTIONS(1014), - [sym_atx_h3_marker] = ACTIONS(1014), - [sym_atx_h4_marker] = ACTIONS(1014), - [sym_atx_h5_marker] = ACTIONS(1014), - [sym_atx_h6_marker] = ACTIONS(1014), - [sym_setext_h1_underline] = ACTIONS(1014), - [sym_setext_h2_underline] = ACTIONS(1014), - [sym__thematic_break] = ACTIONS(1014), - [sym__list_marker_minus] = ACTIONS(1014), - [sym__list_marker_plus] = ACTIONS(1014), - [sym__list_marker_star] = ACTIONS(1014), - [sym__list_marker_parenthesis] = ACTIONS(1014), - [sym__list_marker_dot] = ACTIONS(1014), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1014), - [sym__fenced_code_block_start_backtick] = ACTIONS(1014), - [sym__fenced_code_block_start_tilde] = ACTIONS(1014), - [sym__blank_line_start] = ACTIONS(1014), - [sym__split_token] = ACTIONS(1018), - [sym__code_span_start] = ACTIONS(1014), - [sym__emphasis_open_star] = ACTIONS(1014), - [sym__emphasis_open_underscore] = ACTIONS(1014), - }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_PERCENT] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_DOT] = ACTIONS(1020), - [anon_sym_SLASH] = ACTIONS(1020), - [anon_sym_COLON] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_GT] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_BSLASH] = ACTIONS(1022), - [anon_sym_RBRACK] = ACTIONS(1020), - [anon_sym_CARET] = ACTIONS(1020), - [anon_sym__] = ACTIONS(1020), - [anon_sym_BQUOTE] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1020), - [aux_sym__html_block_1_token1] = ACTIONS(1020), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1022), - [anon_sym_LT_QMARK] = ACTIONS(1022), - [aux_sym__html_block_4_token1] = ACTIONS(1022), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1020), - [aux_sym__html_block_6_token1] = ACTIONS(1022), - [aux_sym__html_block_6_token2] = ACTIONS(1020), - [sym__open_tag_html_block] = ACTIONS(1020), - [sym__open_tag_html_block_newline] = ACTIONS(1020), - [sym__closing_tag_html_block] = ACTIONS(1020), - [sym__closing_tag_html_block_newline] = ACTIONS(1020), - [sym_backslash_escape] = ACTIONS(1020), - [sym_entity_reference] = ACTIONS(1020), - [sym_numeric_character_reference] = ACTIONS(1020), - [sym_uri_autolink] = ACTIONS(1020), - [sym_email_autolink] = ACTIONS(1020), - [sym__whitespace_ge_2] = ACTIONS(1020), - [aux_sym__whitespace_token1] = ACTIONS(1022), - [sym__word_no_digit] = ACTIONS(1020), - [sym__digits] = ACTIONS(1020), - [aux_sym__newline_token1] = ACTIONS(1020), - [sym__block_quote_start] = ACTIONS(1020), - [sym__indented_chunk_start] = ACTIONS(1020), - [sym_atx_h1_marker] = ACTIONS(1020), - [sym_atx_h2_marker] = ACTIONS(1020), - [sym_atx_h3_marker] = ACTIONS(1020), - [sym_atx_h4_marker] = ACTIONS(1020), - [sym_atx_h5_marker] = ACTIONS(1020), - [sym_atx_h6_marker] = ACTIONS(1020), - [sym_setext_h1_underline] = ACTIONS(1020), - [sym_setext_h2_underline] = ACTIONS(1020), - [sym__thematic_break] = ACTIONS(1020), - [sym__list_marker_minus] = ACTIONS(1020), - [sym__list_marker_plus] = ACTIONS(1020), - [sym__list_marker_star] = ACTIONS(1020), - [sym__list_marker_parenthesis] = ACTIONS(1020), - [sym__list_marker_dot] = ACTIONS(1020), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1020), - [sym__fenced_code_block_start_backtick] = ACTIONS(1020), - [sym__fenced_code_block_start_tilde] = ACTIONS(1020), - [sym__blank_line_start] = ACTIONS(1020), - [sym__split_token] = ACTIONS(1024), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(1020), - [sym__emphasis_open_star] = ACTIONS(1020), - [sym__emphasis_open_underscore] = ACTIONS(1020), - }, - [212] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(938), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_AT] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_BSLASH] = ACTIONS(940), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym__] = ACTIONS(938), - [anon_sym_BQUOTE] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [aux_sym__html_block_1_token1] = ACTIONS(938), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(940), - [anon_sym_LT_QMARK] = ACTIONS(940), - [aux_sym__html_block_4_token1] = ACTIONS(940), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(938), - [aux_sym__html_block_6_token1] = ACTIONS(940), - [aux_sym__html_block_6_token2] = ACTIONS(938), - [sym__open_tag_html_block] = ACTIONS(938), - [sym__open_tag_html_block_newline] = ACTIONS(938), - [sym__closing_tag_html_block] = ACTIONS(938), - [sym__closing_tag_html_block_newline] = ACTIONS(938), - [sym_backslash_escape] = ACTIONS(938), - [sym_entity_reference] = ACTIONS(938), - [sym_numeric_character_reference] = ACTIONS(938), - [sym_uri_autolink] = ACTIONS(938), - [sym_email_autolink] = ACTIONS(938), - [sym__whitespace_ge_2] = ACTIONS(938), - [aux_sym__whitespace_token1] = ACTIONS(940), - [sym__word_no_digit] = ACTIONS(938), - [sym__digits] = ACTIONS(938), - [aux_sym__newline_token1] = ACTIONS(938), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(938), - [sym__indented_chunk_start] = ACTIONS(938), - [sym_atx_h1_marker] = ACTIONS(938), - [sym_atx_h2_marker] = ACTIONS(938), - [sym_atx_h3_marker] = ACTIONS(938), - [sym_atx_h4_marker] = ACTIONS(938), - [sym_atx_h5_marker] = ACTIONS(938), - [sym_atx_h6_marker] = ACTIONS(938), - [sym__thematic_break] = ACTIONS(938), - [sym__list_marker_minus] = ACTIONS(938), - [sym__list_marker_plus] = ACTIONS(938), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(938), - [sym__list_marker_dot] = ACTIONS(938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(938), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(938), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(938), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(938), - [sym__fenced_code_block_start_backtick] = ACTIONS(938), - [sym__fenced_code_block_start_tilde] = ACTIONS(938), - [sym__blank_line_start] = ACTIONS(938), - [sym__code_span_start] = ACTIONS(938), - [sym__emphasis_open_star] = ACTIONS(938), - [sym__emphasis_open_underscore] = ACTIONS(938), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [213] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(936), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(934), - [anon_sym_AT] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_BSLASH] = ACTIONS(936), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_CARET] = ACTIONS(934), - [anon_sym__] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [aux_sym__html_block_1_token1] = ACTIONS(934), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(936), - [anon_sym_LT_QMARK] = ACTIONS(936), - [aux_sym__html_block_4_token1] = ACTIONS(936), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(934), - [aux_sym__html_block_6_token1] = ACTIONS(936), - [aux_sym__html_block_6_token2] = ACTIONS(934), - [sym__open_tag_html_block] = ACTIONS(934), - [sym__open_tag_html_block_newline] = ACTIONS(934), - [sym__closing_tag_html_block] = ACTIONS(934), - [sym__closing_tag_html_block_newline] = ACTIONS(934), - [sym_backslash_escape] = ACTIONS(934), - [sym_entity_reference] = ACTIONS(934), - [sym_numeric_character_reference] = ACTIONS(934), - [sym_uri_autolink] = ACTIONS(934), - [sym_email_autolink] = ACTIONS(934), - [sym__whitespace_ge_2] = ACTIONS(934), - [aux_sym__whitespace_token1] = ACTIONS(936), - [sym__word_no_digit] = ACTIONS(934), - [sym__digits] = ACTIONS(934), - [aux_sym__newline_token1] = ACTIONS(934), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(934), - [sym__indented_chunk_start] = ACTIONS(934), - [sym_atx_h1_marker] = ACTIONS(934), - [sym_atx_h2_marker] = ACTIONS(934), - [sym_atx_h3_marker] = ACTIONS(934), - [sym_atx_h4_marker] = ACTIONS(934), - [sym_atx_h5_marker] = ACTIONS(934), - [sym_atx_h6_marker] = ACTIONS(934), - [sym__thematic_break] = ACTIONS(934), - [sym__list_marker_minus] = ACTIONS(934), - [sym__list_marker_plus] = ACTIONS(934), - [sym__list_marker_star] = ACTIONS(934), - [sym__list_marker_parenthesis] = ACTIONS(934), - [sym__list_marker_dot] = ACTIONS(934), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(934), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(934), - [sym__list_marker_star_dont_interrupt] = ACTIONS(934), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(934), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(934), - [sym__fenced_code_block_start_backtick] = ACTIONS(934), - [sym__fenced_code_block_start_tilde] = ACTIONS(934), - [sym__blank_line_start] = ACTIONS(934), - [sym__code_span_start] = ACTIONS(934), - [sym__emphasis_open_star] = ACTIONS(934), - [sym__emphasis_open_underscore] = ACTIONS(934), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [214] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_BSLASH] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1027), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1027), - [aux_sym__html_block_1_token1] = ACTIONS(1027), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1029), - [anon_sym_LT_QMARK] = ACTIONS(1029), - [aux_sym__html_block_4_token1] = ACTIONS(1029), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1027), - [aux_sym__html_block_6_token1] = ACTIONS(1029), - [aux_sym__html_block_6_token2] = ACTIONS(1027), - [sym__open_tag_html_block] = ACTIONS(1027), - [sym__open_tag_html_block_newline] = ACTIONS(1027), - [sym__closing_tag_html_block] = ACTIONS(1027), - [sym__closing_tag_html_block_newline] = ACTIONS(1027), - [sym_backslash_escape] = ACTIONS(1027), - [sym_entity_reference] = ACTIONS(1027), - [sym_numeric_character_reference] = ACTIONS(1027), - [sym_uri_autolink] = ACTIONS(1027), - [sym_email_autolink] = ACTIONS(1027), - [sym__whitespace_ge_2] = ACTIONS(1027), - [aux_sym__whitespace_token1] = ACTIONS(1029), - [sym__word_no_digit] = ACTIONS(1027), - [sym__digits] = ACTIONS(1027), - [aux_sym__newline_token1] = ACTIONS(1027), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(1027), - [sym__indented_chunk_start] = ACTIONS(1027), - [sym_atx_h1_marker] = ACTIONS(1027), - [sym_atx_h2_marker] = ACTIONS(1027), - [sym_atx_h3_marker] = ACTIONS(1027), - [sym_atx_h4_marker] = ACTIONS(1027), - [sym_atx_h5_marker] = ACTIONS(1027), - [sym_atx_h6_marker] = ACTIONS(1027), - [sym__thematic_break] = ACTIONS(1027), - [sym__list_marker_minus] = ACTIONS(1027), - [sym__list_marker_plus] = ACTIONS(1027), - [sym__list_marker_star] = ACTIONS(1027), - [sym__list_marker_parenthesis] = ACTIONS(1027), - [sym__list_marker_dot] = ACTIONS(1027), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1027), - [sym__fenced_code_block_start_backtick] = ACTIONS(1027), - [sym__fenced_code_block_start_tilde] = ACTIONS(1027), - [sym__blank_line_start] = ACTIONS(1027), - [sym__code_span_start] = ACTIONS(1027), - [sym__emphasis_open_star] = ACTIONS(1027), - [sym__emphasis_open_underscore] = ACTIONS(1027), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [215] = { - [aux_sym__ignore_matching_tokens] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_BSLASH] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1027), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1027), - [aux_sym__html_block_1_token1] = ACTIONS(1027), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1029), - [anon_sym_LT_QMARK] = ACTIONS(1029), - [aux_sym__html_block_4_token1] = ACTIONS(1029), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1027), - [aux_sym__html_block_6_token1] = ACTIONS(1029), - [aux_sym__html_block_6_token2] = ACTIONS(1027), - [sym__open_tag_html_block] = ACTIONS(1027), - [sym__open_tag_html_block_newline] = ACTIONS(1027), - [sym__closing_tag_html_block] = ACTIONS(1027), - [sym__closing_tag_html_block_newline] = ACTIONS(1027), - [sym_backslash_escape] = ACTIONS(1027), - [sym_entity_reference] = ACTIONS(1027), - [sym_numeric_character_reference] = ACTIONS(1027), - [sym_uri_autolink] = ACTIONS(1027), - [sym_email_autolink] = ACTIONS(1027), - [sym__whitespace_ge_2] = ACTIONS(1027), - [aux_sym__whitespace_token1] = ACTIONS(1029), - [sym__word_no_digit] = ACTIONS(1027), - [sym__digits] = ACTIONS(1027), - [aux_sym__newline_token1] = ACTIONS(1027), - [sym__block_continuation] = ACTIONS(1031), - [sym__block_quote_continuation] = ACTIONS(1031), - [sym__block_quote_start] = ACTIONS(1027), - [sym__indented_chunk_start] = ACTIONS(1027), - [sym_atx_h1_marker] = ACTIONS(1027), - [sym_atx_h2_marker] = ACTIONS(1027), - [sym_atx_h3_marker] = ACTIONS(1027), - [sym_atx_h4_marker] = ACTIONS(1027), - [sym_atx_h5_marker] = ACTIONS(1027), - [sym_atx_h6_marker] = ACTIONS(1027), - [sym__thematic_break] = ACTIONS(1027), - [sym__list_marker_minus] = ACTIONS(1027), - [sym__list_marker_plus] = ACTIONS(1027), - [sym__list_marker_star] = ACTIONS(1027), - [sym__list_marker_parenthesis] = ACTIONS(1027), - [sym__list_marker_dot] = ACTIONS(1027), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1027), - [sym__fenced_code_block_start_backtick] = ACTIONS(1027), - [sym__fenced_code_block_start_tilde] = ACTIONS(1027), - [sym__blank_line_start] = ACTIONS(1027), - [sym__code_span_start] = ACTIONS(1027), - [sym__emphasis_open_star] = ACTIONS(1027), - [sym__emphasis_open_underscore] = ACTIONS(1027), - [sym__last_token_whitespace] = ACTIONS(1031), - }, - [216] = { - [aux_sym__ignore_matching_tokens] = STATE(176), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - [anon_sym_BQUOTE] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [aux_sym__html_block_1_token1] = ACTIONS(823), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(825), - [anon_sym_LT_QMARK] = ACTIONS(825), - [aux_sym__html_block_4_token1] = ACTIONS(825), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(823), - [aux_sym__html_block_6_token1] = ACTIONS(825), - [aux_sym__html_block_6_token2] = ACTIONS(823), - [sym__open_tag_html_block] = ACTIONS(823), - [sym__open_tag_html_block_newline] = ACTIONS(823), - [sym__closing_tag_html_block] = ACTIONS(823), - [sym__closing_tag_html_block_newline] = ACTIONS(823), - [sym_backslash_escape] = ACTIONS(823), - [sym_entity_reference] = ACTIONS(823), - [sym_numeric_character_reference] = ACTIONS(823), - [sym_uri_autolink] = ACTIONS(823), - [sym_email_autolink] = ACTIONS(823), - [sym__whitespace_ge_2] = ACTIONS(823), - [aux_sym__whitespace_token1] = ACTIONS(825), - [sym__word_no_digit] = ACTIONS(823), - [sym__digits] = ACTIONS(823), - [aux_sym__newline_token1] = ACTIONS(823), - [sym__block_close] = ACTIONS(823), - [sym__block_continuation] = ACTIONS(1033), - [sym__block_quote_continuation] = ACTIONS(1033), - [sym__block_quote_start] = ACTIONS(823), - [sym__indented_chunk_start] = ACTIONS(823), - [sym_atx_h1_marker] = ACTIONS(823), - [sym_atx_h2_marker] = ACTIONS(823), - [sym_atx_h3_marker] = ACTIONS(823), - [sym_atx_h4_marker] = ACTIONS(823), - [sym_atx_h5_marker] = ACTIONS(823), - [sym_atx_h6_marker] = ACTIONS(823), - [sym__thematic_break] = ACTIONS(823), - [sym__list_marker_minus] = ACTIONS(823), - [sym__list_marker_plus] = ACTIONS(823), - [sym__list_marker_star] = ACTIONS(823), - [sym__list_marker_parenthesis] = ACTIONS(823), - [sym__list_marker_dot] = ACTIONS(823), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_star_dont_interrupt] = ACTIONS(823), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(823), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(823), - [sym__fenced_code_block_start_backtick] = ACTIONS(823), - [sym__fenced_code_block_start_tilde] = ACTIONS(823), - [sym__blank_line_start] = ACTIONS(823), - [sym__code_span_start] = ACTIONS(823), - [sym__emphasis_open_star] = ACTIONS(823), - [sym__emphasis_open_underscore] = ACTIONS(823), - [sym__last_token_whitespace] = ACTIONS(1033), - }, - [217] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1035), - [aux_sym__html_block_1_token1] = ACTIONS(1035), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1037), - [anon_sym_LT_QMARK] = ACTIONS(1037), - [aux_sym__html_block_4_token1] = ACTIONS(1037), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1035), - [aux_sym__html_block_6_token1] = ACTIONS(1037), - [aux_sym__html_block_6_token2] = ACTIONS(1035), - [sym__open_tag_html_block] = ACTIONS(1035), - [sym__open_tag_html_block_newline] = ACTIONS(1035), - [sym__closing_tag_html_block] = ACTIONS(1035), - [sym__closing_tag_html_block_newline] = ACTIONS(1035), - [sym_backslash_escape] = ACTIONS(1035), - [sym_entity_reference] = ACTIONS(1035), - [sym_numeric_character_reference] = ACTIONS(1035), - [sym_uri_autolink] = ACTIONS(1035), - [sym_email_autolink] = ACTIONS(1035), - [sym__whitespace_ge_2] = ACTIONS(1035), - [aux_sym__whitespace_token1] = ACTIONS(1037), - [sym__word_no_digit] = ACTIONS(1035), - [sym__digits] = ACTIONS(1035), - [aux_sym__newline_token1] = ACTIONS(1035), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(1035), - [sym__indented_chunk_start] = ACTIONS(1035), - [sym_atx_h1_marker] = ACTIONS(1035), - [sym_atx_h2_marker] = ACTIONS(1035), - [sym_atx_h3_marker] = ACTIONS(1035), - [sym_atx_h4_marker] = ACTIONS(1035), - [sym_atx_h5_marker] = ACTIONS(1035), - [sym_atx_h6_marker] = ACTIONS(1035), - [sym__thematic_break] = ACTIONS(1035), - [sym__list_marker_minus] = ACTIONS(1035), - [sym__list_marker_plus] = ACTIONS(1035), - [sym__list_marker_star] = ACTIONS(1035), - [sym__list_marker_parenthesis] = ACTIONS(1035), - [sym__list_marker_dot] = ACTIONS(1035), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1035), - [sym__fenced_code_block_start_backtick] = ACTIONS(1035), - [sym__fenced_code_block_start_tilde] = ACTIONS(1035), - [sym__blank_line_start] = ACTIONS(1035), - [sym__code_span_start] = ACTIONS(1035), - [sym__emphasis_open_star] = ACTIONS(1035), - [sym__emphasis_open_underscore] = ACTIONS(1035), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [218] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_QMARK] = ACTIONS(930), - [anon_sym_AT] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_BSLASH] = ACTIONS(932), - [anon_sym_RBRACK] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym__] = ACTIONS(930), - [anon_sym_BQUOTE] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [aux_sym__html_block_1_token1] = ACTIONS(930), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(932), - [anon_sym_LT_QMARK] = ACTIONS(932), - [aux_sym__html_block_4_token1] = ACTIONS(932), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(930), - [aux_sym__html_block_6_token1] = ACTIONS(932), - [aux_sym__html_block_6_token2] = ACTIONS(930), - [sym__open_tag_html_block] = ACTIONS(930), - [sym__open_tag_html_block_newline] = ACTIONS(930), - [sym__closing_tag_html_block] = ACTIONS(930), - [sym__closing_tag_html_block_newline] = ACTIONS(930), - [sym_backslash_escape] = ACTIONS(930), - [sym_entity_reference] = ACTIONS(930), - [sym_numeric_character_reference] = ACTIONS(930), - [sym_uri_autolink] = ACTIONS(930), - [sym_email_autolink] = ACTIONS(930), - [sym__whitespace_ge_2] = ACTIONS(930), - [aux_sym__whitespace_token1] = ACTIONS(932), - [sym__word_no_digit] = ACTIONS(930), - [sym__digits] = ACTIONS(930), - [aux_sym__newline_token1] = ACTIONS(930), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(930), - [sym__indented_chunk_start] = ACTIONS(930), - [sym_atx_h1_marker] = ACTIONS(930), - [sym_atx_h2_marker] = ACTIONS(930), - [sym_atx_h3_marker] = ACTIONS(930), - [sym_atx_h4_marker] = ACTIONS(930), - [sym_atx_h5_marker] = ACTIONS(930), - [sym_atx_h6_marker] = ACTIONS(930), - [sym__thematic_break] = ACTIONS(930), - [sym__list_marker_minus] = ACTIONS(930), - [sym__list_marker_plus] = ACTIONS(930), - [sym__list_marker_star] = ACTIONS(930), - [sym__list_marker_parenthesis] = ACTIONS(930), - [sym__list_marker_dot] = ACTIONS(930), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(930), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(930), - [sym__list_marker_star_dont_interrupt] = ACTIONS(930), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(930), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(930), - [sym__fenced_code_block_start_backtick] = ACTIONS(930), - [sym__fenced_code_block_start_tilde] = ACTIONS(930), - [sym__blank_line_start] = ACTIONS(930), - [sym__code_span_start] = ACTIONS(930), - [sym__emphasis_open_star] = ACTIONS(930), - [sym__emphasis_open_underscore] = ACTIONS(930), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [219] = { - [aux_sym__ignore_matching_tokens] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1035), - [aux_sym__html_block_1_token1] = ACTIONS(1035), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1037), - [anon_sym_LT_QMARK] = ACTIONS(1037), - [aux_sym__html_block_4_token1] = ACTIONS(1037), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1035), - [aux_sym__html_block_6_token1] = ACTIONS(1037), - [aux_sym__html_block_6_token2] = ACTIONS(1035), - [sym__open_tag_html_block] = ACTIONS(1035), - [sym__open_tag_html_block_newline] = ACTIONS(1035), - [sym__closing_tag_html_block] = ACTIONS(1035), - [sym__closing_tag_html_block_newline] = ACTIONS(1035), - [sym_backslash_escape] = ACTIONS(1035), - [sym_entity_reference] = ACTIONS(1035), - [sym_numeric_character_reference] = ACTIONS(1035), - [sym_uri_autolink] = ACTIONS(1035), - [sym_email_autolink] = ACTIONS(1035), - [sym__whitespace_ge_2] = ACTIONS(1035), - [aux_sym__whitespace_token1] = ACTIONS(1037), - [sym__word_no_digit] = ACTIONS(1035), - [sym__digits] = ACTIONS(1035), - [aux_sym__newline_token1] = ACTIONS(1035), - [sym__block_continuation] = ACTIONS(1039), - [sym__block_quote_continuation] = ACTIONS(1039), - [sym__block_quote_start] = ACTIONS(1035), - [sym__indented_chunk_start] = ACTIONS(1035), - [sym_atx_h1_marker] = ACTIONS(1035), - [sym_atx_h2_marker] = ACTIONS(1035), - [sym_atx_h3_marker] = ACTIONS(1035), - [sym_atx_h4_marker] = ACTIONS(1035), - [sym_atx_h5_marker] = ACTIONS(1035), - [sym_atx_h6_marker] = ACTIONS(1035), - [sym__thematic_break] = ACTIONS(1035), - [sym__list_marker_minus] = ACTIONS(1035), - [sym__list_marker_plus] = ACTIONS(1035), - [sym__list_marker_star] = ACTIONS(1035), - [sym__list_marker_parenthesis] = ACTIONS(1035), - [sym__list_marker_dot] = ACTIONS(1035), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1035), - [sym__fenced_code_block_start_backtick] = ACTIONS(1035), - [sym__fenced_code_block_start_tilde] = ACTIONS(1035), - [sym__blank_line_start] = ACTIONS(1035), - [sym__code_span_start] = ACTIONS(1035), - [sym__emphasis_open_star] = ACTIONS(1035), - [sym__emphasis_open_underscore] = ACTIONS(1035), - [sym__last_token_whitespace] = ACTIONS(1039), - }, - [220] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - [anon_sym_BQUOTE] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [aux_sym__html_block_1_token1] = ACTIONS(823), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(825), - [anon_sym_LT_QMARK] = ACTIONS(825), - [aux_sym__html_block_4_token1] = ACTIONS(825), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(823), - [aux_sym__html_block_6_token1] = ACTIONS(825), - [aux_sym__html_block_6_token2] = ACTIONS(823), - [sym__open_tag_html_block] = ACTIONS(823), - [sym__open_tag_html_block_newline] = ACTIONS(823), - [sym__closing_tag_html_block] = ACTIONS(823), - [sym__closing_tag_html_block_newline] = ACTIONS(823), - [sym_backslash_escape] = ACTIONS(823), - [sym_entity_reference] = ACTIONS(823), - [sym_numeric_character_reference] = ACTIONS(823), - [sym_uri_autolink] = ACTIONS(823), - [sym_email_autolink] = ACTIONS(823), - [sym__whitespace_ge_2] = ACTIONS(823), - [aux_sym__whitespace_token1] = ACTIONS(825), - [sym__word_no_digit] = ACTIONS(823), - [sym__digits] = ACTIONS(823), - [aux_sym__newline_token1] = ACTIONS(823), - [sym__block_close] = ACTIONS(823), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(823), - [sym__indented_chunk_start] = ACTIONS(823), - [sym_atx_h1_marker] = ACTIONS(823), - [sym_atx_h2_marker] = ACTIONS(823), - [sym_atx_h3_marker] = ACTIONS(823), - [sym_atx_h4_marker] = ACTIONS(823), - [sym_atx_h5_marker] = ACTIONS(823), - [sym_atx_h6_marker] = ACTIONS(823), - [sym__thematic_break] = ACTIONS(823), - [sym__list_marker_minus] = ACTIONS(823), - [sym__list_marker_plus] = ACTIONS(823), - [sym__list_marker_star] = ACTIONS(823), - [sym__list_marker_parenthesis] = ACTIONS(823), - [sym__list_marker_dot] = ACTIONS(823), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(823), - [sym__list_marker_star_dont_interrupt] = ACTIONS(823), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(823), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(823), - [sym__fenced_code_block_start_backtick] = ACTIONS(823), - [sym__fenced_code_block_start_tilde] = ACTIONS(823), - [sym__blank_line_start] = ACTIONS(823), - [sym__code_span_start] = ACTIONS(823), - [sym__emphasis_open_star] = ACTIONS(823), - [sym__emphasis_open_underscore] = ACTIONS(823), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [221] = { - [aux_sym__ignore_matching_tokens] = STATE(177), - [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(1041), - [sym__block_quote_continuation] = ACTIONS(1041), - [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(1041), - }, - [222] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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(115), - }, - [223] = { - [aux_sym__ignore_matching_tokens] = STATE(178), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_POUND] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PERCENT] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(857), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym__] = ACTIONS(855), - [anon_sym_BQUOTE] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [aux_sym__html_block_1_token1] = ACTIONS(855), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), - [anon_sym_LT_QMARK] = ACTIONS(857), - [aux_sym__html_block_4_token1] = ACTIONS(857), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), - [aux_sym__html_block_6_token1] = ACTIONS(857), - [aux_sym__html_block_6_token2] = ACTIONS(855), - [sym__open_tag_html_block] = ACTIONS(855), - [sym__open_tag_html_block_newline] = ACTIONS(855), - [sym__closing_tag_html_block] = ACTIONS(855), - [sym__closing_tag_html_block_newline] = ACTIONS(855), - [sym_backslash_escape] = ACTIONS(855), - [sym_entity_reference] = ACTIONS(855), - [sym_numeric_character_reference] = ACTIONS(855), - [sym_uri_autolink] = ACTIONS(855), - [sym_email_autolink] = ACTIONS(855), - [sym__whitespace_ge_2] = ACTIONS(855), - [aux_sym__whitespace_token1] = ACTIONS(857), - [sym__word_no_digit] = ACTIONS(855), - [sym__digits] = ACTIONS(855), - [aux_sym__newline_token1] = ACTIONS(855), - [sym__block_close] = ACTIONS(855), - [sym__block_continuation] = ACTIONS(1043), - [sym__block_quote_continuation] = ACTIONS(1043), - [sym__block_quote_start] = ACTIONS(855), - [sym__indented_chunk_start] = ACTIONS(855), - [sym_atx_h1_marker] = ACTIONS(855), - [sym_atx_h2_marker] = ACTIONS(855), - [sym_atx_h3_marker] = ACTIONS(855), - [sym_atx_h4_marker] = ACTIONS(855), - [sym_atx_h5_marker] = ACTIONS(855), - [sym_atx_h6_marker] = ACTIONS(855), - [sym__thematic_break] = ACTIONS(855), - [sym__list_marker_minus] = ACTIONS(855), - [sym__list_marker_plus] = ACTIONS(855), - [sym__list_marker_star] = ACTIONS(855), - [sym__list_marker_parenthesis] = ACTIONS(855), - [sym__list_marker_dot] = ACTIONS(855), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_star_dont_interrupt] = ACTIONS(855), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), - [sym__fenced_code_block_start_backtick] = ACTIONS(855), - [sym__fenced_code_block_start_tilde] = ACTIONS(855), - [sym__blank_line_start] = ACTIONS(855), - [sym__code_span_start] = ACTIONS(855), - [sym__emphasis_open_star] = ACTIONS(855), - [sym__emphasis_open_underscore] = ACTIONS(855), - [sym__last_token_whitespace] = ACTIONS(1043), - }, - [224] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_COLON] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_BSLASH] = ACTIONS(928), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(926), - [anon_sym__] = ACTIONS(926), - [anon_sym_BQUOTE] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [aux_sym__html_block_1_token1] = ACTIONS(926), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(928), - [anon_sym_LT_QMARK] = ACTIONS(928), - [aux_sym__html_block_4_token1] = ACTIONS(928), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(926), - [aux_sym__html_block_6_token1] = ACTIONS(928), - [aux_sym__html_block_6_token2] = ACTIONS(926), - [sym__open_tag_html_block] = ACTIONS(926), - [sym__open_tag_html_block_newline] = ACTIONS(926), - [sym__closing_tag_html_block] = ACTIONS(926), - [sym__closing_tag_html_block_newline] = ACTIONS(926), - [sym_backslash_escape] = ACTIONS(926), - [sym_entity_reference] = ACTIONS(926), - [sym_numeric_character_reference] = ACTIONS(926), - [sym_uri_autolink] = ACTIONS(926), - [sym_email_autolink] = ACTIONS(926), - [sym__whitespace_ge_2] = ACTIONS(926), - [aux_sym__whitespace_token1] = ACTIONS(928), - [sym__word_no_digit] = ACTIONS(926), - [sym__digits] = ACTIONS(926), - [aux_sym__newline_token1] = ACTIONS(926), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(926), - [sym__indented_chunk_start] = ACTIONS(926), - [sym_atx_h1_marker] = ACTIONS(926), - [sym_atx_h2_marker] = ACTIONS(926), - [sym_atx_h3_marker] = ACTIONS(926), - [sym_atx_h4_marker] = ACTIONS(926), - [sym_atx_h5_marker] = ACTIONS(926), - [sym_atx_h6_marker] = ACTIONS(926), - [sym__thematic_break] = ACTIONS(926), - [sym__list_marker_minus] = ACTIONS(926), - [sym__list_marker_plus] = ACTIONS(926), - [sym__list_marker_star] = ACTIONS(926), - [sym__list_marker_parenthesis] = ACTIONS(926), - [sym__list_marker_dot] = ACTIONS(926), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_star_dont_interrupt] = ACTIONS(926), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(926), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(926), - [sym__fenced_code_block_start_backtick] = ACTIONS(926), - [sym__fenced_code_block_start_tilde] = ACTIONS(926), - [sym__blank_line_start] = ACTIONS(926), - [sym__code_span_start] = ACTIONS(926), - [sym__emphasis_open_star] = ACTIONS(926), - [sym__emphasis_open_underscore] = ACTIONS(926), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [225] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_QMARK] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(924), - [anon_sym_RBRACK] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym__] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [aux_sym__html_block_1_token1] = ACTIONS(922), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(924), - [anon_sym_LT_QMARK] = ACTIONS(924), - [aux_sym__html_block_4_token1] = ACTIONS(924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(922), - [aux_sym__html_block_6_token1] = ACTIONS(924), - [aux_sym__html_block_6_token2] = ACTIONS(922), - [sym__open_tag_html_block] = ACTIONS(922), - [sym__open_tag_html_block_newline] = ACTIONS(922), - [sym__closing_tag_html_block] = ACTIONS(922), - [sym__closing_tag_html_block_newline] = ACTIONS(922), - [sym_backslash_escape] = ACTIONS(922), - [sym_entity_reference] = ACTIONS(922), - [sym_numeric_character_reference] = ACTIONS(922), - [sym_uri_autolink] = ACTIONS(922), - [sym_email_autolink] = ACTIONS(922), - [sym__whitespace_ge_2] = ACTIONS(922), - [aux_sym__whitespace_token1] = ACTIONS(924), - [sym__word_no_digit] = ACTIONS(922), - [sym__digits] = ACTIONS(922), - [aux_sym__newline_token1] = ACTIONS(922), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(922), - [sym__indented_chunk_start] = ACTIONS(922), - [sym_atx_h1_marker] = ACTIONS(922), - [sym_atx_h2_marker] = ACTIONS(922), - [sym_atx_h3_marker] = ACTIONS(922), - [sym_atx_h4_marker] = ACTIONS(922), - [sym_atx_h5_marker] = ACTIONS(922), - [sym_atx_h6_marker] = ACTIONS(922), - [sym__thematic_break] = ACTIONS(922), - [sym__list_marker_minus] = ACTIONS(922), - [sym__list_marker_plus] = ACTIONS(922), - [sym__list_marker_star] = ACTIONS(922), - [sym__list_marker_parenthesis] = ACTIONS(922), - [sym__list_marker_dot] = ACTIONS(922), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(922), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(922), - [sym__list_marker_star_dont_interrupt] = ACTIONS(922), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(922), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(922), - [sym__fenced_code_block_start_backtick] = ACTIONS(922), - [sym__fenced_code_block_start_tilde] = ACTIONS(922), - [sym__blank_line_start] = ACTIONS(922), - [sym__code_span_start] = ACTIONS(922), - [sym__emphasis_open_star] = ACTIONS(922), - [sym__emphasis_open_underscore] = ACTIONS(922), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [226] = { - [aux_sym__ignore_matching_tokens] = STATE(241), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_BSLASH] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym__] = ACTIONS(903), - [anon_sym_BQUOTE] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [aux_sym__html_block_1_token1] = ACTIONS(903), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(905), - [anon_sym_LT_QMARK] = ACTIONS(905), - [aux_sym__html_block_4_token1] = ACTIONS(905), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(903), - [aux_sym__html_block_6_token1] = ACTIONS(905), - [aux_sym__html_block_6_token2] = ACTIONS(903), - [sym__open_tag_html_block] = ACTIONS(903), - [sym__open_tag_html_block_newline] = ACTIONS(903), - [sym__closing_tag_html_block] = ACTIONS(903), - [sym__closing_tag_html_block_newline] = ACTIONS(903), - [sym_backslash_escape] = ACTIONS(903), - [sym_entity_reference] = ACTIONS(903), - [sym_numeric_character_reference] = ACTIONS(903), - [sym_uri_autolink] = ACTIONS(903), - [sym_email_autolink] = ACTIONS(903), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(903), - [sym__digits] = ACTIONS(903), - [aux_sym__newline_token1] = ACTIONS(903), - [sym__block_continuation] = ACTIONS(1045), - [sym__block_quote_continuation] = ACTIONS(1045), - [sym__block_quote_start] = ACTIONS(903), - [sym__indented_chunk_start] = ACTIONS(903), - [sym_atx_h1_marker] = ACTIONS(903), - [sym_atx_h2_marker] = ACTIONS(903), - [sym_atx_h3_marker] = ACTIONS(903), - [sym_atx_h4_marker] = ACTIONS(903), - [sym_atx_h5_marker] = ACTIONS(903), - [sym_atx_h6_marker] = ACTIONS(903), - [sym__thematic_break] = ACTIONS(903), - [sym__list_marker_minus] = ACTIONS(903), - [sym__list_marker_plus] = ACTIONS(903), - [sym__list_marker_star] = ACTIONS(903), - [sym__list_marker_parenthesis] = ACTIONS(903), - [sym__list_marker_dot] = ACTIONS(903), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_star_dont_interrupt] = ACTIONS(903), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(903), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(903), - [sym__fenced_code_block_start_backtick] = ACTIONS(903), - [sym__fenced_code_block_start_tilde] = ACTIONS(903), - [sym__blank_line_start] = ACTIONS(903), - [sym__code_span_start] = ACTIONS(903), - [sym__emphasis_open_star] = ACTIONS(903), - [sym__emphasis_open_underscore] = ACTIONS(903), - [sym__last_token_whitespace] = ACTIONS(1045), - }, - [227] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_BSLASH] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym__] = ACTIONS(903), - [anon_sym_BQUOTE] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [aux_sym__html_block_1_token1] = ACTIONS(903), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(905), - [anon_sym_LT_QMARK] = ACTIONS(905), - [aux_sym__html_block_4_token1] = ACTIONS(905), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(903), - [aux_sym__html_block_6_token1] = ACTIONS(905), - [aux_sym__html_block_6_token2] = ACTIONS(903), - [sym__open_tag_html_block] = ACTIONS(903), - [sym__open_tag_html_block_newline] = ACTIONS(903), - [sym__closing_tag_html_block] = ACTIONS(903), - [sym__closing_tag_html_block_newline] = ACTIONS(903), - [sym_backslash_escape] = ACTIONS(903), - [sym_entity_reference] = ACTIONS(903), - [sym_numeric_character_reference] = ACTIONS(903), - [sym_uri_autolink] = ACTIONS(903), - [sym_email_autolink] = ACTIONS(903), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(903), - [sym__digits] = ACTIONS(903), - [aux_sym__newline_token1] = ACTIONS(903), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(903), - [sym__indented_chunk_start] = ACTIONS(903), - [sym_atx_h1_marker] = ACTIONS(903), - [sym_atx_h2_marker] = ACTIONS(903), - [sym_atx_h3_marker] = ACTIONS(903), - [sym_atx_h4_marker] = ACTIONS(903), - [sym_atx_h5_marker] = ACTIONS(903), - [sym_atx_h6_marker] = ACTIONS(903), - [sym__thematic_break] = ACTIONS(903), - [sym__list_marker_minus] = ACTIONS(903), - [sym__list_marker_plus] = ACTIONS(903), - [sym__list_marker_star] = ACTIONS(903), - [sym__list_marker_parenthesis] = ACTIONS(903), - [sym__list_marker_dot] = ACTIONS(903), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(903), - [sym__list_marker_star_dont_interrupt] = ACTIONS(903), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(903), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(903), - [sym__fenced_code_block_start_backtick] = ACTIONS(903), - [sym__fenced_code_block_start_tilde] = ACTIONS(903), - [sym__blank_line_start] = ACTIONS(903), - [sym__code_span_start] = ACTIONS(903), - [sym__emphasis_open_star] = ACTIONS(903), - [sym__emphasis_open_underscore] = ACTIONS(903), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [228] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_POUND] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PERCENT] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(857), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym__] = ACTIONS(855), - [anon_sym_BQUOTE] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [aux_sym__html_block_1_token1] = ACTIONS(855), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), - [anon_sym_LT_QMARK] = ACTIONS(857), - [aux_sym__html_block_4_token1] = ACTIONS(857), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), - [aux_sym__html_block_6_token1] = ACTIONS(857), - [aux_sym__html_block_6_token2] = ACTIONS(855), - [sym__open_tag_html_block] = ACTIONS(855), - [sym__open_tag_html_block_newline] = ACTIONS(855), - [sym__closing_tag_html_block] = ACTIONS(855), - [sym__closing_tag_html_block_newline] = ACTIONS(855), - [sym_backslash_escape] = ACTIONS(855), - [sym_entity_reference] = ACTIONS(855), - [sym_numeric_character_reference] = ACTIONS(855), - [sym_uri_autolink] = ACTIONS(855), - [sym_email_autolink] = ACTIONS(855), - [sym__whitespace_ge_2] = ACTIONS(855), - [aux_sym__whitespace_token1] = ACTIONS(857), - [sym__word_no_digit] = ACTIONS(855), - [sym__digits] = ACTIONS(855), - [aux_sym__newline_token1] = ACTIONS(855), - [sym__block_close] = ACTIONS(855), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(855), - [sym__indented_chunk_start] = ACTIONS(855), - [sym_atx_h1_marker] = ACTIONS(855), - [sym_atx_h2_marker] = ACTIONS(855), - [sym_atx_h3_marker] = ACTIONS(855), - [sym_atx_h4_marker] = ACTIONS(855), - [sym_atx_h5_marker] = ACTIONS(855), - [sym_atx_h6_marker] = ACTIONS(855), - [sym__thematic_break] = ACTIONS(855), - [sym__list_marker_minus] = ACTIONS(855), - [sym__list_marker_plus] = ACTIONS(855), - [sym__list_marker_star] = ACTIONS(855), - [sym__list_marker_parenthesis] = ACTIONS(855), - [sym__list_marker_dot] = ACTIONS(855), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), - [sym__list_marker_star_dont_interrupt] = ACTIONS(855), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), - [sym__fenced_code_block_start_backtick] = ACTIONS(855), - [sym__fenced_code_block_start_tilde] = ACTIONS(855), - [sym__blank_line_start] = ACTIONS(855), - [sym__code_span_start] = ACTIONS(855), - [sym__emphasis_open_star] = ACTIONS(855), - [sym__emphasis_open_underscore] = ACTIONS(855), - [sym__last_token_whitespace] = ACTIONS(115), - }, - [229] = { - [aux_sym__ignore_matching_tokens] = STATE(179), + [162] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_BANG] = ACTIONS(895), [anon_sym_DQUOTE] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(895), @@ -52477,9 +46796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(895), [anon_sym__] = ACTIONS(895), [anon_sym_BQUOTE] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(895), [aux_sym__html_block_1_token1] = ACTIONS(895), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(897), @@ -52503,8 +46820,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(895), [aux_sym__newline_token1] = ACTIONS(895), [sym__block_close] = ACTIONS(895), - [sym__block_continuation] = ACTIONS(1047), - [sym__block_quote_continuation] = ACTIONS(1047), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(895), [sym__indented_chunk_start] = ACTIONS(895), [sym_atx_h1_marker] = ACTIONS(895), @@ -52530,10 +46847,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(895), [sym__emphasis_open_star] = ACTIONS(895), [sym__emphasis_open_underscore] = ACTIONS(895), - [sym__last_token_whitespace] = ACTIONS(1047), + [sym__last_token_whitespace] = ACTIONS(111), }, - [230] = { - [aux_sym__ignore_matching_tokens] = STATE(286), + [163] = { + [aux_sym__ignore_matching_tokens] = STATE(274), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_BANG] = ACTIONS(895), [anon_sym_DQUOTE] = ACTIONS(895), [anon_sym_POUND] = ACTIONS(895), @@ -52562,9 +46881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(895), [anon_sym__] = ACTIONS(895), [anon_sym_BQUOTE] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(895), [aux_sym__html_block_1_token1] = ACTIONS(895), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(897), @@ -52588,8 +46905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(895), [aux_sym__newline_token1] = ACTIONS(895), [sym__block_close] = ACTIONS(895), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), + [sym__block_continuation] = ACTIONS(1001), + [sym__block_quote_continuation] = ACTIONS(1001), [sym__block_quote_start] = ACTIONS(895), [sym__indented_chunk_start] = ACTIONS(895), [sym_atx_h1_marker] = ACTIONS(895), @@ -52615,3325 +46932,4092 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(895), [sym__emphasis_open_star] = ACTIONS(895), [sym__emphasis_open_underscore] = ACTIONS(895), - [sym__last_token_whitespace] = ACTIONS(115), + [sym__last_token_whitespace] = ACTIONS(1001), }, - [231] = { - [aux_sym__ignore_matching_tokens] = STATE(243), - [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(1049), - [sym__block_quote_continuation] = ACTIONS(1049), - [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(1049), - }, - [232] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [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(111), - }, - [233] = { - [aux_sym__ignore_matching_tokens] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1053), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [aux_sym__html_block_1_token1] = ACTIONS(1051), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1053), - [anon_sym_LT_QMARK] = ACTIONS(1053), - [aux_sym__html_block_4_token1] = ACTIONS(1053), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1051), - [aux_sym__html_block_6_token1] = ACTIONS(1053), - [aux_sym__html_block_6_token2] = ACTIONS(1051), - [sym__open_tag_html_block] = ACTIONS(1051), - [sym__open_tag_html_block_newline] = ACTIONS(1051), - [sym__closing_tag_html_block] = ACTIONS(1051), - [sym__closing_tag_html_block_newline] = ACTIONS(1051), - [sym_backslash_escape] = ACTIONS(1051), - [sym_entity_reference] = ACTIONS(1051), - [sym_numeric_character_reference] = ACTIONS(1051), - [sym_uri_autolink] = ACTIONS(1051), - [sym_email_autolink] = ACTIONS(1051), - [sym__whitespace_ge_2] = ACTIONS(1051), - [aux_sym__whitespace_token1] = ACTIONS(1053), - [sym__word_no_digit] = ACTIONS(1051), - [sym__digits] = ACTIONS(1051), - [aux_sym__newline_token1] = ACTIONS(1051), - [sym__block_continuation] = ACTIONS(1055), - [sym__block_quote_continuation] = ACTIONS(1055), - [sym__block_quote_start] = ACTIONS(1051), - [sym__indented_chunk_start] = ACTIONS(1051), - [sym_atx_h1_marker] = ACTIONS(1051), - [sym_atx_h2_marker] = ACTIONS(1051), - [sym_atx_h3_marker] = ACTIONS(1051), - [sym_atx_h4_marker] = ACTIONS(1051), - [sym_atx_h5_marker] = ACTIONS(1051), - [sym_atx_h6_marker] = ACTIONS(1051), - [sym__thematic_break] = ACTIONS(1051), - [sym__list_marker_minus] = ACTIONS(1051), - [sym__list_marker_plus] = ACTIONS(1051), - [sym__list_marker_star] = ACTIONS(1051), - [sym__list_marker_parenthesis] = ACTIONS(1051), - [sym__list_marker_dot] = ACTIONS(1051), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1051), - [sym__fenced_code_block_start_backtick] = ACTIONS(1051), - [sym__fenced_code_block_start_tilde] = ACTIONS(1051), - [sym__blank_line_start] = ACTIONS(1051), - [sym__code_span_start] = ACTIONS(1051), - [sym__emphasis_open_star] = ACTIONS(1051), - [sym__emphasis_open_underscore] = ACTIONS(1051), - [sym__last_token_whitespace] = ACTIONS(1055), + [164] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym__] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [aux_sym__html_block_1_token1] = ACTIONS(395), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(397), + [anon_sym_LT_QMARK] = ACTIONS(397), + [aux_sym__html_block_4_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(395), + [aux_sym__html_block_6_token1] = ACTIONS(397), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym__open_tag_html_block] = ACTIONS(395), + [sym__open_tag_html_block_newline] = ACTIONS(395), + [sym__closing_tag_html_block] = ACTIONS(395), + [sym__closing_tag_html_block_newline] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [sym_entity_reference] = ACTIONS(395), + [sym_numeric_character_reference] = ACTIONS(395), + [sym_uri_autolink] = ACTIONS(395), + [sym_email_autolink] = ACTIONS(395), + [sym__whitespace_ge_2] = ACTIONS(395), + [aux_sym__whitespace_token1] = ACTIONS(397), + [sym__word_no_digit] = ACTIONS(395), + [sym__digits] = ACTIONS(395), + [aux_sym__newline_token1] = ACTIONS(395), + [sym__block_close] = ACTIONS(395), + [sym__block_continuation] = ACTIONS(1003), + [sym__block_quote_continuation] = ACTIONS(1003), + [sym__block_quote_start] = ACTIONS(395), + [sym__indented_chunk_start] = ACTIONS(395), + [sym_atx_h1_marker] = ACTIONS(395), + [sym_atx_h2_marker] = ACTIONS(395), + [sym_atx_h3_marker] = ACTIONS(395), + [sym_atx_h4_marker] = ACTIONS(395), + [sym_atx_h5_marker] = ACTIONS(395), + [sym_atx_h6_marker] = ACTIONS(395), + [sym__thematic_break] = ACTIONS(395), + [sym__list_marker_minus] = ACTIONS(395), + [sym__list_marker_plus] = ACTIONS(395), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(395), + [sym__list_marker_dot] = ACTIONS(395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(395), + [sym__fenced_code_block_start_backtick] = ACTIONS(395), + [sym__fenced_code_block_start_tilde] = ACTIONS(395), + [sym__blank_line_start] = ACTIONS(395), + [sym__code_span_start] = ACTIONS(395), + [sym__emphasis_open_star] = ACTIONS(395), + [sym__emphasis_open_underscore] = ACTIONS(395), + [sym__last_token_whitespace] = ACTIONS(1003), }, - [234] = { - [aux_sym__ignore_matching_tokens] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_PERCENT] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_COLON] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_QMARK] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_BSLASH] = ACTIONS(1059), - [anon_sym_RBRACK] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym__] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1057), - [aux_sym__html_block_1_token1] = ACTIONS(1057), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1059), - [anon_sym_LT_QMARK] = ACTIONS(1059), - [aux_sym__html_block_4_token1] = ACTIONS(1059), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1057), - [aux_sym__html_block_6_token1] = ACTIONS(1059), - [aux_sym__html_block_6_token2] = ACTIONS(1057), - [sym__open_tag_html_block] = ACTIONS(1057), - [sym__open_tag_html_block_newline] = ACTIONS(1057), - [sym__closing_tag_html_block] = ACTIONS(1057), - [sym__closing_tag_html_block_newline] = ACTIONS(1057), - [sym_backslash_escape] = ACTIONS(1057), - [sym_entity_reference] = ACTIONS(1057), - [sym_numeric_character_reference] = ACTIONS(1057), - [sym_uri_autolink] = ACTIONS(1057), - [sym_email_autolink] = ACTIONS(1057), - [sym__whitespace_ge_2] = ACTIONS(1057), - [aux_sym__whitespace_token1] = ACTIONS(1059), - [sym__word_no_digit] = ACTIONS(1057), - [sym__digits] = ACTIONS(1057), - [aux_sym__newline_token1] = ACTIONS(1057), - [sym__block_continuation] = ACTIONS(1061), - [sym__block_quote_continuation] = ACTIONS(1061), - [sym__block_quote_start] = ACTIONS(1057), - [sym__indented_chunk_start] = ACTIONS(1057), - [sym_atx_h1_marker] = ACTIONS(1057), - [sym_atx_h2_marker] = ACTIONS(1057), - [sym_atx_h3_marker] = ACTIONS(1057), - [sym_atx_h4_marker] = ACTIONS(1057), - [sym_atx_h5_marker] = ACTIONS(1057), - [sym_atx_h6_marker] = ACTIONS(1057), - [sym__thematic_break] = ACTIONS(1057), - [sym__list_marker_minus] = ACTIONS(1057), - [sym__list_marker_plus] = ACTIONS(1057), - [sym__list_marker_star] = ACTIONS(1057), - [sym__list_marker_parenthesis] = ACTIONS(1057), - [sym__list_marker_dot] = ACTIONS(1057), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1057), - [sym__fenced_code_block_start_backtick] = ACTIONS(1057), - [sym__fenced_code_block_start_tilde] = ACTIONS(1057), - [sym__blank_line_start] = ACTIONS(1057), - [sym__code_span_start] = ACTIONS(1057), - [sym__emphasis_open_star] = ACTIONS(1057), - [sym__emphasis_open_underscore] = ACTIONS(1057), - [sym__last_token_whitespace] = ACTIONS(1061), + [165] = { + [aux_sym__ignore_matching_tokens] = STATE(198), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = 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_PIPE] = 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(1006), + [sym__block_quote_continuation] = ACTIONS(1006), + [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(1006), }, - [235] = { - [aux_sym__ignore_matching_tokens] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_PERCENT] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_COLON] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_QMARK] = ACTIONS(1063), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym__] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1063), - [aux_sym__html_block_1_token1] = ACTIONS(1063), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1065), - [anon_sym_LT_QMARK] = ACTIONS(1065), - [aux_sym__html_block_4_token1] = ACTIONS(1065), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1063), - [aux_sym__html_block_6_token1] = ACTIONS(1065), - [aux_sym__html_block_6_token2] = ACTIONS(1063), - [sym__open_tag_html_block] = ACTIONS(1063), - [sym__open_tag_html_block_newline] = ACTIONS(1063), - [sym__closing_tag_html_block] = ACTIONS(1063), - [sym__closing_tag_html_block_newline] = ACTIONS(1063), - [sym_backslash_escape] = ACTIONS(1063), - [sym_entity_reference] = ACTIONS(1063), - [sym_numeric_character_reference] = ACTIONS(1063), - [sym_uri_autolink] = ACTIONS(1063), - [sym_email_autolink] = ACTIONS(1063), - [sym__whitespace_ge_2] = ACTIONS(1063), - [aux_sym__whitespace_token1] = ACTIONS(1065), - [sym__word_no_digit] = ACTIONS(1063), - [sym__digits] = ACTIONS(1063), - [aux_sym__newline_token1] = ACTIONS(1063), - [sym__block_continuation] = ACTIONS(1067), - [sym__block_quote_continuation] = ACTIONS(1067), - [sym__block_quote_start] = ACTIONS(1063), - [sym__indented_chunk_start] = ACTIONS(1063), - [sym_atx_h1_marker] = ACTIONS(1063), - [sym_atx_h2_marker] = ACTIONS(1063), - [sym_atx_h3_marker] = ACTIONS(1063), - [sym_atx_h4_marker] = ACTIONS(1063), - [sym_atx_h5_marker] = ACTIONS(1063), - [sym_atx_h6_marker] = ACTIONS(1063), - [sym__thematic_break] = ACTIONS(1063), - [sym__list_marker_minus] = ACTIONS(1063), - [sym__list_marker_plus] = ACTIONS(1063), - [sym__list_marker_star] = ACTIONS(1063), - [sym__list_marker_parenthesis] = ACTIONS(1063), - [sym__list_marker_dot] = ACTIONS(1063), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1063), - [sym__fenced_code_block_start_backtick] = ACTIONS(1063), - [sym__fenced_code_block_start_tilde] = ACTIONS(1063), - [sym__blank_line_start] = ACTIONS(1063), - [sym__code_span_start] = ACTIONS(1063), - [sym__emphasis_open_star] = ACTIONS(1063), - [sym__emphasis_open_underscore] = ACTIONS(1063), - [sym__last_token_whitespace] = ACTIONS(1067), + [166] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_BSLASH] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1008), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [aux_sym__html_block_1_token1] = ACTIONS(1008), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1010), + [anon_sym_LT_QMARK] = ACTIONS(1010), + [aux_sym__html_block_4_token1] = ACTIONS(1010), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1008), + [aux_sym__html_block_6_token1] = ACTIONS(1010), + [aux_sym__html_block_6_token2] = ACTIONS(1008), + [sym__open_tag_html_block] = ACTIONS(1008), + [sym__open_tag_html_block_newline] = ACTIONS(1008), + [sym__closing_tag_html_block] = ACTIONS(1008), + [sym__closing_tag_html_block_newline] = ACTIONS(1008), + [sym_backslash_escape] = ACTIONS(1008), + [sym_entity_reference] = ACTIONS(1008), + [sym_numeric_character_reference] = ACTIONS(1008), + [sym_uri_autolink] = ACTIONS(1008), + [sym_email_autolink] = ACTIONS(1008), + [sym__whitespace_ge_2] = ACTIONS(1008), + [aux_sym__whitespace_token1] = ACTIONS(1010), + [sym__word_no_digit] = ACTIONS(1008), + [sym__digits] = ACTIONS(1008), + [aux_sym__newline_token1] = ACTIONS(1008), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1008), + [sym__indented_chunk_start] = ACTIONS(1008), + [sym_atx_h1_marker] = ACTIONS(1008), + [sym_atx_h2_marker] = ACTIONS(1008), + [sym_atx_h3_marker] = ACTIONS(1008), + [sym_atx_h4_marker] = ACTIONS(1008), + [sym_atx_h5_marker] = ACTIONS(1008), + [sym_atx_h6_marker] = ACTIONS(1008), + [sym__thematic_break] = ACTIONS(1008), + [sym__list_marker_minus] = ACTIONS(1008), + [sym__list_marker_plus] = ACTIONS(1008), + [sym__list_marker_star] = ACTIONS(1008), + [sym__list_marker_parenthesis] = ACTIONS(1008), + [sym__list_marker_dot] = ACTIONS(1008), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1008), + [sym__fenced_code_block_start_backtick] = ACTIONS(1008), + [sym__fenced_code_block_start_tilde] = ACTIONS(1008), + [sym__blank_line_start] = ACTIONS(1008), + [sym__code_span_start] = ACTIONS(1008), + [sym__emphasis_open_star] = ACTIONS(1008), + [sym__emphasis_open_underscore] = ACTIONS(1008), + [sym__last_token_whitespace] = ACTIONS(93), }, - [236] = { - [aux_sym__ignore_matching_tokens] = STATE(182), - [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_continuation] = ACTIONS(1069), - [sym__block_quote_continuation] = ACTIONS(1069), - [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__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__code_span_start] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1006), - [sym__emphasis_open_underscore] = ACTIONS(1006), - [sym__last_token_whitespace] = ACTIONS(1069), + [167] = { + [aux_sym__ignore_matching_tokens] = STATE(193), + [ts_builtin_sym_end] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = 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_PIPE] = 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(1012), + [sym__block_quote_continuation] = ACTIONS(1012), + [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(1012), }, - [237] = { - [aux_sym__ignore_matching_tokens] = STATE(118), - [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(1075), - [sym__block_quote_continuation] = ACTIONS(1075), - [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(1075), + [168] = { + [aux_sym__ignore_matching_tokens] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_BSLASH] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1008), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [aux_sym__html_block_1_token1] = ACTIONS(1008), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1010), + [anon_sym_LT_QMARK] = ACTIONS(1010), + [aux_sym__html_block_4_token1] = ACTIONS(1010), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1008), + [aux_sym__html_block_6_token1] = ACTIONS(1010), + [aux_sym__html_block_6_token2] = ACTIONS(1008), + [sym__open_tag_html_block] = ACTIONS(1008), + [sym__open_tag_html_block_newline] = ACTIONS(1008), + [sym__closing_tag_html_block] = ACTIONS(1008), + [sym__closing_tag_html_block_newline] = ACTIONS(1008), + [sym_backslash_escape] = ACTIONS(1008), + [sym_entity_reference] = ACTIONS(1008), + [sym_numeric_character_reference] = ACTIONS(1008), + [sym_uri_autolink] = ACTIONS(1008), + [sym_email_autolink] = ACTIONS(1008), + [sym__whitespace_ge_2] = ACTIONS(1008), + [aux_sym__whitespace_token1] = ACTIONS(1010), + [sym__word_no_digit] = ACTIONS(1008), + [sym__digits] = ACTIONS(1008), + [aux_sym__newline_token1] = ACTIONS(1008), + [sym__block_continuation] = ACTIONS(1014), + [sym__block_quote_continuation] = ACTIONS(1014), + [sym__block_quote_start] = ACTIONS(1008), + [sym__indented_chunk_start] = ACTIONS(1008), + [sym_atx_h1_marker] = ACTIONS(1008), + [sym_atx_h2_marker] = ACTIONS(1008), + [sym_atx_h3_marker] = ACTIONS(1008), + [sym_atx_h4_marker] = ACTIONS(1008), + [sym_atx_h5_marker] = ACTIONS(1008), + [sym_atx_h6_marker] = ACTIONS(1008), + [sym__thematic_break] = ACTIONS(1008), + [sym__list_marker_minus] = ACTIONS(1008), + [sym__list_marker_plus] = ACTIONS(1008), + [sym__list_marker_star] = ACTIONS(1008), + [sym__list_marker_parenthesis] = ACTIONS(1008), + [sym__list_marker_dot] = ACTIONS(1008), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1008), + [sym__fenced_code_block_start_backtick] = ACTIONS(1008), + [sym__fenced_code_block_start_tilde] = ACTIONS(1008), + [sym__blank_line_start] = ACTIONS(1008), + [sym__code_span_start] = ACTIONS(1008), + [sym__emphasis_open_star] = ACTIONS(1008), + [sym__emphasis_open_underscore] = ACTIONS(1008), + [sym__last_token_whitespace] = ACTIONS(1014), }, - [238] = { - [aux_sym__ignore_matching_tokens] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1077), - [anon_sym_PERCENT] = ACTIONS(1077), - [anon_sym_AMP] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_BSLASH] = ACTIONS(1079), - [anon_sym_RBRACK] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym__] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1077), - [aux_sym__html_block_1_token1] = ACTIONS(1077), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1079), - [anon_sym_LT_QMARK] = ACTIONS(1079), - [aux_sym__html_block_4_token1] = ACTIONS(1079), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1077), - [aux_sym__html_block_6_token1] = ACTIONS(1079), - [aux_sym__html_block_6_token2] = ACTIONS(1077), - [sym__open_tag_html_block] = ACTIONS(1077), - [sym__open_tag_html_block_newline] = ACTIONS(1077), - [sym__closing_tag_html_block] = ACTIONS(1077), - [sym__closing_tag_html_block_newline] = ACTIONS(1077), - [sym_backslash_escape] = ACTIONS(1077), - [sym_entity_reference] = ACTIONS(1077), - [sym_numeric_character_reference] = ACTIONS(1077), - [sym_uri_autolink] = ACTIONS(1077), - [sym_email_autolink] = ACTIONS(1077), - [sym__whitespace_ge_2] = ACTIONS(1077), - [aux_sym__whitespace_token1] = ACTIONS(1079), - [sym__word_no_digit] = ACTIONS(1077), - [sym__digits] = ACTIONS(1077), - [aux_sym__newline_token1] = ACTIONS(1077), - [sym__block_continuation] = ACTIONS(1081), - [sym__block_quote_continuation] = ACTIONS(1081), - [sym__block_quote_start] = ACTIONS(1077), - [sym__indented_chunk_start] = ACTIONS(1077), - [sym_atx_h1_marker] = ACTIONS(1077), - [sym_atx_h2_marker] = ACTIONS(1077), - [sym_atx_h3_marker] = ACTIONS(1077), - [sym_atx_h4_marker] = ACTIONS(1077), - [sym_atx_h5_marker] = ACTIONS(1077), - [sym_atx_h6_marker] = ACTIONS(1077), - [sym__thematic_break] = ACTIONS(1077), - [sym__list_marker_minus] = ACTIONS(1077), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1077), - [sym__list_marker_parenthesis] = ACTIONS(1077), - [sym__list_marker_dot] = ACTIONS(1077), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1077), - [sym__fenced_code_block_start_backtick] = ACTIONS(1077), - [sym__fenced_code_block_start_tilde] = ACTIONS(1077), - [sym__blank_line_start] = ACTIONS(1077), - [sym__code_span_start] = ACTIONS(1077), - [sym__emphasis_open_star] = ACTIONS(1077), - [sym__emphasis_open_underscore] = ACTIONS(1077), - [sym__last_token_whitespace] = ACTIONS(1081), + [169] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_BSLASH] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym__] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [aux_sym__html_block_1_token1] = ACTIONS(923), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(925), + [anon_sym_LT_QMARK] = ACTIONS(925), + [aux_sym__html_block_4_token1] = ACTIONS(925), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(923), + [aux_sym__html_block_6_token1] = ACTIONS(925), + [aux_sym__html_block_6_token2] = ACTIONS(923), + [sym__open_tag_html_block] = ACTIONS(923), + [sym__open_tag_html_block_newline] = ACTIONS(923), + [sym__closing_tag_html_block] = ACTIONS(923), + [sym__closing_tag_html_block_newline] = ACTIONS(923), + [sym_backslash_escape] = ACTIONS(923), + [sym_entity_reference] = ACTIONS(923), + [sym_numeric_character_reference] = ACTIONS(923), + [sym_uri_autolink] = ACTIONS(923), + [sym_email_autolink] = ACTIONS(923), + [sym__whitespace_ge_2] = ACTIONS(923), + [aux_sym__whitespace_token1] = ACTIONS(925), + [sym__word_no_digit] = ACTIONS(923), + [sym__digits] = ACTIONS(923), + [aux_sym__newline_token1] = ACTIONS(923), + [sym__block_close] = ACTIONS(923), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(923), + [sym__indented_chunk_start] = ACTIONS(923), + [sym_atx_h1_marker] = ACTIONS(923), + [sym_atx_h2_marker] = ACTIONS(923), + [sym_atx_h3_marker] = ACTIONS(923), + [sym_atx_h4_marker] = ACTIONS(923), + [sym_atx_h5_marker] = ACTIONS(923), + [sym_atx_h6_marker] = ACTIONS(923), + [sym__thematic_break] = ACTIONS(923), + [sym__list_marker_minus] = ACTIONS(923), + [sym__list_marker_plus] = ACTIONS(923), + [sym__list_marker_star] = ACTIONS(923), + [sym__list_marker_parenthesis] = ACTIONS(923), + [sym__list_marker_dot] = ACTIONS(923), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_star_dont_interrupt] = ACTIONS(923), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(923), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(923), + [sym__fenced_code_block_start_backtick] = ACTIONS(923), + [sym__fenced_code_block_start_tilde] = ACTIONS(923), + [sym__blank_line_start] = ACTIONS(923), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(923), + [sym__emphasis_open_underscore] = ACTIONS(923), + [sym__last_token_whitespace] = ACTIONS(111), }, - [239] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [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_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [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__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__code_span_start] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1006), - [sym__emphasis_open_underscore] = ACTIONS(1006), - [sym__last_token_whitespace] = ACTIONS(115), + [170] = { + [aux_sym__ignore_matching_tokens] = STATE(273), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_BSLASH] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym__] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(923), + [aux_sym__html_block_1_token1] = ACTIONS(923), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(925), + [anon_sym_LT_QMARK] = ACTIONS(925), + [aux_sym__html_block_4_token1] = ACTIONS(925), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(923), + [aux_sym__html_block_6_token1] = ACTIONS(925), + [aux_sym__html_block_6_token2] = ACTIONS(923), + [sym__open_tag_html_block] = ACTIONS(923), + [sym__open_tag_html_block_newline] = ACTIONS(923), + [sym__closing_tag_html_block] = ACTIONS(923), + [sym__closing_tag_html_block_newline] = ACTIONS(923), + [sym_backslash_escape] = ACTIONS(923), + [sym_entity_reference] = ACTIONS(923), + [sym_numeric_character_reference] = ACTIONS(923), + [sym_uri_autolink] = ACTIONS(923), + [sym_email_autolink] = ACTIONS(923), + [sym__whitespace_ge_2] = ACTIONS(923), + [aux_sym__whitespace_token1] = ACTIONS(925), + [sym__word_no_digit] = ACTIONS(923), + [sym__digits] = ACTIONS(923), + [aux_sym__newline_token1] = ACTIONS(923), + [sym__block_close] = ACTIONS(923), + [sym__block_continuation] = ACTIONS(1016), + [sym__block_quote_continuation] = ACTIONS(1016), + [sym__block_quote_start] = ACTIONS(923), + [sym__indented_chunk_start] = ACTIONS(923), + [sym_atx_h1_marker] = ACTIONS(923), + [sym_atx_h2_marker] = ACTIONS(923), + [sym_atx_h3_marker] = ACTIONS(923), + [sym_atx_h4_marker] = ACTIONS(923), + [sym_atx_h5_marker] = ACTIONS(923), + [sym_atx_h6_marker] = ACTIONS(923), + [sym__thematic_break] = ACTIONS(923), + [sym__list_marker_minus] = ACTIONS(923), + [sym__list_marker_plus] = ACTIONS(923), + [sym__list_marker_star] = ACTIONS(923), + [sym__list_marker_parenthesis] = ACTIONS(923), + [sym__list_marker_dot] = ACTIONS(923), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(923), + [sym__list_marker_star_dont_interrupt] = ACTIONS(923), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(923), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(923), + [sym__fenced_code_block_start_backtick] = ACTIONS(923), + [sym__fenced_code_block_start_tilde] = ACTIONS(923), + [sym__blank_line_start] = ACTIONS(923), + [sym__code_span_start] = ACTIONS(923), + [sym__emphasis_open_star] = ACTIONS(923), + [sym__emphasis_open_underscore] = ACTIONS(923), + [sym__last_token_whitespace] = ACTIONS(1016), }, - [240] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(183), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_COLON] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1014), - [anon_sym_AT] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_BSLASH] = ACTIONS(1016), - [anon_sym_RBRACK] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1014), - [anon_sym__] = ACTIONS(1014), - [anon_sym_BQUOTE] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [aux_sym__html_block_1_token1] = ACTIONS(1014), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1016), - [anon_sym_LT_QMARK] = ACTIONS(1016), - [aux_sym__html_block_4_token1] = ACTIONS(1016), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1014), - [aux_sym__html_block_6_token1] = ACTIONS(1016), - [aux_sym__html_block_6_token2] = ACTIONS(1014), - [sym__open_tag_html_block] = ACTIONS(1014), - [sym__open_tag_html_block_newline] = ACTIONS(1014), - [sym__closing_tag_html_block] = ACTIONS(1014), - [sym__closing_tag_html_block_newline] = ACTIONS(1014), - [sym_backslash_escape] = ACTIONS(1014), - [sym_entity_reference] = ACTIONS(1014), - [sym_numeric_character_reference] = ACTIONS(1014), - [sym_uri_autolink] = ACTIONS(1014), - [sym_email_autolink] = ACTIONS(1014), - [sym__whitespace_ge_2] = ACTIONS(1014), - [aux_sym__whitespace_token1] = ACTIONS(1016), - [sym__word_no_digit] = ACTIONS(1014), - [sym__digits] = ACTIONS(1014), - [aux_sym__newline_token1] = ACTIONS(1014), - [sym__block_close] = ACTIONS(1014), - [sym__block_quote_start] = ACTIONS(1014), - [sym__indented_chunk_start] = ACTIONS(1014), - [sym_atx_h1_marker] = ACTIONS(1014), - [sym_atx_h2_marker] = ACTIONS(1014), - [sym_atx_h3_marker] = ACTIONS(1014), - [sym_atx_h4_marker] = ACTIONS(1014), - [sym_atx_h5_marker] = ACTIONS(1014), - [sym_atx_h6_marker] = ACTIONS(1014), - [sym_setext_h1_underline] = ACTIONS(1014), - [sym_setext_h2_underline] = ACTIONS(1014), - [sym__thematic_break] = ACTIONS(1014), - [sym__list_marker_minus] = ACTIONS(1014), - [sym__list_marker_plus] = ACTIONS(1014), - [sym__list_marker_star] = ACTIONS(1014), - [sym__list_marker_parenthesis] = ACTIONS(1014), - [sym__list_marker_dot] = ACTIONS(1014), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1014), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1014), - [sym__fenced_code_block_start_backtick] = ACTIONS(1014), - [sym__fenced_code_block_start_tilde] = ACTIONS(1014), - [sym__blank_line_start] = ACTIONS(1014), - [sym__split_token] = ACTIONS(1083), - [sym__code_span_start] = ACTIONS(1014), - [sym__emphasis_open_star] = ACTIONS(1014), - [sym__emphasis_open_underscore] = ACTIONS(1014), + [171] = { + [aux_sym__ignore_matching_tokens] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_BSLASH] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym__] = ACTIONS(931), + [anon_sym_BQUOTE] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [aux_sym__html_block_1_token1] = ACTIONS(931), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(933), + [anon_sym_LT_QMARK] = ACTIONS(933), + [aux_sym__html_block_4_token1] = ACTIONS(933), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(931), + [aux_sym__html_block_6_token1] = ACTIONS(933), + [aux_sym__html_block_6_token2] = ACTIONS(931), + [sym__open_tag_html_block] = ACTIONS(931), + [sym__open_tag_html_block_newline] = ACTIONS(931), + [sym__closing_tag_html_block] = ACTIONS(931), + [sym__closing_tag_html_block_newline] = ACTIONS(931), + [sym_backslash_escape] = ACTIONS(931), + [sym_entity_reference] = ACTIONS(931), + [sym_numeric_character_reference] = ACTIONS(931), + [sym_uri_autolink] = ACTIONS(931), + [sym_email_autolink] = ACTIONS(931), + [sym__whitespace_ge_2] = ACTIONS(931), + [aux_sym__whitespace_token1] = ACTIONS(933), + [sym__word_no_digit] = ACTIONS(931), + [sym__digits] = ACTIONS(931), + [aux_sym__newline_token1] = ACTIONS(931), + [sym__block_continuation] = ACTIONS(1018), + [sym__block_quote_continuation] = ACTIONS(1018), + [sym__block_quote_start] = ACTIONS(931), + [sym__indented_chunk_start] = ACTIONS(931), + [sym_atx_h1_marker] = ACTIONS(931), + [sym_atx_h2_marker] = ACTIONS(931), + [sym_atx_h3_marker] = ACTIONS(931), + [sym_atx_h4_marker] = ACTIONS(931), + [sym_atx_h5_marker] = ACTIONS(931), + [sym_atx_h6_marker] = ACTIONS(931), + [sym__thematic_break] = ACTIONS(931), + [sym__list_marker_minus] = ACTIONS(931), + [sym__list_marker_plus] = ACTIONS(931), + [sym__list_marker_star] = ACTIONS(931), + [sym__list_marker_parenthesis] = ACTIONS(931), + [sym__list_marker_dot] = ACTIONS(931), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(931), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(931), + [sym__list_marker_star_dont_interrupt] = ACTIONS(931), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(931), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(931), + [sym__fenced_code_block_start_backtick] = ACTIONS(931), + [sym__fenced_code_block_start_tilde] = ACTIONS(931), + [sym__blank_line_start] = ACTIONS(931), + [sym__code_span_start] = ACTIONS(931), + [sym__emphasis_open_star] = ACTIONS(931), + [sym__emphasis_open_underscore] = ACTIONS(931), + [sym__last_token_whitespace] = ACTIONS(1018), }, - [241] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(867), - [anon_sym_POUND] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_RPAREN] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym__] = ACTIONS(867), - [anon_sym_BQUOTE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(867), - [aux_sym__html_block_1_token1] = ACTIONS(867), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), - [anon_sym_LT_QMARK] = ACTIONS(869), - [aux_sym__html_block_4_token1] = ACTIONS(869), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), - [aux_sym__html_block_6_token1] = ACTIONS(869), - [aux_sym__html_block_6_token2] = ACTIONS(867), - [sym__open_tag_html_block] = ACTIONS(867), - [sym__open_tag_html_block_newline] = ACTIONS(867), - [sym__closing_tag_html_block] = ACTIONS(867), - [sym__closing_tag_html_block_newline] = ACTIONS(867), - [sym_backslash_escape] = ACTIONS(867), - [sym_entity_reference] = ACTIONS(867), - [sym_numeric_character_reference] = ACTIONS(867), - [sym_uri_autolink] = ACTIONS(867), - [sym_email_autolink] = ACTIONS(867), - [sym__whitespace_ge_2] = ACTIONS(867), - [aux_sym__whitespace_token1] = ACTIONS(869), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [aux_sym__newline_token1] = ACTIONS(867), + [172] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_BSLASH] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym__] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [aux_sym__html_block_1_token1] = ACTIONS(967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(969), + [anon_sym_LT_QMARK] = ACTIONS(969), + [aux_sym__html_block_4_token1] = ACTIONS(969), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(967), + [aux_sym__html_block_6_token1] = ACTIONS(969), + [aux_sym__html_block_6_token2] = ACTIONS(967), + [sym__open_tag_html_block] = ACTIONS(967), + [sym__open_tag_html_block_newline] = ACTIONS(967), + [sym__closing_tag_html_block] = ACTIONS(967), + [sym__closing_tag_html_block_newline] = ACTIONS(967), + [sym_backslash_escape] = ACTIONS(967), + [sym_entity_reference] = ACTIONS(967), + [sym_numeric_character_reference] = ACTIONS(967), + [sym_uri_autolink] = ACTIONS(967), + [sym_email_autolink] = ACTIONS(967), + [sym__whitespace_ge_2] = ACTIONS(967), + [aux_sym__whitespace_token1] = ACTIONS(969), + [sym__word_no_digit] = ACTIONS(967), + [sym__digits] = ACTIONS(967), + [aux_sym__newline_token1] = ACTIONS(967), + [sym__block_close] = ACTIONS(967), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(867), - [sym__indented_chunk_start] = ACTIONS(867), - [sym_atx_h1_marker] = ACTIONS(867), - [sym_atx_h2_marker] = ACTIONS(867), - [sym_atx_h3_marker] = ACTIONS(867), - [sym_atx_h4_marker] = ACTIONS(867), - [sym_atx_h5_marker] = ACTIONS(867), - [sym_atx_h6_marker] = ACTIONS(867), - [sym__thematic_break] = ACTIONS(867), - [sym__list_marker_minus] = ACTIONS(867), - [sym__list_marker_plus] = ACTIONS(867), - [sym__list_marker_star] = ACTIONS(867), - [sym__list_marker_parenthesis] = ACTIONS(867), - [sym__list_marker_dot] = ACTIONS(867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), - [sym__fenced_code_block_start_backtick] = ACTIONS(867), - [sym__fenced_code_block_start_tilde] = ACTIONS(867), - [sym__blank_line_start] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(867), - [sym__emphasis_open_star] = ACTIONS(867), - [sym__emphasis_open_underscore] = ACTIONS(867), + [sym__block_quote_start] = ACTIONS(967), + [sym__indented_chunk_start] = ACTIONS(967), + [sym_atx_h1_marker] = ACTIONS(967), + [sym_atx_h2_marker] = ACTIONS(967), + [sym_atx_h3_marker] = ACTIONS(967), + [sym_atx_h4_marker] = ACTIONS(967), + [sym_atx_h5_marker] = ACTIONS(967), + [sym_atx_h6_marker] = ACTIONS(967), + [sym__thematic_break] = ACTIONS(967), + [sym__list_marker_minus] = ACTIONS(967), + [sym__list_marker_plus] = ACTIONS(967), + [sym__list_marker_star] = ACTIONS(967), + [sym__list_marker_parenthesis] = ACTIONS(967), + [sym__list_marker_dot] = ACTIONS(967), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_star_dont_interrupt] = ACTIONS(967), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(967), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(967), + [sym__fenced_code_block_start_tilde] = ACTIONS(967), + [sym__blank_line_start] = ACTIONS(967), + [sym__code_span_start] = ACTIONS(967), + [sym__emphasis_open_star] = ACTIONS(967), + [sym__emphasis_open_underscore] = ACTIONS(967), [sym__last_token_whitespace] = ACTIONS(111), }, - [242] = { - [aux_sym__ignore_matching_tokens] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(867), - [anon_sym_POUND] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_RPAREN] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym__] = ACTIONS(867), - [anon_sym_BQUOTE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(867), - [aux_sym__html_block_1_token1] = ACTIONS(867), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), - [anon_sym_LT_QMARK] = ACTIONS(869), - [aux_sym__html_block_4_token1] = ACTIONS(869), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), - [aux_sym__html_block_6_token1] = ACTIONS(869), - [aux_sym__html_block_6_token2] = ACTIONS(867), - [sym__open_tag_html_block] = ACTIONS(867), - [sym__open_tag_html_block_newline] = ACTIONS(867), - [sym__closing_tag_html_block] = ACTIONS(867), - [sym__closing_tag_html_block_newline] = ACTIONS(867), - [sym_backslash_escape] = ACTIONS(867), - [sym_entity_reference] = ACTIONS(867), - [sym_numeric_character_reference] = ACTIONS(867), - [sym_uri_autolink] = ACTIONS(867), - [sym_email_autolink] = ACTIONS(867), - [sym__whitespace_ge_2] = ACTIONS(867), - [aux_sym__whitespace_token1] = ACTIONS(869), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [aux_sym__newline_token1] = ACTIONS(867), - [sym__block_continuation] = ACTIONS(1085), - [sym__block_quote_continuation] = ACTIONS(1085), - [sym__block_quote_start] = ACTIONS(867), - [sym__indented_chunk_start] = ACTIONS(867), - [sym_atx_h1_marker] = ACTIONS(867), - [sym_atx_h2_marker] = ACTIONS(867), - [sym_atx_h3_marker] = ACTIONS(867), - [sym_atx_h4_marker] = ACTIONS(867), - [sym_atx_h5_marker] = ACTIONS(867), - [sym_atx_h6_marker] = ACTIONS(867), - [sym__thematic_break] = ACTIONS(867), - [sym__list_marker_minus] = ACTIONS(867), - [sym__list_marker_plus] = ACTIONS(867), - [sym__list_marker_star] = ACTIONS(867), - [sym__list_marker_parenthesis] = ACTIONS(867), - [sym__list_marker_dot] = ACTIONS(867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), - [sym__fenced_code_block_start_backtick] = ACTIONS(867), - [sym__fenced_code_block_start_tilde] = ACTIONS(867), - [sym__blank_line_start] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(867), - [sym__emphasis_open_star] = ACTIONS(867), - [sym__emphasis_open_underscore] = ACTIONS(867), - [sym__last_token_whitespace] = ACTIONS(1085), + [173] = { + [aux_sym__ignore_matching_tokens] = STATE(272), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_BSLASH] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym__] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [aux_sym__html_block_1_token1] = ACTIONS(967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(969), + [anon_sym_LT_QMARK] = ACTIONS(969), + [aux_sym__html_block_4_token1] = ACTIONS(969), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(967), + [aux_sym__html_block_6_token1] = ACTIONS(969), + [aux_sym__html_block_6_token2] = ACTIONS(967), + [sym__open_tag_html_block] = ACTIONS(967), + [sym__open_tag_html_block_newline] = ACTIONS(967), + [sym__closing_tag_html_block] = ACTIONS(967), + [sym__closing_tag_html_block_newline] = ACTIONS(967), + [sym_backslash_escape] = ACTIONS(967), + [sym_entity_reference] = ACTIONS(967), + [sym_numeric_character_reference] = ACTIONS(967), + [sym_uri_autolink] = ACTIONS(967), + [sym_email_autolink] = ACTIONS(967), + [sym__whitespace_ge_2] = ACTIONS(967), + [aux_sym__whitespace_token1] = ACTIONS(969), + [sym__word_no_digit] = ACTIONS(967), + [sym__digits] = ACTIONS(967), + [aux_sym__newline_token1] = ACTIONS(967), + [sym__block_close] = ACTIONS(967), + [sym__block_continuation] = ACTIONS(1020), + [sym__block_quote_continuation] = ACTIONS(1020), + [sym__block_quote_start] = ACTIONS(967), + [sym__indented_chunk_start] = ACTIONS(967), + [sym_atx_h1_marker] = ACTIONS(967), + [sym_atx_h2_marker] = ACTIONS(967), + [sym_atx_h3_marker] = ACTIONS(967), + [sym_atx_h4_marker] = ACTIONS(967), + [sym_atx_h5_marker] = ACTIONS(967), + [sym_atx_h6_marker] = ACTIONS(967), + [sym__thematic_break] = ACTIONS(967), + [sym__list_marker_minus] = ACTIONS(967), + [sym__list_marker_plus] = ACTIONS(967), + [sym__list_marker_star] = ACTIONS(967), + [sym__list_marker_parenthesis] = ACTIONS(967), + [sym__list_marker_dot] = ACTIONS(967), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(967), + [sym__list_marker_star_dont_interrupt] = ACTIONS(967), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(967), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(967), + [sym__fenced_code_block_start_tilde] = ACTIONS(967), + [sym__blank_line_start] = ACTIONS(967), + [sym__code_span_start] = ACTIONS(967), + [sym__emphasis_open_star] = ACTIONS(967), + [sym__emphasis_open_underscore] = ACTIONS(967), + [sym__last_token_whitespace] = ACTIONS(1020), }, - [243] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PERCENT] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_COLON] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_BSLASH] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym__] = ACTIONS(861), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(861), - [aux_sym__html_block_1_token1] = ACTIONS(861), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), - [anon_sym_LT_QMARK] = ACTIONS(863), - [aux_sym__html_block_4_token1] = ACTIONS(863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), - [aux_sym__html_block_6_token1] = ACTIONS(863), - [aux_sym__html_block_6_token2] = ACTIONS(861), - [sym__open_tag_html_block] = ACTIONS(861), - [sym__open_tag_html_block_newline] = ACTIONS(861), - [sym__closing_tag_html_block] = ACTIONS(861), - [sym__closing_tag_html_block_newline] = ACTIONS(861), - [sym_backslash_escape] = ACTIONS(861), - [sym_entity_reference] = ACTIONS(861), - [sym_numeric_character_reference] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(861), - [sym_email_autolink] = ACTIONS(861), - [sym__whitespace_ge_2] = ACTIONS(861), - [aux_sym__whitespace_token1] = ACTIONS(863), - [sym__word_no_digit] = ACTIONS(861), - [sym__digits] = ACTIONS(861), - [aux_sym__newline_token1] = ACTIONS(861), + [174] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym__] = ACTIONS(977), + [anon_sym_BQUOTE] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(977), + [aux_sym__html_block_1_token1] = ACTIONS(977), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(979), + [anon_sym_LT_QMARK] = ACTIONS(979), + [aux_sym__html_block_4_token1] = ACTIONS(979), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(977), + [aux_sym__html_block_6_token1] = ACTIONS(979), + [aux_sym__html_block_6_token2] = ACTIONS(977), + [sym__open_tag_html_block] = ACTIONS(977), + [sym__open_tag_html_block_newline] = ACTIONS(977), + [sym__closing_tag_html_block] = ACTIONS(977), + [sym__closing_tag_html_block_newline] = ACTIONS(977), + [sym_backslash_escape] = ACTIONS(977), + [sym_entity_reference] = ACTIONS(977), + [sym_numeric_character_reference] = ACTIONS(977), + [sym_uri_autolink] = ACTIONS(977), + [sym_email_autolink] = ACTIONS(977), + [sym__whitespace_ge_2] = ACTIONS(977), + [aux_sym__whitespace_token1] = ACTIONS(979), + [sym__word_no_digit] = ACTIONS(977), + [sym__digits] = ACTIONS(977), + [aux_sym__newline_token1] = ACTIONS(977), + [sym__block_close] = ACTIONS(977), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(861), - [sym__indented_chunk_start] = ACTIONS(861), - [sym_atx_h1_marker] = ACTIONS(861), - [sym_atx_h2_marker] = ACTIONS(861), - [sym_atx_h3_marker] = ACTIONS(861), - [sym_atx_h4_marker] = ACTIONS(861), - [sym_atx_h5_marker] = ACTIONS(861), - [sym_atx_h6_marker] = ACTIONS(861), - [sym__thematic_break] = ACTIONS(861), - [sym__list_marker_minus] = ACTIONS(861), - [sym__list_marker_plus] = ACTIONS(861), - [sym__list_marker_star] = ACTIONS(861), - [sym__list_marker_parenthesis] = ACTIONS(861), - [sym__list_marker_dot] = ACTIONS(861), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_star_dont_interrupt] = ACTIONS(861), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), - [sym__fenced_code_block_start_backtick] = ACTIONS(861), - [sym__fenced_code_block_start_tilde] = ACTIONS(861), - [sym__blank_line_start] = ACTIONS(861), - [sym__code_span_start] = ACTIONS(861), - [sym__emphasis_open_star] = ACTIONS(861), - [sym__emphasis_open_underscore] = ACTIONS(861), + [sym__block_quote_start] = ACTIONS(977), + [sym__indented_chunk_start] = ACTIONS(977), + [sym_atx_h1_marker] = ACTIONS(977), + [sym_atx_h2_marker] = ACTIONS(977), + [sym_atx_h3_marker] = ACTIONS(977), + [sym_atx_h4_marker] = ACTIONS(977), + [sym_atx_h5_marker] = ACTIONS(977), + [sym_atx_h6_marker] = ACTIONS(977), + [sym__thematic_break] = ACTIONS(977), + [sym__list_marker_minus] = ACTIONS(977), + [sym__list_marker_plus] = ACTIONS(977), + [sym__list_marker_star] = ACTIONS(977), + [sym__list_marker_parenthesis] = ACTIONS(977), + [sym__list_marker_dot] = ACTIONS(977), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_star_dont_interrupt] = ACTIONS(977), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(977), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(977), + [sym__fenced_code_block_start_backtick] = ACTIONS(977), + [sym__fenced_code_block_start_tilde] = ACTIONS(977), + [sym__blank_line_start] = ACTIONS(977), + [sym__code_span_start] = ACTIONS(977), + [sym__emphasis_open_star] = ACTIONS(977), + [sym__emphasis_open_underscore] = ACTIONS(977), [sym__last_token_whitespace] = ACTIONS(111), }, - [244] = { - [aux_sym__ignore_matching_tokens] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PERCENT] = ACTIONS(861), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_COLON] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_BSLASH] = ACTIONS(863), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym__] = ACTIONS(861), - [anon_sym_BQUOTE] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(861), - [aux_sym__html_block_1_token1] = ACTIONS(861), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), - [anon_sym_LT_QMARK] = ACTIONS(863), - [aux_sym__html_block_4_token1] = ACTIONS(863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), - [aux_sym__html_block_6_token1] = ACTIONS(863), - [aux_sym__html_block_6_token2] = ACTIONS(861), - [sym__open_tag_html_block] = ACTIONS(861), - [sym__open_tag_html_block_newline] = ACTIONS(861), - [sym__closing_tag_html_block] = ACTIONS(861), - [sym__closing_tag_html_block_newline] = ACTIONS(861), - [sym_backslash_escape] = ACTIONS(861), - [sym_entity_reference] = ACTIONS(861), - [sym_numeric_character_reference] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(861), - [sym_email_autolink] = ACTIONS(861), - [sym__whitespace_ge_2] = ACTIONS(861), - [aux_sym__whitespace_token1] = ACTIONS(863), - [sym__word_no_digit] = ACTIONS(861), - [sym__digits] = ACTIONS(861), - [aux_sym__newline_token1] = ACTIONS(861), - [sym__block_continuation] = ACTIONS(1087), - [sym__block_quote_continuation] = ACTIONS(1087), - [sym__block_quote_start] = ACTIONS(861), - [sym__indented_chunk_start] = ACTIONS(861), - [sym_atx_h1_marker] = ACTIONS(861), - [sym_atx_h2_marker] = ACTIONS(861), - [sym_atx_h3_marker] = ACTIONS(861), - [sym_atx_h4_marker] = ACTIONS(861), - [sym_atx_h5_marker] = ACTIONS(861), - [sym_atx_h6_marker] = ACTIONS(861), - [sym__thematic_break] = ACTIONS(861), - [sym__list_marker_minus] = ACTIONS(861), - [sym__list_marker_plus] = ACTIONS(861), - [sym__list_marker_star] = ACTIONS(861), - [sym__list_marker_parenthesis] = ACTIONS(861), - [sym__list_marker_dot] = ACTIONS(861), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), - [sym__list_marker_star_dont_interrupt] = ACTIONS(861), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), - [sym__fenced_code_block_start_backtick] = ACTIONS(861), - [sym__fenced_code_block_start_tilde] = ACTIONS(861), - [sym__blank_line_start] = ACTIONS(861), - [sym__code_span_start] = ACTIONS(861), - [sym__emphasis_open_star] = ACTIONS(861), - [sym__emphasis_open_underscore] = ACTIONS(861), - [sym__last_token_whitespace] = ACTIONS(1087), + [175] = { + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(884), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [sym_uri_autolink] = ACTIONS(884), + [sym_email_autolink] = ACTIONS(884), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(884), + [sym__digits] = ACTIONS(884), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__emphasis_close_underscore] = ACTIONS(1022), }, - [245] = { - [aux_sym__ignore_matching_tokens] = STATE(143), - [ts_builtin_sym_end] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1089), - [anon_sym_PERCENT] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_COLON] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_BSLASH] = ACTIONS(1091), - [anon_sym_RBRACK] = ACTIONS(1089), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym__] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [aux_sym__html_block_1_token1] = ACTIONS(1089), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1091), - [anon_sym_LT_QMARK] = ACTIONS(1091), - [aux_sym__html_block_4_token1] = ACTIONS(1091), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1089), - [aux_sym__html_block_6_token1] = ACTIONS(1091), - [aux_sym__html_block_6_token2] = ACTIONS(1089), - [sym__open_tag_html_block] = ACTIONS(1089), - [sym__open_tag_html_block_newline] = ACTIONS(1089), - [sym__closing_tag_html_block] = ACTIONS(1089), - [sym__closing_tag_html_block_newline] = ACTIONS(1089), - [sym_backslash_escape] = ACTIONS(1089), - [sym_entity_reference] = ACTIONS(1089), - [sym_numeric_character_reference] = ACTIONS(1089), - [sym_uri_autolink] = ACTIONS(1089), - [sym_email_autolink] = ACTIONS(1089), - [sym__whitespace_ge_2] = ACTIONS(1089), - [aux_sym__whitespace_token1] = ACTIONS(1091), - [sym__word_no_digit] = ACTIONS(1089), - [sym__digits] = ACTIONS(1089), - [aux_sym__newline_token1] = ACTIONS(1089), - [sym__block_continuation] = ACTIONS(1093), - [sym__block_quote_continuation] = ACTIONS(1093), - [sym__block_quote_start] = ACTIONS(1089), - [sym__indented_chunk_start] = ACTIONS(1089), - [sym_atx_h1_marker] = ACTIONS(1089), - [sym_atx_h2_marker] = ACTIONS(1089), - [sym_atx_h3_marker] = ACTIONS(1089), - [sym_atx_h4_marker] = ACTIONS(1089), - [sym_atx_h5_marker] = ACTIONS(1089), - [sym_atx_h6_marker] = ACTIONS(1089), - [sym__thematic_break] = ACTIONS(1089), - [sym__list_marker_minus] = ACTIONS(1089), - [sym__list_marker_plus] = ACTIONS(1089), - [sym__list_marker_star] = ACTIONS(1089), - [sym__list_marker_parenthesis] = ACTIONS(1089), - [sym__list_marker_dot] = ACTIONS(1089), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1089), - [sym__fenced_code_block_start_backtick] = ACTIONS(1089), - [sym__fenced_code_block_start_tilde] = ACTIONS(1089), - [sym__blank_line_start] = ACTIONS(1089), - [sym__code_span_start] = ACTIONS(1089), - [sym__emphasis_open_star] = ACTIONS(1089), - [sym__emphasis_open_underscore] = ACTIONS(1089), - [sym__last_token_whitespace] = ACTIONS(1093), + [176] = { + [aux_sym__ignore_matching_tokens] = STATE(269), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym__] = ACTIONS(977), + [anon_sym_BQUOTE] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(977), + [aux_sym__html_block_1_token1] = ACTIONS(977), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(979), + [anon_sym_LT_QMARK] = ACTIONS(979), + [aux_sym__html_block_4_token1] = ACTIONS(979), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(977), + [aux_sym__html_block_6_token1] = ACTIONS(979), + [aux_sym__html_block_6_token2] = ACTIONS(977), + [sym__open_tag_html_block] = ACTIONS(977), + [sym__open_tag_html_block_newline] = ACTIONS(977), + [sym__closing_tag_html_block] = ACTIONS(977), + [sym__closing_tag_html_block_newline] = ACTIONS(977), + [sym_backslash_escape] = ACTIONS(977), + [sym_entity_reference] = ACTIONS(977), + [sym_numeric_character_reference] = ACTIONS(977), + [sym_uri_autolink] = ACTIONS(977), + [sym_email_autolink] = ACTIONS(977), + [sym__whitespace_ge_2] = ACTIONS(977), + [aux_sym__whitespace_token1] = ACTIONS(979), + [sym__word_no_digit] = ACTIONS(977), + [sym__digits] = ACTIONS(977), + [aux_sym__newline_token1] = ACTIONS(977), + [sym__block_close] = ACTIONS(977), + [sym__block_continuation] = ACTIONS(1024), + [sym__block_quote_continuation] = ACTIONS(1024), + [sym__block_quote_start] = ACTIONS(977), + [sym__indented_chunk_start] = ACTIONS(977), + [sym_atx_h1_marker] = ACTIONS(977), + [sym_atx_h2_marker] = ACTIONS(977), + [sym_atx_h3_marker] = ACTIONS(977), + [sym_atx_h4_marker] = ACTIONS(977), + [sym_atx_h5_marker] = ACTIONS(977), + [sym_atx_h6_marker] = ACTIONS(977), + [sym__thematic_break] = ACTIONS(977), + [sym__list_marker_minus] = ACTIONS(977), + [sym__list_marker_plus] = ACTIONS(977), + [sym__list_marker_star] = ACTIONS(977), + [sym__list_marker_parenthesis] = ACTIONS(977), + [sym__list_marker_dot] = ACTIONS(977), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(977), + [sym__list_marker_star_dont_interrupt] = ACTIONS(977), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(977), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(977), + [sym__fenced_code_block_start_backtick] = ACTIONS(977), + [sym__fenced_code_block_start_tilde] = ACTIONS(977), + [sym__blank_line_start] = ACTIONS(977), + [sym__code_span_start] = ACTIONS(977), + [sym__emphasis_open_star] = ACTIONS(977), + [sym__emphasis_open_underscore] = ACTIONS(977), + [sym__last_token_whitespace] = ACTIONS(1024), }, - [246] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(791), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__emphasis_close_underscore] = ACTIONS(1095), + [177] = { + [aux_sym__ignore_matching_tokens] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = 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_PIPE] = 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(1026), + [sym__block_quote_continuation] = ACTIONS(1026), + [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(1026), }, - [247] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__emphasis_close_star] = ACTIONS(1097), + [178] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_BSLASH] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym__] = ACTIONS(1028), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [aux_sym__html_block_1_token1] = ACTIONS(1028), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1030), + [anon_sym_LT_QMARK] = ACTIONS(1030), + [aux_sym__html_block_4_token1] = ACTIONS(1030), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1028), + [aux_sym__html_block_6_token1] = ACTIONS(1030), + [aux_sym__html_block_6_token2] = ACTIONS(1028), + [sym__open_tag_html_block] = ACTIONS(1028), + [sym__open_tag_html_block_newline] = ACTIONS(1028), + [sym__closing_tag_html_block] = ACTIONS(1028), + [sym__closing_tag_html_block_newline] = ACTIONS(1028), + [sym_backslash_escape] = ACTIONS(1028), + [sym_entity_reference] = ACTIONS(1028), + [sym_numeric_character_reference] = ACTIONS(1028), + [sym_uri_autolink] = ACTIONS(1028), + [sym_email_autolink] = ACTIONS(1028), + [sym__whitespace_ge_2] = ACTIONS(1028), + [aux_sym__whitespace_token1] = ACTIONS(1030), + [sym__word_no_digit] = ACTIONS(1028), + [sym__digits] = ACTIONS(1028), + [aux_sym__newline_token1] = ACTIONS(1028), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1028), + [sym__indented_chunk_start] = ACTIONS(1028), + [sym_atx_h1_marker] = ACTIONS(1028), + [sym_atx_h2_marker] = ACTIONS(1028), + [sym_atx_h3_marker] = ACTIONS(1028), + [sym_atx_h4_marker] = ACTIONS(1028), + [sym_atx_h5_marker] = ACTIONS(1028), + [sym_atx_h6_marker] = ACTIONS(1028), + [sym__thematic_break] = ACTIONS(1028), + [sym__list_marker_minus] = ACTIONS(1028), + [sym__list_marker_plus] = ACTIONS(1028), + [sym__list_marker_star] = ACTIONS(1028), + [sym__list_marker_parenthesis] = ACTIONS(1028), + [sym__list_marker_dot] = ACTIONS(1028), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1028), + [sym__fenced_code_block_start_backtick] = ACTIONS(1028), + [sym__fenced_code_block_start_tilde] = ACTIONS(1028), + [sym__blank_line_start] = ACTIONS(1028), + [sym__code_span_start] = ACTIONS(1028), + [sym__emphasis_open_star] = ACTIONS(1028), + [sym__emphasis_open_underscore] = ACTIONS(1028), + [sym__last_token_whitespace] = ACTIONS(93), }, - [248] = { - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_PERCENT] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_DOT] = ACTIONS(1020), - [anon_sym_SLASH] = ACTIONS(1020), - [anon_sym_COLON] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_GT] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_BSLASH] = ACTIONS(1022), - [anon_sym_RBRACK] = ACTIONS(1020), - [anon_sym_CARET] = ACTIONS(1020), - [anon_sym__] = ACTIONS(1020), - [anon_sym_BQUOTE] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1020), - [aux_sym__html_block_1_token1] = ACTIONS(1020), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1022), - [anon_sym_LT_QMARK] = ACTIONS(1022), - [aux_sym__html_block_4_token1] = ACTIONS(1022), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1020), - [aux_sym__html_block_6_token1] = ACTIONS(1022), - [aux_sym__html_block_6_token2] = ACTIONS(1020), - [sym__open_tag_html_block] = ACTIONS(1020), - [sym__open_tag_html_block_newline] = ACTIONS(1020), - [sym__closing_tag_html_block] = ACTIONS(1020), - [sym__closing_tag_html_block_newline] = ACTIONS(1020), - [sym_backslash_escape] = ACTIONS(1020), - [sym_entity_reference] = ACTIONS(1020), - [sym_numeric_character_reference] = ACTIONS(1020), - [sym_uri_autolink] = ACTIONS(1020), - [sym_email_autolink] = ACTIONS(1020), - [sym__whitespace_ge_2] = ACTIONS(1020), - [aux_sym__whitespace_token1] = ACTIONS(1022), - [sym__word_no_digit] = ACTIONS(1020), - [sym__digits] = ACTIONS(1020), - [aux_sym__newline_token1] = ACTIONS(1020), - [sym__block_close] = ACTIONS(1020), - [sym__block_quote_start] = ACTIONS(1020), - [sym__indented_chunk_start] = ACTIONS(1020), - [sym_atx_h1_marker] = ACTIONS(1020), - [sym_atx_h2_marker] = ACTIONS(1020), - [sym_atx_h3_marker] = ACTIONS(1020), - [sym_atx_h4_marker] = ACTIONS(1020), - [sym_atx_h5_marker] = ACTIONS(1020), - [sym_atx_h6_marker] = ACTIONS(1020), - [sym_setext_h1_underline] = ACTIONS(1020), - [sym_setext_h2_underline] = ACTIONS(1020), - [sym__thematic_break] = ACTIONS(1020), - [sym__list_marker_minus] = ACTIONS(1020), - [sym__list_marker_plus] = ACTIONS(1020), - [sym__list_marker_star] = ACTIONS(1020), - [sym__list_marker_parenthesis] = ACTIONS(1020), - [sym__list_marker_dot] = ACTIONS(1020), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1020), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1020), - [sym__fenced_code_block_start_backtick] = ACTIONS(1020), - [sym__fenced_code_block_start_tilde] = ACTIONS(1020), - [sym__blank_line_start] = ACTIONS(1020), - [sym__split_token] = ACTIONS(1024), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(1020), - [sym__emphasis_open_star] = ACTIONS(1020), - [sym__emphasis_open_underscore] = ACTIONS(1020), + [179] = { + [aux_sym__ignore_matching_tokens] = STATE(178), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_BSLASH] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym__] = ACTIONS(911), + [anon_sym_BQUOTE] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [aux_sym__html_block_1_token1] = ACTIONS(911), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(913), + [anon_sym_LT_QMARK] = ACTIONS(913), + [aux_sym__html_block_4_token1] = ACTIONS(913), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(911), + [aux_sym__html_block_6_token1] = ACTIONS(913), + [aux_sym__html_block_6_token2] = ACTIONS(911), + [sym__open_tag_html_block] = ACTIONS(911), + [sym__open_tag_html_block_newline] = ACTIONS(911), + [sym__closing_tag_html_block] = ACTIONS(911), + [sym__closing_tag_html_block_newline] = ACTIONS(911), + [sym_backslash_escape] = ACTIONS(911), + [sym_entity_reference] = ACTIONS(911), + [sym_numeric_character_reference] = ACTIONS(911), + [sym_uri_autolink] = ACTIONS(911), + [sym_email_autolink] = ACTIONS(911), + [sym__whitespace_ge_2] = ACTIONS(911), + [aux_sym__whitespace_token1] = ACTIONS(913), + [sym__word_no_digit] = ACTIONS(911), + [sym__digits] = ACTIONS(911), + [aux_sym__newline_token1] = ACTIONS(911), + [sym__block_continuation] = ACTIONS(1032), + [sym__block_quote_continuation] = ACTIONS(1032), + [sym__block_quote_start] = ACTIONS(911), + [sym__indented_chunk_start] = ACTIONS(911), + [sym_atx_h1_marker] = ACTIONS(911), + [sym_atx_h2_marker] = ACTIONS(911), + [sym_atx_h3_marker] = ACTIONS(911), + [sym_atx_h4_marker] = ACTIONS(911), + [sym_atx_h5_marker] = ACTIONS(911), + [sym_atx_h6_marker] = ACTIONS(911), + [sym__thematic_break] = ACTIONS(911), + [sym__list_marker_minus] = ACTIONS(911), + [sym__list_marker_plus] = ACTIONS(911), + [sym__list_marker_star] = ACTIONS(911), + [sym__list_marker_parenthesis] = ACTIONS(911), + [sym__list_marker_dot] = ACTIONS(911), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(911), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(911), + [sym__list_marker_star_dont_interrupt] = ACTIONS(911), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(911), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(911), + [sym__fenced_code_block_start_backtick] = ACTIONS(911), + [sym__fenced_code_block_start_tilde] = ACTIONS(911), + [sym__blank_line_start] = ACTIONS(911), + [sym__code_span_start] = ACTIONS(911), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__last_token_whitespace] = ACTIONS(1032), }, - [249] = { - [sym__soft_line_break] = STATE(889), - [sym__paragraph_end_newline] = STATE(359), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(87), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(873), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), - [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(35), - [sym__digits] = ACTIONS(35), - [aux_sym__newline_token1] = ACTIONS(1099), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), + [180] = { + [aux_sym__ignore_matching_tokens] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_BSLASH] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym__] = ACTIONS(1028), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [aux_sym__html_block_1_token1] = ACTIONS(1028), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1030), + [anon_sym_LT_QMARK] = ACTIONS(1030), + [aux_sym__html_block_4_token1] = ACTIONS(1030), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1028), + [aux_sym__html_block_6_token1] = ACTIONS(1030), + [aux_sym__html_block_6_token2] = ACTIONS(1028), + [sym__open_tag_html_block] = ACTIONS(1028), + [sym__open_tag_html_block_newline] = ACTIONS(1028), + [sym__closing_tag_html_block] = ACTIONS(1028), + [sym__closing_tag_html_block_newline] = ACTIONS(1028), + [sym_backslash_escape] = ACTIONS(1028), + [sym_entity_reference] = ACTIONS(1028), + [sym_numeric_character_reference] = ACTIONS(1028), + [sym_uri_autolink] = ACTIONS(1028), + [sym_email_autolink] = ACTIONS(1028), + [sym__whitespace_ge_2] = ACTIONS(1028), + [aux_sym__whitespace_token1] = ACTIONS(1030), + [sym__word_no_digit] = ACTIONS(1028), + [sym__digits] = ACTIONS(1028), + [aux_sym__newline_token1] = ACTIONS(1028), + [sym__block_continuation] = ACTIONS(1034), + [sym__block_quote_continuation] = ACTIONS(1034), + [sym__block_quote_start] = ACTIONS(1028), + [sym__indented_chunk_start] = ACTIONS(1028), + [sym_atx_h1_marker] = ACTIONS(1028), + [sym_atx_h2_marker] = ACTIONS(1028), + [sym_atx_h3_marker] = ACTIONS(1028), + [sym_atx_h4_marker] = ACTIONS(1028), + [sym_atx_h5_marker] = ACTIONS(1028), + [sym_atx_h6_marker] = ACTIONS(1028), + [sym__thematic_break] = ACTIONS(1028), + [sym__list_marker_minus] = ACTIONS(1028), + [sym__list_marker_plus] = ACTIONS(1028), + [sym__list_marker_star] = ACTIONS(1028), + [sym__list_marker_parenthesis] = ACTIONS(1028), + [sym__list_marker_dot] = ACTIONS(1028), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1028), + [sym__fenced_code_block_start_backtick] = ACTIONS(1028), + [sym__fenced_code_block_start_tilde] = ACTIONS(1028), + [sym__blank_line_start] = ACTIONS(1028), + [sym__code_span_start] = ACTIONS(1028), + [sym__emphasis_open_star] = ACTIONS(1028), + [sym__emphasis_open_underscore] = ACTIONS(1028), + [sym__last_token_whitespace] = ACTIONS(1034), }, - [250] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(791), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__emphasis_close_underscore] = ACTIONS(1101), + [181] = { + [aux_sym__ignore_matching_tokens] = STATE(111), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_RBRACK] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1036), + [anon_sym_BQUOTE] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [aux_sym__html_block_1_token1] = ACTIONS(1036), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1038), + [anon_sym_LT_QMARK] = ACTIONS(1038), + [aux_sym__html_block_4_token1] = ACTIONS(1038), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1036), + [aux_sym__html_block_6_token1] = ACTIONS(1038), + [aux_sym__html_block_6_token2] = ACTIONS(1036), + [sym__open_tag_html_block] = ACTIONS(1036), + [sym__open_tag_html_block_newline] = ACTIONS(1036), + [sym__closing_tag_html_block] = ACTIONS(1036), + [sym__closing_tag_html_block_newline] = ACTIONS(1036), + [sym_backslash_escape] = ACTIONS(1036), + [sym_entity_reference] = ACTIONS(1036), + [sym_numeric_character_reference] = ACTIONS(1036), + [sym_uri_autolink] = ACTIONS(1036), + [sym_email_autolink] = ACTIONS(1036), + [sym__whitespace_ge_2] = ACTIONS(1036), + [aux_sym__whitespace_token1] = ACTIONS(1038), + [sym__word_no_digit] = ACTIONS(1036), + [sym__digits] = ACTIONS(1036), + [aux_sym__newline_token1] = ACTIONS(1036), + [sym__block_close] = ACTIONS(1036), + [sym__block_continuation] = ACTIONS(1040), + [sym__block_quote_continuation] = ACTIONS(1040), + [sym__block_quote_start] = ACTIONS(1036), + [sym__indented_chunk_start] = ACTIONS(1036), + [sym_atx_h1_marker] = ACTIONS(1036), + [sym_atx_h2_marker] = ACTIONS(1036), + [sym_atx_h3_marker] = ACTIONS(1036), + [sym_atx_h4_marker] = ACTIONS(1036), + [sym_atx_h5_marker] = ACTIONS(1036), + [sym_atx_h6_marker] = ACTIONS(1036), + [sym__thematic_break] = ACTIONS(1036), + [sym__list_marker_minus] = ACTIONS(1036), + [sym__list_marker_plus] = ACTIONS(1036), + [sym__list_marker_star] = ACTIONS(1036), + [sym__list_marker_parenthesis] = ACTIONS(1036), + [sym__list_marker_dot] = ACTIONS(1036), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1036), + [sym__fenced_code_block_start_backtick] = ACTIONS(1036), + [sym__fenced_code_block_start_tilde] = ACTIONS(1036), + [sym__blank_line_start] = ACTIONS(1036), + [sym__code_span_start] = ACTIONS(1036), + [sym__emphasis_open_star] = ACTIONS(1036), + [sym__emphasis_open_underscore] = ACTIONS(1036), + [sym__last_token_whitespace] = ACTIONS(1040), }, - [251] = { - [aux_sym__ignore_matching_tokens] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [anon_sym_POUND] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_PERCENT] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_COLON] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_EQ] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_QMARK] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_BSLASH] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym__] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [aux_sym__html_block_1_token1] = ACTIONS(1103), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1105), - [anon_sym_LT_QMARK] = ACTIONS(1105), - [aux_sym__html_block_4_token1] = ACTIONS(1105), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1103), - [aux_sym__html_block_6_token1] = ACTIONS(1105), - [aux_sym__html_block_6_token2] = ACTIONS(1103), - [sym__open_tag_html_block] = ACTIONS(1103), - [sym__open_tag_html_block_newline] = ACTIONS(1103), - [sym__closing_tag_html_block] = ACTIONS(1103), - [sym__closing_tag_html_block_newline] = ACTIONS(1103), - [sym_backslash_escape] = ACTIONS(1103), - [sym_entity_reference] = ACTIONS(1103), - [sym_numeric_character_reference] = ACTIONS(1103), - [sym_uri_autolink] = ACTIONS(1103), - [sym_email_autolink] = ACTIONS(1103), - [sym__whitespace_ge_2] = ACTIONS(1103), - [aux_sym__whitespace_token1] = ACTIONS(1105), - [sym__word_no_digit] = ACTIONS(1103), - [sym__digits] = ACTIONS(1103), - [aux_sym__newline_token1] = ACTIONS(1103), - [sym__block_continuation] = ACTIONS(1107), - [sym__block_quote_continuation] = ACTIONS(1107), - [sym__block_quote_start] = ACTIONS(1103), - [sym__indented_chunk_start] = ACTIONS(1103), - [sym_atx_h1_marker] = ACTIONS(1103), - [sym_atx_h2_marker] = ACTIONS(1103), - [sym_atx_h3_marker] = ACTIONS(1103), - [sym_atx_h4_marker] = ACTIONS(1103), - [sym_atx_h5_marker] = ACTIONS(1103), - [sym_atx_h6_marker] = ACTIONS(1103), - [sym__thematic_break] = ACTIONS(1103), - [sym__list_marker_minus] = ACTIONS(1103), - [sym__list_marker_plus] = ACTIONS(1103), - [sym__list_marker_star] = ACTIONS(1103), - [sym__list_marker_parenthesis] = ACTIONS(1103), - [sym__list_marker_dot] = ACTIONS(1103), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1103), - [sym__fenced_code_block_start_backtick] = ACTIONS(1103), - [sym__fenced_code_block_start_tilde] = ACTIONS(1103), - [sym__blank_line_start] = ACTIONS(1103), - [sym__code_span_start] = ACTIONS(1103), - [sym__emphasis_open_star] = ACTIONS(1103), - [sym__emphasis_open_underscore] = ACTIONS(1103), - [sym__last_token_whitespace] = ACTIONS(1107), + [182] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym__] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [aux_sym__html_block_1_token1] = ACTIONS(1042), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1044), + [anon_sym_LT_QMARK] = ACTIONS(1044), + [aux_sym__html_block_4_token1] = ACTIONS(1044), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1042), + [aux_sym__html_block_6_token1] = ACTIONS(1044), + [aux_sym__html_block_6_token2] = ACTIONS(1042), + [sym__open_tag_html_block] = ACTIONS(1042), + [sym__open_tag_html_block_newline] = ACTIONS(1042), + [sym__closing_tag_html_block] = ACTIONS(1042), + [sym__closing_tag_html_block_newline] = ACTIONS(1042), + [sym_backslash_escape] = ACTIONS(1042), + [sym_entity_reference] = ACTIONS(1042), + [sym_numeric_character_reference] = ACTIONS(1042), + [sym_uri_autolink] = ACTIONS(1042), + [sym_email_autolink] = ACTIONS(1042), + [sym__whitespace_ge_2] = ACTIONS(1042), + [aux_sym__whitespace_token1] = ACTIONS(1044), + [sym__word_no_digit] = ACTIONS(1042), + [sym__digits] = ACTIONS(1042), + [aux_sym__newline_token1] = ACTIONS(1042), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1042), + [sym__indented_chunk_start] = ACTIONS(1042), + [sym_atx_h1_marker] = ACTIONS(1042), + [sym_atx_h2_marker] = ACTIONS(1042), + [sym_atx_h3_marker] = ACTIONS(1042), + [sym_atx_h4_marker] = ACTIONS(1042), + [sym_atx_h5_marker] = ACTIONS(1042), + [sym_atx_h6_marker] = ACTIONS(1042), + [sym__thematic_break] = ACTIONS(1042), + [sym__list_marker_minus] = ACTIONS(1042), + [sym__list_marker_plus] = ACTIONS(1042), + [sym__list_marker_star] = ACTIONS(1042), + [sym__list_marker_parenthesis] = ACTIONS(1042), + [sym__list_marker_dot] = ACTIONS(1042), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1042), + [sym__fenced_code_block_start_backtick] = ACTIONS(1042), + [sym__fenced_code_block_start_tilde] = ACTIONS(1042), + [sym__blank_line_start] = ACTIONS(1042), + [sym__code_span_start] = ACTIONS(1042), + [sym__emphasis_open_star] = ACTIONS(1042), + [sym__emphasis_open_underscore] = ACTIONS(1042), + [sym__last_token_whitespace] = ACTIONS(93), }, - [252] = { - [aux_sym__ignore_matching_tokens] = STATE(187), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1053), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [aux_sym__html_block_1_token1] = ACTIONS(1051), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1053), - [anon_sym_LT_QMARK] = ACTIONS(1053), - [aux_sym__html_block_4_token1] = ACTIONS(1053), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1051), - [aux_sym__html_block_6_token1] = ACTIONS(1053), - [aux_sym__html_block_6_token2] = ACTIONS(1051), - [sym__open_tag_html_block] = ACTIONS(1051), - [sym__open_tag_html_block_newline] = ACTIONS(1051), - [sym__closing_tag_html_block] = ACTIONS(1051), - [sym__closing_tag_html_block_newline] = ACTIONS(1051), - [sym_backslash_escape] = ACTIONS(1051), - [sym_entity_reference] = ACTIONS(1051), - [sym_numeric_character_reference] = ACTIONS(1051), - [sym_uri_autolink] = ACTIONS(1051), - [sym_email_autolink] = ACTIONS(1051), - [sym__whitespace_ge_2] = ACTIONS(1051), - [aux_sym__whitespace_token1] = ACTIONS(1053), - [sym__word_no_digit] = ACTIONS(1051), - [sym__digits] = ACTIONS(1051), - [aux_sym__newline_token1] = ACTIONS(1051), - [sym__block_close] = ACTIONS(1051), - [sym__block_continuation] = ACTIONS(1109), - [sym__block_quote_continuation] = ACTIONS(1109), - [sym__block_quote_start] = ACTIONS(1051), - [sym__indented_chunk_start] = ACTIONS(1051), - [sym_atx_h1_marker] = ACTIONS(1051), - [sym_atx_h2_marker] = ACTIONS(1051), - [sym_atx_h3_marker] = ACTIONS(1051), - [sym_atx_h4_marker] = ACTIONS(1051), - [sym_atx_h5_marker] = ACTIONS(1051), - [sym_atx_h6_marker] = ACTIONS(1051), - [sym__thematic_break] = ACTIONS(1051), - [sym__list_marker_minus] = ACTIONS(1051), - [sym__list_marker_plus] = ACTIONS(1051), - [sym__list_marker_star] = ACTIONS(1051), - [sym__list_marker_parenthesis] = ACTIONS(1051), - [sym__list_marker_dot] = ACTIONS(1051), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1051), - [sym__fenced_code_block_start_backtick] = ACTIONS(1051), - [sym__fenced_code_block_start_tilde] = ACTIONS(1051), - [sym__blank_line_start] = ACTIONS(1051), - [sym__code_span_start] = ACTIONS(1051), - [sym__emphasis_open_star] = ACTIONS(1051), - [sym__emphasis_open_underscore] = ACTIONS(1051), - [sym__last_token_whitespace] = ACTIONS(1109), + [183] = { + [aux_sym__ignore_matching_tokens] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym__] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [aux_sym__html_block_1_token1] = ACTIONS(1042), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1044), + [anon_sym_LT_QMARK] = ACTIONS(1044), + [aux_sym__html_block_4_token1] = ACTIONS(1044), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1042), + [aux_sym__html_block_6_token1] = ACTIONS(1044), + [aux_sym__html_block_6_token2] = ACTIONS(1042), + [sym__open_tag_html_block] = ACTIONS(1042), + [sym__open_tag_html_block_newline] = ACTIONS(1042), + [sym__closing_tag_html_block] = ACTIONS(1042), + [sym__closing_tag_html_block_newline] = ACTIONS(1042), + [sym_backslash_escape] = ACTIONS(1042), + [sym_entity_reference] = ACTIONS(1042), + [sym_numeric_character_reference] = ACTIONS(1042), + [sym_uri_autolink] = ACTIONS(1042), + [sym_email_autolink] = ACTIONS(1042), + [sym__whitespace_ge_2] = ACTIONS(1042), + [aux_sym__whitespace_token1] = ACTIONS(1044), + [sym__word_no_digit] = ACTIONS(1042), + [sym__digits] = ACTIONS(1042), + [aux_sym__newline_token1] = ACTIONS(1042), + [sym__block_continuation] = ACTIONS(1046), + [sym__block_quote_continuation] = ACTIONS(1046), + [sym__block_quote_start] = ACTIONS(1042), + [sym__indented_chunk_start] = ACTIONS(1042), + [sym_atx_h1_marker] = ACTIONS(1042), + [sym_atx_h2_marker] = ACTIONS(1042), + [sym_atx_h3_marker] = ACTIONS(1042), + [sym_atx_h4_marker] = ACTIONS(1042), + [sym_atx_h5_marker] = ACTIONS(1042), + [sym_atx_h6_marker] = ACTIONS(1042), + [sym__thematic_break] = ACTIONS(1042), + [sym__list_marker_minus] = ACTIONS(1042), + [sym__list_marker_plus] = ACTIONS(1042), + [sym__list_marker_star] = ACTIONS(1042), + [sym__list_marker_parenthesis] = ACTIONS(1042), + [sym__list_marker_dot] = ACTIONS(1042), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1042), + [sym__fenced_code_block_start_backtick] = ACTIONS(1042), + [sym__fenced_code_block_start_tilde] = ACTIONS(1042), + [sym__blank_line_start] = ACTIONS(1042), + [sym__code_span_start] = ACTIONS(1042), + [sym__emphasis_open_star] = ACTIONS(1042), + [sym__emphasis_open_underscore] = ACTIONS(1042), + [sym__last_token_whitespace] = ACTIONS(1046), }, - [253] = { - [aux_sym__ignore_matching_tokens] = STATE(189), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_PERCENT] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_COLON] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_QMARK] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_BSLASH] = ACTIONS(1059), - [anon_sym_RBRACK] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym__] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1057), - [aux_sym__html_block_1_token1] = ACTIONS(1057), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1059), - [anon_sym_LT_QMARK] = ACTIONS(1059), - [aux_sym__html_block_4_token1] = ACTIONS(1059), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1057), - [aux_sym__html_block_6_token1] = ACTIONS(1059), - [aux_sym__html_block_6_token2] = ACTIONS(1057), - [sym__open_tag_html_block] = ACTIONS(1057), - [sym__open_tag_html_block_newline] = ACTIONS(1057), - [sym__closing_tag_html_block] = ACTIONS(1057), - [sym__closing_tag_html_block_newline] = ACTIONS(1057), - [sym_backslash_escape] = ACTIONS(1057), - [sym_entity_reference] = ACTIONS(1057), - [sym_numeric_character_reference] = ACTIONS(1057), - [sym_uri_autolink] = ACTIONS(1057), - [sym_email_autolink] = ACTIONS(1057), - [sym__whitespace_ge_2] = ACTIONS(1057), - [aux_sym__whitespace_token1] = ACTIONS(1059), - [sym__word_no_digit] = ACTIONS(1057), - [sym__digits] = ACTIONS(1057), - [aux_sym__newline_token1] = ACTIONS(1057), - [sym__block_close] = ACTIONS(1057), - [sym__block_continuation] = ACTIONS(1111), - [sym__block_quote_continuation] = ACTIONS(1111), - [sym__block_quote_start] = ACTIONS(1057), - [sym__indented_chunk_start] = ACTIONS(1057), - [sym_atx_h1_marker] = ACTIONS(1057), - [sym_atx_h2_marker] = ACTIONS(1057), - [sym_atx_h3_marker] = ACTIONS(1057), - [sym_atx_h4_marker] = ACTIONS(1057), - [sym_atx_h5_marker] = ACTIONS(1057), - [sym_atx_h6_marker] = ACTIONS(1057), - [sym__thematic_break] = ACTIONS(1057), - [sym__list_marker_minus] = ACTIONS(1057), - [sym__list_marker_plus] = ACTIONS(1057), - [sym__list_marker_star] = ACTIONS(1057), - [sym__list_marker_parenthesis] = ACTIONS(1057), - [sym__list_marker_dot] = ACTIONS(1057), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1057), - [sym__fenced_code_block_start_backtick] = ACTIONS(1057), - [sym__fenced_code_block_start_tilde] = ACTIONS(1057), - [sym__blank_line_start] = ACTIONS(1057), - [sym__code_span_start] = ACTIONS(1057), - [sym__emphasis_open_star] = ACTIONS(1057), - [sym__emphasis_open_underscore] = ACTIONS(1057), - [sym__last_token_whitespace] = ACTIONS(1111), + [184] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_BSLASH] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym__] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [aux_sym__html_block_1_token1] = ACTIONS(1048), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1050), + [anon_sym_LT_QMARK] = ACTIONS(1050), + [aux_sym__html_block_4_token1] = ACTIONS(1050), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1048), + [aux_sym__html_block_6_token1] = ACTIONS(1050), + [aux_sym__html_block_6_token2] = ACTIONS(1048), + [sym__open_tag_html_block] = ACTIONS(1048), + [sym__open_tag_html_block_newline] = ACTIONS(1048), + [sym__closing_tag_html_block] = ACTIONS(1048), + [sym__closing_tag_html_block_newline] = ACTIONS(1048), + [sym_backslash_escape] = ACTIONS(1048), + [sym_entity_reference] = ACTIONS(1048), + [sym_numeric_character_reference] = ACTIONS(1048), + [sym_uri_autolink] = ACTIONS(1048), + [sym_email_autolink] = ACTIONS(1048), + [sym__whitespace_ge_2] = ACTIONS(1048), + [aux_sym__whitespace_token1] = ACTIONS(1050), + [sym__word_no_digit] = ACTIONS(1048), + [sym__digits] = ACTIONS(1048), + [aux_sym__newline_token1] = ACTIONS(1048), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1048), + [sym__indented_chunk_start] = ACTIONS(1048), + [sym_atx_h1_marker] = ACTIONS(1048), + [sym_atx_h2_marker] = ACTIONS(1048), + [sym_atx_h3_marker] = ACTIONS(1048), + [sym_atx_h4_marker] = ACTIONS(1048), + [sym_atx_h5_marker] = ACTIONS(1048), + [sym_atx_h6_marker] = ACTIONS(1048), + [sym__thematic_break] = ACTIONS(1048), + [sym__list_marker_minus] = ACTIONS(1048), + [sym__list_marker_plus] = ACTIONS(1048), + [sym__list_marker_star] = ACTIONS(1048), + [sym__list_marker_parenthesis] = ACTIONS(1048), + [sym__list_marker_dot] = ACTIONS(1048), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1048), + [sym__fenced_code_block_start_backtick] = ACTIONS(1048), + [sym__fenced_code_block_start_tilde] = ACTIONS(1048), + [sym__blank_line_start] = ACTIONS(1048), + [sym__code_span_start] = ACTIONS(1048), + [sym__emphasis_open_star] = ACTIONS(1048), + [sym__emphasis_open_underscore] = ACTIONS(1048), + [sym__last_token_whitespace] = ACTIONS(93), }, - [254] = { - [aux_sym__ignore_matching_tokens] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_PERCENT] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1115), - [anon_sym_SQUOTE] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_COMMA] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_COLON] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_BSLASH] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym__] = ACTIONS(1113), - [anon_sym_BQUOTE] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1113), - [aux_sym__html_block_1_token1] = ACTIONS(1113), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1115), - [anon_sym_LT_QMARK] = ACTIONS(1115), - [aux_sym__html_block_4_token1] = ACTIONS(1115), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1113), - [aux_sym__html_block_6_token1] = ACTIONS(1115), - [aux_sym__html_block_6_token2] = ACTIONS(1113), - [sym__open_tag_html_block] = ACTIONS(1113), - [sym__open_tag_html_block_newline] = ACTIONS(1113), - [sym__closing_tag_html_block] = ACTIONS(1113), - [sym__closing_tag_html_block_newline] = ACTIONS(1113), - [sym_backslash_escape] = ACTIONS(1113), - [sym_entity_reference] = ACTIONS(1113), - [sym_numeric_character_reference] = ACTIONS(1113), - [sym_uri_autolink] = ACTIONS(1113), - [sym_email_autolink] = ACTIONS(1113), - [sym__whitespace_ge_2] = ACTIONS(1113), - [aux_sym__whitespace_token1] = ACTIONS(1115), - [sym__word_no_digit] = ACTIONS(1113), - [sym__digits] = ACTIONS(1113), - [aux_sym__newline_token1] = ACTIONS(1113), - [sym__block_continuation] = ACTIONS(1117), - [sym__block_quote_continuation] = ACTIONS(1117), - [sym__block_quote_start] = ACTIONS(1113), - [sym__indented_chunk_start] = ACTIONS(1113), - [sym_atx_h1_marker] = ACTIONS(1113), - [sym_atx_h2_marker] = ACTIONS(1113), - [sym_atx_h3_marker] = ACTIONS(1113), - [sym_atx_h4_marker] = ACTIONS(1113), - [sym_atx_h5_marker] = ACTIONS(1113), - [sym_atx_h6_marker] = ACTIONS(1113), - [sym__thematic_break] = ACTIONS(1113), - [sym__list_marker_minus] = ACTIONS(1113), - [sym__list_marker_plus] = ACTIONS(1113), - [sym__list_marker_star] = ACTIONS(1113), - [sym__list_marker_parenthesis] = ACTIONS(1113), - [sym__list_marker_dot] = ACTIONS(1113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1113), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), - [sym__fenced_code_block_start_backtick] = ACTIONS(1113), - [sym__fenced_code_block_start_tilde] = ACTIONS(1113), - [sym__blank_line_start] = ACTIONS(1113), - [sym__code_span_start] = ACTIONS(1113), - [sym__emphasis_open_star] = ACTIONS(1113), - [sym__emphasis_open_underscore] = ACTIONS(1113), - [sym__last_token_whitespace] = ACTIONS(1117), + [185] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_SLASH] = ACTIONS(1052), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_GT] = ACTIONS(1052), + [anon_sym_QMARK] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_BSLASH] = ACTIONS(1054), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym__] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1052), + [aux_sym__html_block_1_token1] = ACTIONS(1052), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1054), + [anon_sym_LT_QMARK] = ACTIONS(1054), + [aux_sym__html_block_4_token1] = ACTIONS(1054), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1052), + [aux_sym__html_block_6_token1] = ACTIONS(1054), + [aux_sym__html_block_6_token2] = ACTIONS(1052), + [sym__open_tag_html_block] = ACTIONS(1052), + [sym__open_tag_html_block_newline] = ACTIONS(1052), + [sym__closing_tag_html_block] = ACTIONS(1052), + [sym__closing_tag_html_block_newline] = ACTIONS(1052), + [sym_backslash_escape] = ACTIONS(1052), + [sym_entity_reference] = ACTIONS(1052), + [sym_numeric_character_reference] = ACTIONS(1052), + [sym_uri_autolink] = ACTIONS(1052), + [sym_email_autolink] = ACTIONS(1052), + [sym__whitespace_ge_2] = ACTIONS(1052), + [aux_sym__whitespace_token1] = ACTIONS(1054), + [sym__word_no_digit] = ACTIONS(1052), + [sym__digits] = ACTIONS(1052), + [aux_sym__newline_token1] = ACTIONS(1052), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1052), + [sym__indented_chunk_start] = ACTIONS(1052), + [sym_atx_h1_marker] = ACTIONS(1052), + [sym_atx_h2_marker] = ACTIONS(1052), + [sym_atx_h3_marker] = ACTIONS(1052), + [sym_atx_h4_marker] = ACTIONS(1052), + [sym_atx_h5_marker] = ACTIONS(1052), + [sym_atx_h6_marker] = ACTIONS(1052), + [sym__thematic_break] = ACTIONS(1052), + [sym__list_marker_minus] = ACTIONS(1052), + [sym__list_marker_plus] = ACTIONS(1052), + [sym__list_marker_star] = ACTIONS(1052), + [sym__list_marker_parenthesis] = ACTIONS(1052), + [sym__list_marker_dot] = ACTIONS(1052), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1052), + [sym__fenced_code_block_start_backtick] = ACTIONS(1052), + [sym__fenced_code_block_start_tilde] = ACTIONS(1052), + [sym__blank_line_start] = ACTIONS(1052), + [sym__code_span_start] = ACTIONS(1052), + [sym__emphasis_open_star] = ACTIONS(1052), + [sym__emphasis_open_underscore] = ACTIONS(1052), + [sym__last_token_whitespace] = ACTIONS(93), }, - [255] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__emphasis_close_star] = ACTIONS(1119), + [186] = { + [aux_sym__ignore_matching_tokens] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_BSLASH] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1056), + [anon_sym_CARET] = ACTIONS(1056), + [anon_sym__] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1056), + [aux_sym__html_block_1_token1] = ACTIONS(1056), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1058), + [anon_sym_LT_QMARK] = ACTIONS(1058), + [aux_sym__html_block_4_token1] = ACTIONS(1058), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1056), + [aux_sym__html_block_6_token1] = ACTIONS(1058), + [aux_sym__html_block_6_token2] = ACTIONS(1056), + [sym__open_tag_html_block] = ACTIONS(1056), + [sym__open_tag_html_block_newline] = ACTIONS(1056), + [sym__closing_tag_html_block] = ACTIONS(1056), + [sym__closing_tag_html_block_newline] = ACTIONS(1056), + [sym_backslash_escape] = ACTIONS(1056), + [sym_entity_reference] = ACTIONS(1056), + [sym_numeric_character_reference] = ACTIONS(1056), + [sym_uri_autolink] = ACTIONS(1056), + [sym_email_autolink] = ACTIONS(1056), + [sym__whitespace_ge_2] = ACTIONS(1056), + [aux_sym__whitespace_token1] = ACTIONS(1058), + [sym__word_no_digit] = ACTIONS(1056), + [sym__digits] = ACTIONS(1056), + [aux_sym__newline_token1] = ACTIONS(1056), + [sym__block_close] = ACTIONS(1056), + [sym__block_continuation] = ACTIONS(1060), + [sym__block_quote_continuation] = ACTIONS(1060), + [sym__block_quote_start] = ACTIONS(1056), + [sym__indented_chunk_start] = ACTIONS(1056), + [sym_atx_h1_marker] = ACTIONS(1056), + [sym_atx_h2_marker] = ACTIONS(1056), + [sym_atx_h3_marker] = ACTIONS(1056), + [sym_atx_h4_marker] = ACTIONS(1056), + [sym_atx_h5_marker] = ACTIONS(1056), + [sym_atx_h6_marker] = ACTIONS(1056), + [sym__thematic_break] = ACTIONS(1056), + [sym__list_marker_minus] = ACTIONS(1056), + [sym__list_marker_plus] = ACTIONS(1056), + [sym__list_marker_star] = ACTIONS(1056), + [sym__list_marker_parenthesis] = ACTIONS(1056), + [sym__list_marker_dot] = ACTIONS(1056), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1056), + [sym__fenced_code_block_start_backtick] = ACTIONS(1056), + [sym__fenced_code_block_start_tilde] = ACTIONS(1056), + [sym__blank_line_start] = ACTIONS(1056), + [sym__code_span_start] = ACTIONS(1056), + [sym__emphasis_open_star] = ACTIONS(1056), + [sym__emphasis_open_underscore] = ACTIONS(1056), + [sym__last_token_whitespace] = ACTIONS(1060), }, - [256] = { - [aux_sym__ignore_matching_tokens] = STATE(191), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_PERCENT] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1063), - [anon_sym_COLON] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_QMARK] = ACTIONS(1063), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1063), - [anon_sym__] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1063), - [aux_sym__html_block_1_token1] = ACTIONS(1063), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1065), - [anon_sym_LT_QMARK] = ACTIONS(1065), - [aux_sym__html_block_4_token1] = ACTIONS(1065), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1063), - [aux_sym__html_block_6_token1] = ACTIONS(1065), - [aux_sym__html_block_6_token2] = ACTIONS(1063), - [sym__open_tag_html_block] = ACTIONS(1063), - [sym__open_tag_html_block_newline] = ACTIONS(1063), - [sym__closing_tag_html_block] = ACTIONS(1063), - [sym__closing_tag_html_block_newline] = ACTIONS(1063), - [sym_backslash_escape] = ACTIONS(1063), - [sym_entity_reference] = ACTIONS(1063), - [sym_numeric_character_reference] = ACTIONS(1063), - [sym_uri_autolink] = ACTIONS(1063), - [sym_email_autolink] = ACTIONS(1063), - [sym__whitespace_ge_2] = ACTIONS(1063), - [aux_sym__whitespace_token1] = ACTIONS(1065), - [sym__word_no_digit] = ACTIONS(1063), - [sym__digits] = ACTIONS(1063), - [aux_sym__newline_token1] = ACTIONS(1063), - [sym__block_close] = ACTIONS(1063), - [sym__block_continuation] = ACTIONS(1121), - [sym__block_quote_continuation] = ACTIONS(1121), - [sym__block_quote_start] = ACTIONS(1063), - [sym__indented_chunk_start] = ACTIONS(1063), - [sym_atx_h1_marker] = ACTIONS(1063), - [sym_atx_h2_marker] = ACTIONS(1063), - [sym_atx_h3_marker] = ACTIONS(1063), - [sym_atx_h4_marker] = ACTIONS(1063), - [sym_atx_h5_marker] = ACTIONS(1063), - [sym_atx_h6_marker] = ACTIONS(1063), - [sym__thematic_break] = ACTIONS(1063), - [sym__list_marker_minus] = ACTIONS(1063), - [sym__list_marker_plus] = ACTIONS(1063), - [sym__list_marker_star] = ACTIONS(1063), - [sym__list_marker_parenthesis] = ACTIONS(1063), - [sym__list_marker_dot] = ACTIONS(1063), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1063), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1063), - [sym__fenced_code_block_start_backtick] = ACTIONS(1063), - [sym__fenced_code_block_start_tilde] = ACTIONS(1063), - [sym__blank_line_start] = ACTIONS(1063), - [sym__code_span_start] = ACTIONS(1063), - [sym__emphasis_open_star] = ACTIONS(1063), - [sym__emphasis_open_underscore] = ACTIONS(1063), - [sym__last_token_whitespace] = ACTIONS(1121), + [187] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym__] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [aux_sym__html_block_1_token1] = ACTIONS(1062), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1064), + [anon_sym_LT_QMARK] = ACTIONS(1064), + [aux_sym__html_block_4_token1] = ACTIONS(1064), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1062), + [aux_sym__html_block_6_token1] = ACTIONS(1064), + [aux_sym__html_block_6_token2] = ACTIONS(1062), + [sym__open_tag_html_block] = ACTIONS(1062), + [sym__open_tag_html_block_newline] = ACTIONS(1062), + [sym__closing_tag_html_block] = ACTIONS(1062), + [sym__closing_tag_html_block_newline] = ACTIONS(1062), + [sym_backslash_escape] = ACTIONS(1062), + [sym_entity_reference] = ACTIONS(1062), + [sym_numeric_character_reference] = ACTIONS(1062), + [sym_uri_autolink] = ACTIONS(1062), + [sym_email_autolink] = ACTIONS(1062), + [sym__whitespace_ge_2] = ACTIONS(1062), + [aux_sym__whitespace_token1] = ACTIONS(1064), + [sym__word_no_digit] = ACTIONS(1062), + [sym__digits] = ACTIONS(1062), + [aux_sym__newline_token1] = ACTIONS(1062), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1062), + [sym__indented_chunk_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(1062), + [sym_atx_h2_marker] = ACTIONS(1062), + [sym_atx_h3_marker] = ACTIONS(1062), + [sym_atx_h4_marker] = ACTIONS(1062), + [sym_atx_h5_marker] = ACTIONS(1062), + [sym_atx_h6_marker] = ACTIONS(1062), + [sym__thematic_break] = ACTIONS(1062), + [sym__list_marker_minus] = ACTIONS(1062), + [sym__list_marker_plus] = ACTIONS(1062), + [sym__list_marker_star] = ACTIONS(1062), + [sym__list_marker_parenthesis] = ACTIONS(1062), + [sym__list_marker_dot] = ACTIONS(1062), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1062), + [sym__fenced_code_block_start_backtick] = ACTIONS(1062), + [sym__fenced_code_block_start_tilde] = ACTIONS(1062), + [sym__blank_line_start] = ACTIONS(1062), + [sym__code_span_start] = ACTIONS(1062), + [sym__emphasis_open_star] = ACTIONS(1062), + [sym__emphasis_open_underscore] = ACTIONS(1062), + [sym__last_token_whitespace] = ACTIONS(93), }, - [257] = { - [aux_sym__ignore_matching_tokens] = STATE(193), - [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(1123), - [sym__block_quote_continuation] = ACTIONS(1123), - [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(1123), + [188] = { + [aux_sym__ignore_matching_tokens] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym__] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [aux_sym__html_block_1_token1] = ACTIONS(1062), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1064), + [anon_sym_LT_QMARK] = ACTIONS(1064), + [aux_sym__html_block_4_token1] = ACTIONS(1064), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1062), + [aux_sym__html_block_6_token1] = ACTIONS(1064), + [aux_sym__html_block_6_token2] = ACTIONS(1062), + [sym__open_tag_html_block] = ACTIONS(1062), + [sym__open_tag_html_block_newline] = ACTIONS(1062), + [sym__closing_tag_html_block] = ACTIONS(1062), + [sym__closing_tag_html_block_newline] = ACTIONS(1062), + [sym_backslash_escape] = ACTIONS(1062), + [sym_entity_reference] = ACTIONS(1062), + [sym_numeric_character_reference] = ACTIONS(1062), + [sym_uri_autolink] = ACTIONS(1062), + [sym_email_autolink] = ACTIONS(1062), + [sym__whitespace_ge_2] = ACTIONS(1062), + [aux_sym__whitespace_token1] = ACTIONS(1064), + [sym__word_no_digit] = ACTIONS(1062), + [sym__digits] = ACTIONS(1062), + [aux_sym__newline_token1] = ACTIONS(1062), + [sym__block_continuation] = ACTIONS(1066), + [sym__block_quote_continuation] = ACTIONS(1066), + [sym__block_quote_start] = ACTIONS(1062), + [sym__indented_chunk_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(1062), + [sym_atx_h2_marker] = ACTIONS(1062), + [sym_atx_h3_marker] = ACTIONS(1062), + [sym_atx_h4_marker] = ACTIONS(1062), + [sym_atx_h5_marker] = ACTIONS(1062), + [sym_atx_h6_marker] = ACTIONS(1062), + [sym__thematic_break] = ACTIONS(1062), + [sym__list_marker_minus] = ACTIONS(1062), + [sym__list_marker_plus] = ACTIONS(1062), + [sym__list_marker_star] = ACTIONS(1062), + [sym__list_marker_parenthesis] = ACTIONS(1062), + [sym__list_marker_dot] = ACTIONS(1062), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1062), + [sym__fenced_code_block_start_backtick] = ACTIONS(1062), + [sym__fenced_code_block_start_tilde] = ACTIONS(1062), + [sym__blank_line_start] = ACTIONS(1062), + [sym__code_span_start] = ACTIONS(1062), + [sym__emphasis_open_star] = ACTIONS(1062), + [sym__emphasis_open_underscore] = ACTIONS(1062), + [sym__last_token_whitespace] = ACTIONS(1066), }, - [258] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1128), - [anon_sym_PERCENT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_COLON] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(1128), - [anon_sym_AT] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1140), - [anon_sym_RBRACK] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym__] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1143), - [anon_sym_LT_QMARK] = ACTIONS(1146), - [aux_sym__html_block_4_token1] = ACTIONS(1149), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1152), - [sym_backslash_escape] = ACTIONS(1155), - [sym_entity_reference] = ACTIONS(1155), - [sym_numeric_character_reference] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1155), - [sym_email_autolink] = ACTIONS(1155), - [sym__whitespace_ge_2] = ACTIONS(1158), - [aux_sym__whitespace_token1] = ACTIONS(1161), - [sym__word_no_digit] = ACTIONS(1155), - [sym__digits] = ACTIONS(1155), - [aux_sym__newline_token1] = ACTIONS(1164), - [sym__code_span_start] = ACTIONS(1167), - [sym__emphasis_open_star] = ACTIONS(1170), - [sym__emphasis_open_underscore] = ACTIONS(1173), - [sym__emphasis_close_star] = ACTIONS(1176), + [189] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_COLON] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym__] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [aux_sym__html_block_1_token1] = ACTIONS(1068), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1070), + [anon_sym_LT_QMARK] = ACTIONS(1070), + [aux_sym__html_block_4_token1] = ACTIONS(1070), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1068), + [aux_sym__html_block_6_token1] = ACTIONS(1070), + [aux_sym__html_block_6_token2] = ACTIONS(1068), + [sym__open_tag_html_block] = ACTIONS(1068), + [sym__open_tag_html_block_newline] = ACTIONS(1068), + [sym__closing_tag_html_block] = ACTIONS(1068), + [sym__closing_tag_html_block_newline] = ACTIONS(1068), + [sym_backslash_escape] = ACTIONS(1068), + [sym_entity_reference] = ACTIONS(1068), + [sym_numeric_character_reference] = ACTIONS(1068), + [sym_uri_autolink] = ACTIONS(1068), + [sym_email_autolink] = ACTIONS(1068), + [sym__whitespace_ge_2] = ACTIONS(1068), + [aux_sym__whitespace_token1] = ACTIONS(1070), + [sym__word_no_digit] = ACTIONS(1068), + [sym__digits] = ACTIONS(1068), + [aux_sym__newline_token1] = ACTIONS(1068), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1068), + [sym__indented_chunk_start] = ACTIONS(1068), + [sym_atx_h1_marker] = ACTIONS(1068), + [sym_atx_h2_marker] = ACTIONS(1068), + [sym_atx_h3_marker] = ACTIONS(1068), + [sym_atx_h4_marker] = ACTIONS(1068), + [sym_atx_h5_marker] = ACTIONS(1068), + [sym_atx_h6_marker] = ACTIONS(1068), + [sym__thematic_break] = ACTIONS(1068), + [sym__list_marker_minus] = ACTIONS(1068), + [sym__list_marker_plus] = ACTIONS(1068), + [sym__list_marker_star] = ACTIONS(1068), + [sym__list_marker_parenthesis] = ACTIONS(1068), + [sym__list_marker_dot] = ACTIONS(1068), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1068), + [sym__fenced_code_block_start_backtick] = ACTIONS(1068), + [sym__fenced_code_block_start_tilde] = ACTIONS(1068), + [sym__blank_line_start] = ACTIONS(1068), + [sym__code_span_start] = ACTIONS(1068), + [sym__emphasis_open_star] = ACTIONS(1068), + [sym__emphasis_open_underscore] = ACTIONS(1068), + [sym__last_token_whitespace] = ACTIONS(93), }, - [259] = { - [aux_sym__ignore_matching_tokens] = STATE(195), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1077), - [anon_sym_PERCENT] = ACTIONS(1077), - [anon_sym_AMP] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_RPAREN] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_COMMA] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(1077), - [anon_sym_COLON] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_QMARK] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_BSLASH] = ACTIONS(1079), - [anon_sym_RBRACK] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym__] = ACTIONS(1077), - [anon_sym_BQUOTE] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1077), - [aux_sym__html_block_1_token1] = ACTIONS(1077), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1079), - [anon_sym_LT_QMARK] = ACTIONS(1079), - [aux_sym__html_block_4_token1] = ACTIONS(1079), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1077), - [aux_sym__html_block_6_token1] = ACTIONS(1079), - [aux_sym__html_block_6_token2] = ACTIONS(1077), - [sym__open_tag_html_block] = ACTIONS(1077), - [sym__open_tag_html_block_newline] = ACTIONS(1077), - [sym__closing_tag_html_block] = ACTIONS(1077), - [sym__closing_tag_html_block_newline] = ACTIONS(1077), - [sym_backslash_escape] = ACTIONS(1077), - [sym_entity_reference] = ACTIONS(1077), - [sym_numeric_character_reference] = ACTIONS(1077), - [sym_uri_autolink] = ACTIONS(1077), - [sym_email_autolink] = ACTIONS(1077), - [sym__whitespace_ge_2] = ACTIONS(1077), - [aux_sym__whitespace_token1] = ACTIONS(1079), - [sym__word_no_digit] = ACTIONS(1077), - [sym__digits] = ACTIONS(1077), - [aux_sym__newline_token1] = ACTIONS(1077), - [sym__block_close] = ACTIONS(1077), - [sym__block_continuation] = ACTIONS(1178), - [sym__block_quote_continuation] = ACTIONS(1178), - [sym__block_quote_start] = ACTIONS(1077), - [sym__indented_chunk_start] = ACTIONS(1077), - [sym_atx_h1_marker] = ACTIONS(1077), - [sym_atx_h2_marker] = ACTIONS(1077), - [sym_atx_h3_marker] = ACTIONS(1077), - [sym_atx_h4_marker] = ACTIONS(1077), - [sym_atx_h5_marker] = ACTIONS(1077), - [sym_atx_h6_marker] = ACTIONS(1077), - [sym__thematic_break] = ACTIONS(1077), - [sym__list_marker_minus] = ACTIONS(1077), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1077), - [sym__list_marker_parenthesis] = ACTIONS(1077), - [sym__list_marker_dot] = ACTIONS(1077), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1077), - [sym__fenced_code_block_start_backtick] = ACTIONS(1077), - [sym__fenced_code_block_start_tilde] = ACTIONS(1077), - [sym__blank_line_start] = ACTIONS(1077), - [sym__code_span_start] = ACTIONS(1077), - [sym__emphasis_open_star] = ACTIONS(1077), - [sym__emphasis_open_underscore] = ACTIONS(1077), - [sym__last_token_whitespace] = ACTIONS(1178), + [190] = { + [aux_sym__ignore_matching_tokens] = STATE(166), + [ts_builtin_sym_end] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_PERCENT] = ACTIONS(899), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_BSLASH] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym__] = ACTIONS(899), + [anon_sym_BQUOTE] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_TILDE] = ACTIONS(899), + [aux_sym__html_block_1_token1] = ACTIONS(899), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(901), + [anon_sym_LT_QMARK] = ACTIONS(901), + [aux_sym__html_block_4_token1] = ACTIONS(901), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(899), + [aux_sym__html_block_6_token1] = ACTIONS(901), + [aux_sym__html_block_6_token2] = ACTIONS(899), + [sym__open_tag_html_block] = ACTIONS(899), + [sym__open_tag_html_block_newline] = ACTIONS(899), + [sym__closing_tag_html_block] = ACTIONS(899), + [sym__closing_tag_html_block_newline] = ACTIONS(899), + [sym_backslash_escape] = ACTIONS(899), + [sym_entity_reference] = ACTIONS(899), + [sym_numeric_character_reference] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(899), + [sym_email_autolink] = ACTIONS(899), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(899), + [sym__digits] = ACTIONS(899), + [aux_sym__newline_token1] = ACTIONS(899), + [sym__block_continuation] = ACTIONS(1072), + [sym__block_quote_continuation] = ACTIONS(1072), + [sym__block_quote_start] = ACTIONS(899), + [sym__indented_chunk_start] = ACTIONS(899), + [sym_atx_h1_marker] = ACTIONS(899), + [sym_atx_h2_marker] = ACTIONS(899), + [sym_atx_h3_marker] = ACTIONS(899), + [sym_atx_h4_marker] = ACTIONS(899), + [sym_atx_h5_marker] = ACTIONS(899), + [sym_atx_h6_marker] = ACTIONS(899), + [sym__thematic_break] = ACTIONS(899), + [sym__list_marker_minus] = ACTIONS(899), + [sym__list_marker_plus] = ACTIONS(899), + [sym__list_marker_star] = ACTIONS(899), + [sym__list_marker_parenthesis] = ACTIONS(899), + [sym__list_marker_dot] = ACTIONS(899), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(899), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(899), + [sym__list_marker_star_dont_interrupt] = ACTIONS(899), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(899), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(899), + [sym__fenced_code_block_start_backtick] = ACTIONS(899), + [sym__fenced_code_block_start_tilde] = ACTIONS(899), + [sym__blank_line_start] = ACTIONS(899), + [sym__code_span_start] = ACTIONS(899), + [sym__emphasis_open_star] = ACTIONS(899), + [sym__emphasis_open_underscore] = ACTIONS(899), + [sym__last_token_whitespace] = ACTIONS(1072), }, - [260] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(791), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), - [sym__emphasis_close_underscore] = ACTIONS(1180), + [191] = { + [aux_sym__ignore_matching_tokens] = STATE(256), + [ts_builtin_sym_end] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_COLON] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym__] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [aux_sym__html_block_1_token1] = ACTIONS(1068), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1070), + [anon_sym_LT_QMARK] = ACTIONS(1070), + [aux_sym__html_block_4_token1] = ACTIONS(1070), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1068), + [aux_sym__html_block_6_token1] = ACTIONS(1070), + [aux_sym__html_block_6_token2] = ACTIONS(1068), + [sym__open_tag_html_block] = ACTIONS(1068), + [sym__open_tag_html_block_newline] = ACTIONS(1068), + [sym__closing_tag_html_block] = ACTIONS(1068), + [sym__closing_tag_html_block_newline] = ACTIONS(1068), + [sym_backslash_escape] = ACTIONS(1068), + [sym_entity_reference] = ACTIONS(1068), + [sym_numeric_character_reference] = ACTIONS(1068), + [sym_uri_autolink] = ACTIONS(1068), + [sym_email_autolink] = ACTIONS(1068), + [sym__whitespace_ge_2] = ACTIONS(1068), + [aux_sym__whitespace_token1] = ACTIONS(1070), + [sym__word_no_digit] = ACTIONS(1068), + [sym__digits] = ACTIONS(1068), + [aux_sym__newline_token1] = ACTIONS(1068), + [sym__block_continuation] = ACTIONS(1074), + [sym__block_quote_continuation] = ACTIONS(1074), + [sym__block_quote_start] = ACTIONS(1068), + [sym__indented_chunk_start] = ACTIONS(1068), + [sym_atx_h1_marker] = ACTIONS(1068), + [sym_atx_h2_marker] = ACTIONS(1068), + [sym_atx_h3_marker] = ACTIONS(1068), + [sym_atx_h4_marker] = ACTIONS(1068), + [sym_atx_h5_marker] = ACTIONS(1068), + [sym_atx_h6_marker] = ACTIONS(1068), + [sym__thematic_break] = ACTIONS(1068), + [sym__list_marker_minus] = ACTIONS(1068), + [sym__list_marker_plus] = ACTIONS(1068), + [sym__list_marker_star] = ACTIONS(1068), + [sym__list_marker_parenthesis] = ACTIONS(1068), + [sym__list_marker_dot] = ACTIONS(1068), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1068), + [sym__fenced_code_block_start_backtick] = ACTIONS(1068), + [sym__fenced_code_block_start_tilde] = ACTIONS(1068), + [sym__blank_line_start] = ACTIONS(1068), + [sym__code_span_start] = ACTIONS(1068), + [sym__emphasis_open_star] = ACTIONS(1068), + [sym__emphasis_open_underscore] = ACTIONS(1068), + [sym__last_token_whitespace] = ACTIONS(1074), }, - [261] = { - [aux_sym__ignore_matching_tokens] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(843), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_POUND] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_DOT] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_QMARK] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(843), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym__] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(843), - [aux_sym__html_block_1_token1] = ACTIONS(843), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), - [anon_sym_LT_QMARK] = ACTIONS(845), - [aux_sym__html_block_4_token1] = ACTIONS(845), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), - [aux_sym__html_block_6_token1] = ACTIONS(845), - [aux_sym__html_block_6_token2] = ACTIONS(843), - [sym__open_tag_html_block] = ACTIONS(843), - [sym__open_tag_html_block_newline] = ACTIONS(843), - [sym__closing_tag_html_block] = ACTIONS(843), - [sym__closing_tag_html_block_newline] = ACTIONS(843), - [sym_backslash_escape] = ACTIONS(843), - [sym_entity_reference] = ACTIONS(843), - [sym_numeric_character_reference] = ACTIONS(843), - [sym_uri_autolink] = ACTIONS(843), - [sym_email_autolink] = ACTIONS(843), - [sym__whitespace_ge_2] = ACTIONS(843), - [aux_sym__whitespace_token1] = ACTIONS(845), - [sym__word_no_digit] = ACTIONS(843), - [sym__digits] = ACTIONS(843), - [aux_sym__newline_token1] = ACTIONS(843), - [sym__block_continuation] = ACTIONS(1182), - [sym__block_quote_continuation] = ACTIONS(1182), - [sym__block_quote_start] = ACTIONS(843), - [sym__indented_chunk_start] = ACTIONS(843), - [sym_atx_h1_marker] = ACTIONS(843), - [sym_atx_h2_marker] = ACTIONS(843), - [sym_atx_h3_marker] = ACTIONS(843), - [sym_atx_h4_marker] = ACTIONS(843), - [sym_atx_h5_marker] = ACTIONS(843), - [sym_atx_h6_marker] = ACTIONS(843), - [sym__thematic_break] = ACTIONS(843), - [sym__list_marker_minus] = ACTIONS(843), - [sym__list_marker_plus] = ACTIONS(843), - [sym__list_marker_star] = ACTIONS(843), - [sym__list_marker_parenthesis] = ACTIONS(843), - [sym__list_marker_dot] = ACTIONS(843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_star_dont_interrupt] = ACTIONS(843), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), - [sym__fenced_code_block_start_backtick] = ACTIONS(843), - [sym__fenced_code_block_start_tilde] = ACTIONS(843), - [sym__blank_line_start] = ACTIONS(843), - [sym__code_span_start] = ACTIONS(843), - [sym__emphasis_open_star] = ACTIONS(843), - [sym__emphasis_open_underscore] = ACTIONS(843), - [sym__last_token_whitespace] = ACTIONS(1182), + [192] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym__] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [aux_sym__html_block_1_token1] = ACTIONS(1076), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1078), + [anon_sym_LT_QMARK] = ACTIONS(1078), + [aux_sym__html_block_4_token1] = ACTIONS(1078), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1076), + [aux_sym__html_block_6_token1] = ACTIONS(1078), + [aux_sym__html_block_6_token2] = ACTIONS(1076), + [sym__open_tag_html_block] = ACTIONS(1076), + [sym__open_tag_html_block_newline] = ACTIONS(1076), + [sym__closing_tag_html_block] = ACTIONS(1076), + [sym__closing_tag_html_block_newline] = ACTIONS(1076), + [sym_backslash_escape] = ACTIONS(1076), + [sym_entity_reference] = ACTIONS(1076), + [sym_numeric_character_reference] = ACTIONS(1076), + [sym_uri_autolink] = ACTIONS(1076), + [sym_email_autolink] = ACTIONS(1076), + [sym__whitespace_ge_2] = ACTIONS(1076), + [aux_sym__whitespace_token1] = ACTIONS(1078), + [sym__word_no_digit] = ACTIONS(1076), + [sym__digits] = ACTIONS(1076), + [aux_sym__newline_token1] = ACTIONS(1076), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1076), + [sym__indented_chunk_start] = ACTIONS(1076), + [sym_atx_h1_marker] = ACTIONS(1076), + [sym_atx_h2_marker] = ACTIONS(1076), + [sym_atx_h3_marker] = ACTIONS(1076), + [sym_atx_h4_marker] = ACTIONS(1076), + [sym_atx_h5_marker] = ACTIONS(1076), + [sym_atx_h6_marker] = ACTIONS(1076), + [sym__thematic_break] = ACTIONS(1076), + [sym__list_marker_minus] = ACTIONS(1076), + [sym__list_marker_plus] = ACTIONS(1076), + [sym__list_marker_star] = ACTIONS(1076), + [sym__list_marker_parenthesis] = ACTIONS(1076), + [sym__list_marker_dot] = ACTIONS(1076), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1076), + [sym__fenced_code_block_start_backtick] = ACTIONS(1076), + [sym__fenced_code_block_start_tilde] = ACTIONS(1076), + [sym__blank_line_start] = ACTIONS(1076), + [sym__code_span_start] = ACTIONS(1076), + [sym__emphasis_open_star] = ACTIONS(1076), + [sym__emphasis_open_underscore] = ACTIONS(1076), + [sym__last_token_whitespace] = ACTIONS(93), }, - [262] = { - [aux_sym__ignore_matching_tokens] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1184), - [anon_sym_DOLLAR] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_COMMA] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_COLON] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_BSLASH] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym__] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [aux_sym__html_block_1_token1] = ACTIONS(1184), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1186), - [anon_sym_LT_QMARK] = ACTIONS(1186), - [aux_sym__html_block_4_token1] = ACTIONS(1186), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1184), - [aux_sym__html_block_6_token1] = ACTIONS(1186), - [aux_sym__html_block_6_token2] = ACTIONS(1184), - [sym__open_tag_html_block] = ACTIONS(1184), - [sym__open_tag_html_block_newline] = ACTIONS(1184), - [sym__closing_tag_html_block] = ACTIONS(1184), - [sym__closing_tag_html_block_newline] = ACTIONS(1184), - [sym_backslash_escape] = ACTIONS(1184), - [sym_entity_reference] = ACTIONS(1184), - [sym_numeric_character_reference] = ACTIONS(1184), - [sym_uri_autolink] = ACTIONS(1184), - [sym_email_autolink] = ACTIONS(1184), - [sym__whitespace_ge_2] = ACTIONS(1184), - [aux_sym__whitespace_token1] = ACTIONS(1186), - [sym__word_no_digit] = ACTIONS(1184), - [sym__digits] = ACTIONS(1184), - [aux_sym__newline_token1] = ACTIONS(1184), - [sym__block_continuation] = ACTIONS(1188), - [sym__block_quote_continuation] = ACTIONS(1188), - [sym__block_quote_start] = ACTIONS(1184), - [sym__indented_chunk_start] = ACTIONS(1184), - [sym_atx_h1_marker] = ACTIONS(1184), - [sym_atx_h2_marker] = ACTIONS(1184), - [sym_atx_h3_marker] = ACTIONS(1184), - [sym_atx_h4_marker] = ACTIONS(1184), - [sym_atx_h5_marker] = ACTIONS(1184), - [sym_atx_h6_marker] = ACTIONS(1184), - [sym__thematic_break] = ACTIONS(1184), - [sym__list_marker_minus] = ACTIONS(1184), - [sym__list_marker_plus] = ACTIONS(1184), - [sym__list_marker_star] = ACTIONS(1184), - [sym__list_marker_parenthesis] = ACTIONS(1184), - [sym__list_marker_dot] = ACTIONS(1184), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1184), - [sym__fenced_code_block_start_backtick] = ACTIONS(1184), - [sym__fenced_code_block_start_tilde] = ACTIONS(1184), - [sym__blank_line_start] = ACTIONS(1184), - [sym__code_span_start] = ACTIONS(1184), - [sym__emphasis_open_star] = ACTIONS(1184), - [sym__emphasis_open_underscore] = ACTIONS(1184), - [sym__last_token_whitespace] = ACTIONS(1188), + [193] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [aux_sym__html_block_1_token1] = ACTIONS(1080), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1082), + [anon_sym_LT_QMARK] = ACTIONS(1082), + [aux_sym__html_block_4_token1] = ACTIONS(1082), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1080), + [aux_sym__html_block_6_token1] = ACTIONS(1082), + [aux_sym__html_block_6_token2] = ACTIONS(1080), + [sym__open_tag_html_block] = ACTIONS(1080), + [sym__open_tag_html_block_newline] = ACTIONS(1080), + [sym__closing_tag_html_block] = ACTIONS(1080), + [sym__closing_tag_html_block_newline] = ACTIONS(1080), + [sym_backslash_escape] = ACTIONS(1080), + [sym_entity_reference] = ACTIONS(1080), + [sym_numeric_character_reference] = ACTIONS(1080), + [sym_uri_autolink] = ACTIONS(1080), + [sym_email_autolink] = ACTIONS(1080), + [sym__whitespace_ge_2] = ACTIONS(1080), + [aux_sym__whitespace_token1] = ACTIONS(1082), + [sym__word_no_digit] = ACTIONS(1080), + [sym__digits] = ACTIONS(1080), + [aux_sym__newline_token1] = ACTIONS(1080), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1080), + [sym__indented_chunk_start] = ACTIONS(1080), + [sym_atx_h1_marker] = ACTIONS(1080), + [sym_atx_h2_marker] = ACTIONS(1080), + [sym_atx_h3_marker] = ACTIONS(1080), + [sym_atx_h4_marker] = ACTIONS(1080), + [sym_atx_h5_marker] = ACTIONS(1080), + [sym_atx_h6_marker] = ACTIONS(1080), + [sym__thematic_break] = ACTIONS(1080), + [sym__list_marker_minus] = ACTIONS(1080), + [sym__list_marker_plus] = ACTIONS(1080), + [sym__list_marker_star] = ACTIONS(1080), + [sym__list_marker_parenthesis] = ACTIONS(1080), + [sym__list_marker_dot] = ACTIONS(1080), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1080), + [sym__fenced_code_block_start_backtick] = ACTIONS(1080), + [sym__fenced_code_block_start_tilde] = ACTIONS(1080), + [sym__blank_line_start] = ACTIONS(1080), + [sym__code_span_start] = ACTIONS(1080), + [sym__emphasis_open_star] = ACTIONS(1080), + [sym__emphasis_open_underscore] = ACTIONS(1080), + [sym__last_token_whitespace] = ACTIONS(93), }, - [263] = { - [sym__soft_line_break] = STATE(263), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [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(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(263), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(263), - [sym__whitespace] = STATE(263), - [sym__word] = STATE(263), - [sym__newline] = STATE(2211), - [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(813), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(263), - [sym__code_span] = STATE(263), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1193), - [anon_sym_POUND] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_PERCENT] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_COLON] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_QMARK] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_BSLASH] = ACTIONS(1205), - [anon_sym_RBRACK] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [anon_sym__] = ACTIONS(1193), - [anon_sym_BQUOTE] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1208), - [anon_sym_LT_QMARK] = ACTIONS(1211), - [aux_sym__html_block_4_token1] = ACTIONS(1214), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1217), - [sym_backslash_escape] = ACTIONS(1220), - [sym_entity_reference] = ACTIONS(1220), - [sym_numeric_character_reference] = ACTIONS(1220), - [sym_uri_autolink] = ACTIONS(1220), - [sym_email_autolink] = ACTIONS(1220), - [sym__whitespace_ge_2] = ACTIONS(1223), - [aux_sym__whitespace_token1] = ACTIONS(1226), - [sym__word_no_digit] = ACTIONS(1220), - [sym__digits] = ACTIONS(1220), - [aux_sym__newline_token1] = ACTIONS(1229), - [sym__code_span_start] = ACTIONS(1232), - [sym__emphasis_open_star] = ACTIONS(1235), - [sym__emphasis_open_underscore] = ACTIONS(1238), - [sym__emphasis_close_underscore] = ACTIONS(1241), + [194] = { + [aux_sym__ignore_matching_tokens] = STATE(219), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_BSLASH] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1056), + [anon_sym_CARET] = ACTIONS(1056), + [anon_sym__] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1056), + [aux_sym__html_block_1_token1] = ACTIONS(1056), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1058), + [anon_sym_LT_QMARK] = ACTIONS(1058), + [aux_sym__html_block_4_token1] = ACTIONS(1058), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1056), + [aux_sym__html_block_6_token1] = ACTIONS(1058), + [aux_sym__html_block_6_token2] = ACTIONS(1056), + [sym__open_tag_html_block] = ACTIONS(1056), + [sym__open_tag_html_block_newline] = ACTIONS(1056), + [sym__closing_tag_html_block] = ACTIONS(1056), + [sym__closing_tag_html_block_newline] = ACTIONS(1056), + [sym_backslash_escape] = ACTIONS(1056), + [sym_entity_reference] = ACTIONS(1056), + [sym_numeric_character_reference] = ACTIONS(1056), + [sym_uri_autolink] = ACTIONS(1056), + [sym_email_autolink] = ACTIONS(1056), + [sym__whitespace_ge_2] = ACTIONS(1056), + [aux_sym__whitespace_token1] = ACTIONS(1058), + [sym__word_no_digit] = ACTIONS(1056), + [sym__digits] = ACTIONS(1056), + [aux_sym__newline_token1] = ACTIONS(1056), + [sym__block_continuation] = ACTIONS(1084), + [sym__block_quote_continuation] = ACTIONS(1084), + [sym__block_quote_start] = ACTIONS(1056), + [sym__indented_chunk_start] = ACTIONS(1056), + [sym_atx_h1_marker] = ACTIONS(1056), + [sym_atx_h2_marker] = ACTIONS(1056), + [sym_atx_h3_marker] = ACTIONS(1056), + [sym_atx_h4_marker] = ACTIONS(1056), + [sym_atx_h5_marker] = ACTIONS(1056), + [sym_atx_h6_marker] = ACTIONS(1056), + [sym__thematic_break] = ACTIONS(1056), + [sym__list_marker_minus] = ACTIONS(1056), + [sym__list_marker_plus] = ACTIONS(1056), + [sym__list_marker_star] = ACTIONS(1056), + [sym__list_marker_parenthesis] = ACTIONS(1056), + [sym__list_marker_dot] = ACTIONS(1056), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1056), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1056), + [sym__fenced_code_block_start_backtick] = ACTIONS(1056), + [sym__fenced_code_block_start_tilde] = ACTIONS(1056), + [sym__blank_line_start] = ACTIONS(1056), + [sym__code_span_start] = ACTIONS(1056), + [sym__emphasis_open_star] = ACTIONS(1056), + [sym__emphasis_open_underscore] = ACTIONS(1056), + [sym__last_token_whitespace] = ACTIONS(1084), }, - [264] = { - [aux_sym__ignore_matching_tokens] = STATE(105), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1089), - [anon_sym_PERCENT] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_COLON] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_BSLASH] = ACTIONS(1091), - [anon_sym_RBRACK] = ACTIONS(1089), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym__] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [aux_sym__html_block_1_token1] = ACTIONS(1089), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1091), - [anon_sym_LT_QMARK] = ACTIONS(1091), - [aux_sym__html_block_4_token1] = ACTIONS(1091), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1089), - [aux_sym__html_block_6_token1] = ACTIONS(1091), - [aux_sym__html_block_6_token2] = ACTIONS(1089), - [sym__open_tag_html_block] = ACTIONS(1089), - [sym__open_tag_html_block_newline] = ACTIONS(1089), - [sym__closing_tag_html_block] = ACTIONS(1089), - [sym__closing_tag_html_block_newline] = ACTIONS(1089), - [sym_backslash_escape] = ACTIONS(1089), - [sym_entity_reference] = ACTIONS(1089), - [sym_numeric_character_reference] = ACTIONS(1089), - [sym_uri_autolink] = ACTIONS(1089), - [sym_email_autolink] = ACTIONS(1089), - [sym__whitespace_ge_2] = ACTIONS(1089), - [aux_sym__whitespace_token1] = ACTIONS(1091), - [sym__word_no_digit] = ACTIONS(1089), - [sym__digits] = ACTIONS(1089), - [aux_sym__newline_token1] = ACTIONS(1089), - [sym__block_close] = ACTIONS(1089), - [sym__block_continuation] = ACTIONS(1243), - [sym__block_quote_continuation] = ACTIONS(1243), - [sym__block_quote_start] = ACTIONS(1089), - [sym__indented_chunk_start] = ACTIONS(1089), - [sym_atx_h1_marker] = ACTIONS(1089), - [sym_atx_h2_marker] = ACTIONS(1089), - [sym_atx_h3_marker] = ACTIONS(1089), - [sym_atx_h4_marker] = ACTIONS(1089), - [sym_atx_h5_marker] = ACTIONS(1089), - [sym_atx_h6_marker] = ACTIONS(1089), - [sym__thematic_break] = ACTIONS(1089), - [sym__list_marker_minus] = ACTIONS(1089), - [sym__list_marker_plus] = ACTIONS(1089), - [sym__list_marker_star] = ACTIONS(1089), - [sym__list_marker_parenthesis] = ACTIONS(1089), - [sym__list_marker_dot] = ACTIONS(1089), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1089), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1089), - [sym__fenced_code_block_start_backtick] = ACTIONS(1089), - [sym__fenced_code_block_start_tilde] = ACTIONS(1089), - [sym__blank_line_start] = ACTIONS(1089), - [sym__code_span_start] = ACTIONS(1089), - [sym__emphasis_open_star] = ACTIONS(1089), - [sym__emphasis_open_underscore] = ACTIONS(1089), - [sym__last_token_whitespace] = ACTIONS(1243), + [195] = { + [aux_sym__ignore_matching_tokens] = STATE(216), + [ts_builtin_sym_end] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_RBRACK] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1036), + [anon_sym_BQUOTE] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1036), + [aux_sym__html_block_1_token1] = ACTIONS(1036), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1038), + [anon_sym_LT_QMARK] = ACTIONS(1038), + [aux_sym__html_block_4_token1] = ACTIONS(1038), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1036), + [aux_sym__html_block_6_token1] = ACTIONS(1038), + [aux_sym__html_block_6_token2] = ACTIONS(1036), + [sym__open_tag_html_block] = ACTIONS(1036), + [sym__open_tag_html_block_newline] = ACTIONS(1036), + [sym__closing_tag_html_block] = ACTIONS(1036), + [sym__closing_tag_html_block_newline] = ACTIONS(1036), + [sym_backslash_escape] = ACTIONS(1036), + [sym_entity_reference] = ACTIONS(1036), + [sym_numeric_character_reference] = ACTIONS(1036), + [sym_uri_autolink] = ACTIONS(1036), + [sym_email_autolink] = ACTIONS(1036), + [sym__whitespace_ge_2] = ACTIONS(1036), + [aux_sym__whitespace_token1] = ACTIONS(1038), + [sym__word_no_digit] = ACTIONS(1036), + [sym__digits] = ACTIONS(1036), + [aux_sym__newline_token1] = ACTIONS(1036), + [sym__block_continuation] = ACTIONS(1086), + [sym__block_quote_continuation] = ACTIONS(1086), + [sym__block_quote_start] = ACTIONS(1036), + [sym__indented_chunk_start] = ACTIONS(1036), + [sym_atx_h1_marker] = ACTIONS(1036), + [sym_atx_h2_marker] = ACTIONS(1036), + [sym_atx_h3_marker] = ACTIONS(1036), + [sym_atx_h4_marker] = ACTIONS(1036), + [sym_atx_h5_marker] = ACTIONS(1036), + [sym_atx_h6_marker] = ACTIONS(1036), + [sym__thematic_break] = ACTIONS(1036), + [sym__list_marker_minus] = ACTIONS(1036), + [sym__list_marker_plus] = ACTIONS(1036), + [sym__list_marker_star] = ACTIONS(1036), + [sym__list_marker_parenthesis] = ACTIONS(1036), + [sym__list_marker_dot] = ACTIONS(1036), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1036), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1036), + [sym__fenced_code_block_start_backtick] = ACTIONS(1036), + [sym__fenced_code_block_start_tilde] = ACTIONS(1036), + [sym__blank_line_start] = ACTIONS(1036), + [sym__code_span_start] = ACTIONS(1036), + [sym__emphasis_open_star] = ACTIONS(1036), + [sym__emphasis_open_underscore] = ACTIONS(1036), + [sym__last_token_whitespace] = ACTIONS(1086), }, - [265] = { - [aux_sym__ignore_matching_tokens] = STATE(200), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_BSLASH] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym__] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [aux_sym__html_block_1_token1] = ACTIONS(1245), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1247), - [anon_sym_LT_QMARK] = ACTIONS(1247), - [aux_sym__html_block_4_token1] = ACTIONS(1247), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1245), - [aux_sym__html_block_6_token1] = ACTIONS(1247), - [aux_sym__html_block_6_token2] = ACTIONS(1245), - [sym__open_tag_html_block] = ACTIONS(1245), - [sym__open_tag_html_block_newline] = ACTIONS(1245), - [sym__closing_tag_html_block] = ACTIONS(1245), - [sym__closing_tag_html_block_newline] = ACTIONS(1245), - [sym_backslash_escape] = ACTIONS(1245), - [sym_entity_reference] = ACTIONS(1245), - [sym_numeric_character_reference] = ACTIONS(1245), - [sym_uri_autolink] = ACTIONS(1245), - [sym_email_autolink] = ACTIONS(1245), - [sym__whitespace_ge_2] = ACTIONS(1245), - [aux_sym__whitespace_token1] = ACTIONS(1247), - [sym__word_no_digit] = ACTIONS(1245), - [sym__digits] = ACTIONS(1245), - [aux_sym__newline_token1] = ACTIONS(1245), - [sym__block_close] = ACTIONS(1245), - [sym__block_continuation] = ACTIONS(1249), - [sym__block_quote_continuation] = ACTIONS(1249), - [sym__block_quote_start] = ACTIONS(1245), - [sym__indented_chunk_start] = ACTIONS(1245), - [sym_atx_h1_marker] = ACTIONS(1245), - [sym_atx_h2_marker] = ACTIONS(1245), - [sym_atx_h3_marker] = ACTIONS(1245), - [sym_atx_h4_marker] = ACTIONS(1245), - [sym_atx_h5_marker] = ACTIONS(1245), - [sym_atx_h6_marker] = ACTIONS(1245), - [sym__thematic_break] = ACTIONS(1245), - [sym__list_marker_minus] = ACTIONS(1245), - [sym__list_marker_plus] = ACTIONS(1245), - [sym__list_marker_star] = ACTIONS(1245), - [sym__list_marker_parenthesis] = ACTIONS(1245), - [sym__list_marker_dot] = ACTIONS(1245), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1245), - [sym__fenced_code_block_start_backtick] = ACTIONS(1245), - [sym__fenced_code_block_start_tilde] = ACTIONS(1245), - [sym__blank_line_start] = ACTIONS(1245), - [sym__code_span_start] = ACTIONS(1245), - [sym__emphasis_open_star] = ACTIONS(1245), - [sym__emphasis_open_underscore] = ACTIONS(1245), - [sym__last_token_whitespace] = ACTIONS(1249), + [196] = { + [aux_sym__ignore_matching_tokens] = STATE(255), + [ts_builtin_sym_end] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [aux_sym__html_block_1_token1] = ACTIONS(1080), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1082), + [anon_sym_LT_QMARK] = ACTIONS(1082), + [aux_sym__html_block_4_token1] = ACTIONS(1082), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1080), + [aux_sym__html_block_6_token1] = ACTIONS(1082), + [aux_sym__html_block_6_token2] = ACTIONS(1080), + [sym__open_tag_html_block] = ACTIONS(1080), + [sym__open_tag_html_block_newline] = ACTIONS(1080), + [sym__closing_tag_html_block] = ACTIONS(1080), + [sym__closing_tag_html_block_newline] = ACTIONS(1080), + [sym_backslash_escape] = ACTIONS(1080), + [sym_entity_reference] = ACTIONS(1080), + [sym_numeric_character_reference] = ACTIONS(1080), + [sym_uri_autolink] = ACTIONS(1080), + [sym_email_autolink] = ACTIONS(1080), + [sym__whitespace_ge_2] = ACTIONS(1080), + [aux_sym__whitespace_token1] = ACTIONS(1082), + [sym__word_no_digit] = ACTIONS(1080), + [sym__digits] = ACTIONS(1080), + [aux_sym__newline_token1] = ACTIONS(1080), + [sym__block_continuation] = ACTIONS(1088), + [sym__block_quote_continuation] = ACTIONS(1088), + [sym__block_quote_start] = ACTIONS(1080), + [sym__indented_chunk_start] = ACTIONS(1080), + [sym_atx_h1_marker] = ACTIONS(1080), + [sym_atx_h2_marker] = ACTIONS(1080), + [sym_atx_h3_marker] = ACTIONS(1080), + [sym_atx_h4_marker] = ACTIONS(1080), + [sym_atx_h5_marker] = ACTIONS(1080), + [sym_atx_h6_marker] = ACTIONS(1080), + [sym__thematic_break] = ACTIONS(1080), + [sym__list_marker_minus] = ACTIONS(1080), + [sym__list_marker_plus] = ACTIONS(1080), + [sym__list_marker_star] = ACTIONS(1080), + [sym__list_marker_parenthesis] = ACTIONS(1080), + [sym__list_marker_dot] = ACTIONS(1080), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1080), + [sym__fenced_code_block_start_backtick] = ACTIONS(1080), + [sym__fenced_code_block_start_tilde] = ACTIONS(1080), + [sym__blank_line_start] = ACTIONS(1080), + [sym__code_span_start] = ACTIONS(1080), + [sym__emphasis_open_star] = ACTIONS(1080), + [sym__emphasis_open_underscore] = ACTIONS(1080), + [sym__last_token_whitespace] = ACTIONS(1088), }, - [266] = { - [aux_sym__ignore_matching_tokens] = STATE(276), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(831), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_BSLASH] = ACTIONS(831), - [anon_sym_RBRACK] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym__] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [aux_sym__html_block_1_token1] = ACTIONS(829), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(831), - [anon_sym_LT_QMARK] = ACTIONS(831), - [aux_sym__html_block_4_token1] = ACTIONS(831), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(829), - [aux_sym__html_block_6_token1] = ACTIONS(831), - [aux_sym__html_block_6_token2] = ACTIONS(829), - [sym__open_tag_html_block] = ACTIONS(829), - [sym__open_tag_html_block_newline] = ACTIONS(829), - [sym__closing_tag_html_block] = ACTIONS(829), - [sym__closing_tag_html_block_newline] = ACTIONS(829), - [sym_backslash_escape] = ACTIONS(829), - [sym_entity_reference] = ACTIONS(829), - [sym_numeric_character_reference] = ACTIONS(829), - [sym_uri_autolink] = ACTIONS(829), - [sym_email_autolink] = ACTIONS(829), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(829), - [sym__digits] = ACTIONS(829), - [aux_sym__newline_token1] = ACTIONS(829), - [sym__block_close] = ACTIONS(829), - [sym__block_continuation] = ACTIONS(1251), - [sym__block_quote_continuation] = ACTIONS(1251), - [sym__block_quote_start] = ACTIONS(829), - [sym__indented_chunk_start] = ACTIONS(829), - [sym_atx_h1_marker] = ACTIONS(829), - [sym_atx_h2_marker] = ACTIONS(829), - [sym_atx_h3_marker] = ACTIONS(829), - [sym_atx_h4_marker] = ACTIONS(829), - [sym_atx_h5_marker] = ACTIONS(829), - [sym_atx_h6_marker] = ACTIONS(829), - [sym__thematic_break] = ACTIONS(829), - [sym__list_marker_minus] = ACTIONS(829), - [sym__list_marker_plus] = ACTIONS(829), - [sym__list_marker_star] = ACTIONS(829), - [sym__list_marker_parenthesis] = ACTIONS(829), - [sym__list_marker_dot] = ACTIONS(829), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(829), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(829), - [sym__list_marker_star_dont_interrupt] = ACTIONS(829), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(829), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(829), - [sym__fenced_code_block_start_backtick] = ACTIONS(829), - [sym__fenced_code_block_start_tilde] = ACTIONS(829), - [sym__blank_line_start] = ACTIONS(829), - [sym__code_span_start] = ACTIONS(829), - [sym__emphasis_open_star] = ACTIONS(829), - [sym__emphasis_open_underscore] = ACTIONS(829), - [sym__last_token_whitespace] = ACTIONS(1251), + [197] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym__] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [aux_sym__html_block_1_token1] = ACTIONS(402), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(404), + [anon_sym_LT_QMARK] = ACTIONS(404), + [aux_sym__html_block_4_token1] = ACTIONS(404), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(402), + [aux_sym__html_block_6_token1] = ACTIONS(404), + [aux_sym__html_block_6_token2] = ACTIONS(402), + [sym__open_tag_html_block] = ACTIONS(402), + [sym__open_tag_html_block_newline] = ACTIONS(402), + [sym__closing_tag_html_block] = ACTIONS(402), + [sym__closing_tag_html_block_newline] = ACTIONS(402), + [sym_backslash_escape] = ACTIONS(402), + [sym_entity_reference] = ACTIONS(402), + [sym_numeric_character_reference] = ACTIONS(402), + [sym_uri_autolink] = ACTIONS(402), + [sym_email_autolink] = ACTIONS(402), + [sym__whitespace_ge_2] = ACTIONS(402), + [aux_sym__whitespace_token1] = ACTIONS(404), + [sym__word_no_digit] = ACTIONS(402), + [sym__digits] = ACTIONS(402), + [aux_sym__newline_token1] = ACTIONS(402), + [sym__block_close] = ACTIONS(402), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(402), + [sym__indented_chunk_start] = ACTIONS(402), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(402), + [sym_atx_h4_marker] = ACTIONS(402), + [sym_atx_h5_marker] = ACTIONS(402), + [sym_atx_h6_marker] = ACTIONS(402), + [sym__thematic_break] = ACTIONS(402), + [sym__list_marker_minus] = ACTIONS(402), + [sym__list_marker_plus] = ACTIONS(402), + [sym__list_marker_star] = ACTIONS(402), + [sym__list_marker_parenthesis] = ACTIONS(402), + [sym__list_marker_dot] = ACTIONS(402), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(402), + [sym__list_marker_star_dont_interrupt] = ACTIONS(402), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(402), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(402), + [sym__fenced_code_block_start_backtick] = ACTIONS(402), + [sym__fenced_code_block_start_tilde] = ACTIONS(402), + [sym__blank_line_start] = ACTIONS(402), + [sym__code_span_start] = ACTIONS(402), + [sym__emphasis_open_star] = ACTIONS(402), + [sym__emphasis_open_underscore] = ACTIONS(402), + [sym__last_token_whitespace] = ACTIONS(111), }, - [267] = { - [aux_sym__ignore_matching_tokens] = STATE(206), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1103), - [anon_sym_POUND] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_PERCENT] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_COMMA] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1103), - [anon_sym_COLON] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_EQ] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_QMARK] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_BSLASH] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym__] = ACTIONS(1103), - [anon_sym_BQUOTE] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [aux_sym__html_block_1_token1] = ACTIONS(1103), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1105), - [anon_sym_LT_QMARK] = ACTIONS(1105), - [aux_sym__html_block_4_token1] = ACTIONS(1105), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1103), - [aux_sym__html_block_6_token1] = ACTIONS(1105), - [aux_sym__html_block_6_token2] = ACTIONS(1103), - [sym__open_tag_html_block] = ACTIONS(1103), - [sym__open_tag_html_block_newline] = ACTIONS(1103), - [sym__closing_tag_html_block] = ACTIONS(1103), - [sym__closing_tag_html_block_newline] = ACTIONS(1103), - [sym_backslash_escape] = ACTIONS(1103), - [sym_entity_reference] = ACTIONS(1103), - [sym_numeric_character_reference] = ACTIONS(1103), - [sym_uri_autolink] = ACTIONS(1103), - [sym_email_autolink] = ACTIONS(1103), - [sym__whitespace_ge_2] = ACTIONS(1103), - [aux_sym__whitespace_token1] = ACTIONS(1105), - [sym__word_no_digit] = ACTIONS(1103), - [sym__digits] = ACTIONS(1103), - [aux_sym__newline_token1] = ACTIONS(1103), - [sym__block_close] = ACTIONS(1103), - [sym__block_continuation] = ACTIONS(1253), - [sym__block_quote_continuation] = ACTIONS(1253), - [sym__block_quote_start] = ACTIONS(1103), - [sym__indented_chunk_start] = ACTIONS(1103), - [sym_atx_h1_marker] = ACTIONS(1103), - [sym_atx_h2_marker] = ACTIONS(1103), - [sym_atx_h3_marker] = ACTIONS(1103), - [sym_atx_h4_marker] = ACTIONS(1103), - [sym_atx_h5_marker] = ACTIONS(1103), - [sym_atx_h6_marker] = ACTIONS(1103), - [sym__thematic_break] = ACTIONS(1103), - [sym__list_marker_minus] = ACTIONS(1103), - [sym__list_marker_plus] = ACTIONS(1103), - [sym__list_marker_star] = ACTIONS(1103), - [sym__list_marker_parenthesis] = ACTIONS(1103), - [sym__list_marker_dot] = ACTIONS(1103), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1103), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1103), - [sym__fenced_code_block_start_backtick] = ACTIONS(1103), - [sym__fenced_code_block_start_tilde] = ACTIONS(1103), - [sym__blank_line_start] = ACTIONS(1103), - [sym__code_span_start] = ACTIONS(1103), - [sym__emphasis_open_star] = ACTIONS(1103), - [sym__emphasis_open_underscore] = ACTIONS(1103), - [sym__last_token_whitespace] = ACTIONS(1253), + [198] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym__] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [aux_sym__html_block_1_token1] = ACTIONS(1090), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1092), + [anon_sym_LT_QMARK] = ACTIONS(1092), + [aux_sym__html_block_4_token1] = ACTIONS(1092), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1090), + [aux_sym__html_block_6_token1] = ACTIONS(1092), + [aux_sym__html_block_6_token2] = ACTIONS(1090), + [sym__open_tag_html_block] = ACTIONS(1090), + [sym__open_tag_html_block_newline] = ACTIONS(1090), + [sym__closing_tag_html_block] = ACTIONS(1090), + [sym__closing_tag_html_block_newline] = ACTIONS(1090), + [sym_backslash_escape] = ACTIONS(1090), + [sym_entity_reference] = ACTIONS(1090), + [sym_numeric_character_reference] = ACTIONS(1090), + [sym_uri_autolink] = ACTIONS(1090), + [sym_email_autolink] = ACTIONS(1090), + [sym__whitespace_ge_2] = ACTIONS(1090), + [aux_sym__whitespace_token1] = ACTIONS(1092), + [sym__word_no_digit] = ACTIONS(1090), + [sym__digits] = ACTIONS(1090), + [aux_sym__newline_token1] = ACTIONS(1090), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1090), + [sym__indented_chunk_start] = ACTIONS(1090), + [sym_atx_h1_marker] = ACTIONS(1090), + [sym_atx_h2_marker] = ACTIONS(1090), + [sym_atx_h3_marker] = ACTIONS(1090), + [sym_atx_h4_marker] = ACTIONS(1090), + [sym_atx_h5_marker] = ACTIONS(1090), + [sym_atx_h6_marker] = ACTIONS(1090), + [sym__thematic_break] = ACTIONS(1090), + [sym__list_marker_minus] = ACTIONS(1090), + [sym__list_marker_plus] = ACTIONS(1090), + [sym__list_marker_star] = ACTIONS(1090), + [sym__list_marker_parenthesis] = ACTIONS(1090), + [sym__list_marker_dot] = ACTIONS(1090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1090), + [sym__fenced_code_block_start_backtick] = ACTIONS(1090), + [sym__fenced_code_block_start_tilde] = ACTIONS(1090), + [sym__blank_line_start] = ACTIONS(1090), + [sym__code_span_start] = ACTIONS(1090), + [sym__emphasis_open_star] = ACTIONS(1090), + [sym__emphasis_open_underscore] = ACTIONS(1090), + [sym__last_token_whitespace] = ACTIONS(93), }, - [268] = { - [aux_sym__ignore_matching_tokens] = STATE(220), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1184), - [anon_sym_DOLLAR] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_COMMA] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_COLON] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_BSLASH] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym__] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [aux_sym__html_block_1_token1] = ACTIONS(1184), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1186), - [anon_sym_LT_QMARK] = ACTIONS(1186), - [aux_sym__html_block_4_token1] = ACTIONS(1186), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1184), - [aux_sym__html_block_6_token1] = ACTIONS(1186), - [aux_sym__html_block_6_token2] = ACTIONS(1184), - [sym__open_tag_html_block] = ACTIONS(1184), - [sym__open_tag_html_block_newline] = ACTIONS(1184), - [sym__closing_tag_html_block] = ACTIONS(1184), - [sym__closing_tag_html_block_newline] = ACTIONS(1184), - [sym_backslash_escape] = ACTIONS(1184), - [sym_entity_reference] = ACTIONS(1184), - [sym_numeric_character_reference] = ACTIONS(1184), - [sym_uri_autolink] = ACTIONS(1184), - [sym_email_autolink] = ACTIONS(1184), - [sym__whitespace_ge_2] = ACTIONS(1184), - [aux_sym__whitespace_token1] = ACTIONS(1186), - [sym__word_no_digit] = ACTIONS(1184), - [sym__digits] = ACTIONS(1184), - [aux_sym__newline_token1] = ACTIONS(1184), - [sym__block_close] = ACTIONS(1184), - [sym__block_continuation] = ACTIONS(1255), - [sym__block_quote_continuation] = ACTIONS(1255), - [sym__block_quote_start] = ACTIONS(1184), - [sym__indented_chunk_start] = ACTIONS(1184), - [sym_atx_h1_marker] = ACTIONS(1184), - [sym_atx_h2_marker] = ACTIONS(1184), - [sym_atx_h3_marker] = ACTIONS(1184), - [sym_atx_h4_marker] = ACTIONS(1184), - [sym_atx_h5_marker] = ACTIONS(1184), - [sym_atx_h6_marker] = ACTIONS(1184), - [sym__thematic_break] = ACTIONS(1184), - [sym__list_marker_minus] = ACTIONS(1184), - [sym__list_marker_plus] = ACTIONS(1184), - [sym__list_marker_star] = ACTIONS(1184), - [sym__list_marker_parenthesis] = ACTIONS(1184), - [sym__list_marker_dot] = ACTIONS(1184), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1184), - [sym__fenced_code_block_start_backtick] = ACTIONS(1184), - [sym__fenced_code_block_start_tilde] = ACTIONS(1184), - [sym__blank_line_start] = ACTIONS(1184), - [sym__code_span_start] = ACTIONS(1184), - [sym__emphasis_open_star] = ACTIONS(1184), - [sym__emphasis_open_underscore] = ACTIONS(1184), - [sym__last_token_whitespace] = ACTIONS(1255), + [199] = { + [aux_sym__ignore_matching_tokens] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_BSLASH] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym__] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(878), + [aux_sym__html_block_1_token1] = ACTIONS(878), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(880), + [anon_sym_LT_QMARK] = ACTIONS(880), + [aux_sym__html_block_4_token1] = ACTIONS(880), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(878), + [aux_sym__html_block_6_token1] = ACTIONS(880), + [aux_sym__html_block_6_token2] = ACTIONS(878), + [sym__open_tag_html_block] = ACTIONS(878), + [sym__open_tag_html_block_newline] = ACTIONS(878), + [sym__closing_tag_html_block] = ACTIONS(878), + [sym__closing_tag_html_block_newline] = ACTIONS(878), + [sym_backslash_escape] = ACTIONS(878), + [sym_entity_reference] = ACTIONS(878), + [sym_numeric_character_reference] = ACTIONS(878), + [sym_uri_autolink] = ACTIONS(878), + [sym_email_autolink] = ACTIONS(878), + [sym__whitespace_ge_2] = ACTIONS(878), + [aux_sym__whitespace_token1] = ACTIONS(880), + [sym__word_no_digit] = ACTIONS(878), + [sym__digits] = ACTIONS(878), + [aux_sym__newline_token1] = ACTIONS(878), + [sym__block_continuation] = ACTIONS(1094), + [sym__block_quote_continuation] = ACTIONS(1094), + [sym__block_quote_start] = ACTIONS(878), + [sym__indented_chunk_start] = ACTIONS(878), + [sym_atx_h1_marker] = ACTIONS(878), + [sym_atx_h2_marker] = ACTIONS(878), + [sym_atx_h3_marker] = ACTIONS(878), + [sym_atx_h4_marker] = ACTIONS(878), + [sym_atx_h5_marker] = ACTIONS(878), + [sym_atx_h6_marker] = ACTIONS(878), + [sym__thematic_break] = ACTIONS(878), + [sym__list_marker_minus] = ACTIONS(878), + [sym__list_marker_plus] = ACTIONS(878), + [sym__list_marker_star] = ACTIONS(878), + [sym__list_marker_parenthesis] = ACTIONS(878), + [sym__list_marker_dot] = ACTIONS(878), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(878), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(878), + [sym__list_marker_star_dont_interrupt] = ACTIONS(878), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(878), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(878), + [sym__fenced_code_block_start_backtick] = ACTIONS(878), + [sym__fenced_code_block_start_tilde] = ACTIONS(878), + [sym__blank_line_start] = ACTIONS(878), + [sym__code_span_start] = ACTIONS(878), + [sym__emphasis_open_star] = ACTIONS(878), + [sym__emphasis_open_underscore] = ACTIONS(878), + [sym__last_token_whitespace] = ACTIONS(1094), }, - [269] = { - [aux_sym__ignore_matching_tokens] = STATE(222), - [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_continuation] = ACTIONS(1261), - [sym__block_quote_continuation] = ACTIONS(1261), - [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(1257), - [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(1257), - [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), - [sym__last_token_whitespace] = ACTIONS(1261), + [200] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = 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_PIPE] = 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(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), }, - [270] = { - [aux_sym__ignore_matching_tokens] = STATE(228), + [201] = { + [aux_sym__ignore_matching_tokens] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym__] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [aux_sym__html_block_1_token1] = ACTIONS(1090), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1092), + [anon_sym_LT_QMARK] = ACTIONS(1092), + [aux_sym__html_block_4_token1] = ACTIONS(1092), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1090), + [aux_sym__html_block_6_token1] = ACTIONS(1092), + [aux_sym__html_block_6_token2] = ACTIONS(1090), + [sym__open_tag_html_block] = ACTIONS(1090), + [sym__open_tag_html_block_newline] = ACTIONS(1090), + [sym__closing_tag_html_block] = ACTIONS(1090), + [sym__closing_tag_html_block_newline] = ACTIONS(1090), + [sym_backslash_escape] = ACTIONS(1090), + [sym_entity_reference] = ACTIONS(1090), + [sym_numeric_character_reference] = ACTIONS(1090), + [sym_uri_autolink] = ACTIONS(1090), + [sym_email_autolink] = ACTIONS(1090), + [sym__whitespace_ge_2] = ACTIONS(1090), + [aux_sym__whitespace_token1] = ACTIONS(1092), + [sym__word_no_digit] = ACTIONS(1090), + [sym__digits] = ACTIONS(1090), + [aux_sym__newline_token1] = ACTIONS(1090), + [sym__block_continuation] = ACTIONS(1096), + [sym__block_quote_continuation] = ACTIONS(1096), + [sym__block_quote_start] = ACTIONS(1090), + [sym__indented_chunk_start] = ACTIONS(1090), + [sym_atx_h1_marker] = ACTIONS(1090), + [sym_atx_h2_marker] = ACTIONS(1090), + [sym_atx_h3_marker] = ACTIONS(1090), + [sym_atx_h4_marker] = ACTIONS(1090), + [sym_atx_h5_marker] = ACTIONS(1090), + [sym_atx_h6_marker] = ACTIONS(1090), + [sym__thematic_break] = ACTIONS(1090), + [sym__list_marker_minus] = ACTIONS(1090), + [sym__list_marker_plus] = ACTIONS(1090), + [sym__list_marker_star] = ACTIONS(1090), + [sym__list_marker_parenthesis] = ACTIONS(1090), + [sym__list_marker_dot] = ACTIONS(1090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1090), + [sym__fenced_code_block_start_backtick] = ACTIONS(1090), + [sym__fenced_code_block_start_tilde] = ACTIONS(1090), + [sym__blank_line_start] = ACTIONS(1090), + [sym__code_span_start] = ACTIONS(1090), + [sym__emphasis_open_star] = ACTIONS(1090), + [sym__emphasis_open_underscore] = ACTIONS(1090), + [sym__last_token_whitespace] = ACTIONS(1096), + }, + [202] = { + [aux_sym__ignore_matching_tokens] = STATE(197), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = 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_PIPE] = 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(1098), + [sym__block_quote_continuation] = ACTIONS(1098), + [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(1098), + }, + [203] = { + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(778), + [sym_entity_reference] = ACTIONS(778), + [sym_numeric_character_reference] = ACTIONS(778), + [sym_uri_autolink] = ACTIONS(778), + [sym_email_autolink] = ACTIONS(778), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(778), + [sym__digits] = ACTIONS(778), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__emphasis_close_star] = ACTIONS(1100), + }, + [204] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = 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_PIPE] = 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(93), + [sym__block_quote_continuation] = ACTIONS(93), + [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(93), + }, + [205] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym__] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [aux_sym__html_block_1_token1] = ACTIONS(395), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(397), + [anon_sym_LT_QMARK] = ACTIONS(397), + [aux_sym__html_block_4_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(395), + [aux_sym__html_block_6_token1] = ACTIONS(397), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym__open_tag_html_block] = ACTIONS(395), + [sym__open_tag_html_block_newline] = ACTIONS(395), + [sym__closing_tag_html_block] = ACTIONS(395), + [sym__closing_tag_html_block_newline] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(395), + [sym_entity_reference] = ACTIONS(395), + [sym_numeric_character_reference] = ACTIONS(395), + [sym_uri_autolink] = ACTIONS(395), + [sym_email_autolink] = ACTIONS(395), + [sym__whitespace_ge_2] = ACTIONS(395), + [aux_sym__whitespace_token1] = ACTIONS(397), + [sym__word_no_digit] = ACTIONS(395), + [sym__digits] = ACTIONS(395), + [aux_sym__newline_token1] = ACTIONS(395), + [sym__block_continuation] = ACTIONS(1102), + [sym__block_quote_continuation] = ACTIONS(1102), + [sym__block_quote_start] = ACTIONS(395), + [sym__indented_chunk_start] = ACTIONS(395), + [sym_atx_h1_marker] = ACTIONS(395), + [sym_atx_h2_marker] = ACTIONS(395), + [sym_atx_h3_marker] = ACTIONS(395), + [sym_atx_h4_marker] = ACTIONS(395), + [sym_atx_h5_marker] = ACTIONS(395), + [sym_atx_h6_marker] = ACTIONS(395), + [sym__thematic_break] = ACTIONS(395), + [sym__list_marker_minus] = ACTIONS(395), + [sym__list_marker_plus] = ACTIONS(395), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(395), + [sym__list_marker_dot] = ACTIONS(395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(395), + [sym__fenced_code_block_start_backtick] = ACTIONS(395), + [sym__fenced_code_block_start_tilde] = ACTIONS(395), + [sym__blank_line_start] = ACTIONS(395), + [sym__code_span_start] = ACTIONS(395), + [sym__emphasis_open_star] = ACTIONS(395), + [sym__emphasis_open_underscore] = ACTIONS(395), + [sym__last_token_whitespace] = ACTIONS(1102), + }, + [206] = { + [sym__soft_line_break] = STATE(923), + [sym__paragraph_end_newline] = STATE(356), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(90), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [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(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(1105), + [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(151), + [ts_builtin_sym_end] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(872), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(872), + [anon_sym_COMMA] = ACTIONS(872), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_AT] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(874), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_CARET] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_BQUOTE] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_TILDE] = ACTIONS(872), + [aux_sym__html_block_1_token1] = ACTIONS(872), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(874), + [anon_sym_LT_QMARK] = ACTIONS(874), + [aux_sym__html_block_4_token1] = ACTIONS(874), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(872), + [aux_sym__html_block_6_token1] = ACTIONS(874), + [aux_sym__html_block_6_token2] = ACTIONS(872), + [sym__open_tag_html_block] = ACTIONS(872), + [sym__open_tag_html_block_newline] = ACTIONS(872), + [sym__closing_tag_html_block] = ACTIONS(872), + [sym__closing_tag_html_block_newline] = ACTIONS(872), + [sym_backslash_escape] = ACTIONS(872), + [sym_entity_reference] = ACTIONS(872), + [sym_numeric_character_reference] = ACTIONS(872), + [sym_uri_autolink] = ACTIONS(872), + [sym_email_autolink] = ACTIONS(872), + [sym__whitespace_ge_2] = ACTIONS(872), + [aux_sym__whitespace_token1] = ACTIONS(874), + [sym__word_no_digit] = ACTIONS(872), + [sym__digits] = ACTIONS(872), + [aux_sym__newline_token1] = ACTIONS(872), + [sym__block_continuation] = ACTIONS(1107), + [sym__block_quote_continuation] = ACTIONS(1107), + [sym__block_quote_start] = ACTIONS(872), + [sym__indented_chunk_start] = ACTIONS(872), + [sym_atx_h1_marker] = ACTIONS(872), + [sym_atx_h2_marker] = ACTIONS(872), + [sym_atx_h3_marker] = ACTIONS(872), + [sym_atx_h4_marker] = ACTIONS(872), + [sym_atx_h5_marker] = ACTIONS(872), + [sym_atx_h6_marker] = ACTIONS(872), + [sym__thematic_break] = ACTIONS(872), + [sym__list_marker_minus] = ACTIONS(872), + [sym__list_marker_plus] = ACTIONS(872), + [sym__list_marker_star] = ACTIONS(872), + [sym__list_marker_parenthesis] = ACTIONS(872), + [sym__list_marker_dot] = ACTIONS(872), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(872), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(872), + [sym__list_marker_star_dont_interrupt] = ACTIONS(872), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(872), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(872), + [sym__fenced_code_block_start_backtick] = ACTIONS(872), + [sym__fenced_code_block_start_tilde] = ACTIONS(872), + [sym__blank_line_start] = ACTIONS(872), + [sym__code_span_start] = ACTIONS(872), + [sym__emphasis_open_star] = ACTIONS(872), + [sym__emphasis_open_underscore] = ACTIONS(872), + [sym__last_token_whitespace] = ACTIONS(1107), + }, + [208] = { + [aux_sym__ignore_matching_tokens] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = 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_PIPE] = 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(1109), + [sym__block_quote_continuation] = ACTIONS(1109), + [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(1109), + }, + [209] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_SLASH] = ACTIONS(1052), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_GT] = ACTIONS(1052), + [anon_sym_QMARK] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_BSLASH] = ACTIONS(1054), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym__] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1052), + [aux_sym__html_block_1_token1] = ACTIONS(1052), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1054), + [anon_sym_LT_QMARK] = ACTIONS(1054), + [aux_sym__html_block_4_token1] = ACTIONS(1054), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1052), + [aux_sym__html_block_6_token1] = ACTIONS(1054), + [aux_sym__html_block_6_token2] = ACTIONS(1052), + [sym__open_tag_html_block] = ACTIONS(1052), + [sym__open_tag_html_block_newline] = ACTIONS(1052), + [sym__closing_tag_html_block] = ACTIONS(1052), + [sym__closing_tag_html_block_newline] = ACTIONS(1052), + [sym_backslash_escape] = ACTIONS(1052), + [sym_entity_reference] = ACTIONS(1052), + [sym_numeric_character_reference] = ACTIONS(1052), + [sym_uri_autolink] = ACTIONS(1052), + [sym_email_autolink] = ACTIONS(1052), + [sym__whitespace_ge_2] = ACTIONS(1052), + [aux_sym__whitespace_token1] = ACTIONS(1054), + [sym__word_no_digit] = ACTIONS(1052), + [sym__digits] = ACTIONS(1052), + [aux_sym__newline_token1] = ACTIONS(1052), + [sym__block_close] = ACTIONS(1052), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1052), + [sym__indented_chunk_start] = ACTIONS(1052), + [sym_atx_h1_marker] = ACTIONS(1052), + [sym_atx_h2_marker] = ACTIONS(1052), + [sym_atx_h3_marker] = ACTIONS(1052), + [sym_atx_h4_marker] = ACTIONS(1052), + [sym_atx_h5_marker] = ACTIONS(1052), + [sym_atx_h6_marker] = ACTIONS(1052), + [sym__thematic_break] = ACTIONS(1052), + [sym__list_marker_minus] = ACTIONS(1052), + [sym__list_marker_plus] = ACTIONS(1052), + [sym__list_marker_star] = ACTIONS(1052), + [sym__list_marker_parenthesis] = ACTIONS(1052), + [sym__list_marker_dot] = ACTIONS(1052), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1052), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1052), + [sym__fenced_code_block_start_backtick] = ACTIONS(1052), + [sym__fenced_code_block_start_tilde] = ACTIONS(1052), + [sym__blank_line_start] = ACTIONS(1052), + [sym__code_span_start] = ACTIONS(1052), + [sym__emphasis_open_star] = ACTIONS(1052), + [sym__emphasis_open_underscore] = ACTIONS(1052), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [210] = { + [aux_sym__ignore_matching_tokens] = STATE(266), + [ts_builtin_sym_end] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym__] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [aux_sym__html_block_1_token1] = ACTIONS(1076), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1078), + [anon_sym_LT_QMARK] = ACTIONS(1078), + [aux_sym__html_block_4_token1] = ACTIONS(1078), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1076), + [aux_sym__html_block_6_token1] = ACTIONS(1078), + [aux_sym__html_block_6_token2] = ACTIONS(1076), + [sym__open_tag_html_block] = ACTIONS(1076), + [sym__open_tag_html_block_newline] = ACTIONS(1076), + [sym__closing_tag_html_block] = ACTIONS(1076), + [sym__closing_tag_html_block_newline] = ACTIONS(1076), + [sym_backslash_escape] = ACTIONS(1076), + [sym_entity_reference] = ACTIONS(1076), + [sym_numeric_character_reference] = ACTIONS(1076), + [sym_uri_autolink] = ACTIONS(1076), + [sym_email_autolink] = ACTIONS(1076), + [sym__whitespace_ge_2] = ACTIONS(1076), + [aux_sym__whitespace_token1] = ACTIONS(1078), + [sym__word_no_digit] = ACTIONS(1076), + [sym__digits] = ACTIONS(1076), + [aux_sym__newline_token1] = ACTIONS(1076), + [sym__block_continuation] = ACTIONS(1111), + [sym__block_quote_continuation] = ACTIONS(1111), + [sym__block_quote_start] = ACTIONS(1076), + [sym__indented_chunk_start] = ACTIONS(1076), + [sym_atx_h1_marker] = ACTIONS(1076), + [sym_atx_h2_marker] = ACTIONS(1076), + [sym_atx_h3_marker] = ACTIONS(1076), + [sym_atx_h4_marker] = ACTIONS(1076), + [sym_atx_h5_marker] = ACTIONS(1076), + [sym_atx_h6_marker] = ACTIONS(1076), + [sym__thematic_break] = ACTIONS(1076), + [sym__list_marker_minus] = ACTIONS(1076), + [sym__list_marker_plus] = ACTIONS(1076), + [sym__list_marker_star] = ACTIONS(1076), + [sym__list_marker_parenthesis] = ACTIONS(1076), + [sym__list_marker_dot] = ACTIONS(1076), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1076), + [sym__fenced_code_block_start_backtick] = ACTIONS(1076), + [sym__fenced_code_block_start_tilde] = ACTIONS(1076), + [sym__blank_line_start] = ACTIONS(1076), + [sym__code_span_start] = ACTIONS(1076), + [sym__emphasis_open_star] = ACTIONS(1076), + [sym__emphasis_open_underscore] = ACTIONS(1076), + [sym__last_token_whitespace] = ACTIONS(1111), + }, + [211] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_BSLASH] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym__] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [aux_sym__html_block_1_token1] = ACTIONS(1048), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1050), + [anon_sym_LT_QMARK] = ACTIONS(1050), + [aux_sym__html_block_4_token1] = ACTIONS(1050), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1048), + [aux_sym__html_block_6_token1] = ACTIONS(1050), + [aux_sym__html_block_6_token2] = ACTIONS(1048), + [sym__open_tag_html_block] = ACTIONS(1048), + [sym__open_tag_html_block_newline] = ACTIONS(1048), + [sym__closing_tag_html_block] = ACTIONS(1048), + [sym__closing_tag_html_block_newline] = ACTIONS(1048), + [sym_backslash_escape] = ACTIONS(1048), + [sym_entity_reference] = ACTIONS(1048), + [sym_numeric_character_reference] = ACTIONS(1048), + [sym_uri_autolink] = ACTIONS(1048), + [sym_email_autolink] = ACTIONS(1048), + [sym__whitespace_ge_2] = ACTIONS(1048), + [aux_sym__whitespace_token1] = ACTIONS(1050), + [sym__word_no_digit] = ACTIONS(1048), + [sym__digits] = ACTIONS(1048), + [aux_sym__newline_token1] = ACTIONS(1048), + [sym__block_close] = ACTIONS(1048), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1048), + [sym__indented_chunk_start] = ACTIONS(1048), + [sym_atx_h1_marker] = ACTIONS(1048), + [sym_atx_h2_marker] = ACTIONS(1048), + [sym_atx_h3_marker] = ACTIONS(1048), + [sym_atx_h4_marker] = ACTIONS(1048), + [sym_atx_h5_marker] = ACTIONS(1048), + [sym_atx_h6_marker] = ACTIONS(1048), + [sym__thematic_break] = ACTIONS(1048), + [sym__list_marker_minus] = ACTIONS(1048), + [sym__list_marker_plus] = ACTIONS(1048), + [sym__list_marker_star] = ACTIONS(1048), + [sym__list_marker_parenthesis] = ACTIONS(1048), + [sym__list_marker_dot] = ACTIONS(1048), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1048), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1048), + [sym__fenced_code_block_start_backtick] = ACTIONS(1048), + [sym__fenced_code_block_start_tilde] = ACTIONS(1048), + [sym__blank_line_start] = ACTIONS(1048), + [sym__code_span_start] = ACTIONS(1048), + [sym__emphasis_open_star] = ACTIONS(1048), + [sym__emphasis_open_underscore] = ACTIONS(1048), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [212] = { + [aux_sym__ignore_matching_tokens] = STATE(209), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), [anon_sym_BANG] = ACTIONS(1113), [anon_sym_DQUOTE] = ACTIONS(1113), [anon_sym_POUND] = ACTIONS(1113), @@ -55962,9 +51046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1113), [anon_sym__] = ACTIONS(1113), [anon_sym_BQUOTE] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), [anon_sym_TILDE] = ACTIONS(1113), [aux_sym__html_block_1_token1] = ACTIONS(1113), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1115), @@ -55988,8 +51070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(1113), [aux_sym__newline_token1] = ACTIONS(1113), [sym__block_close] = ACTIONS(1113), - [sym__block_continuation] = ACTIONS(1263), - [sym__block_quote_continuation] = ACTIONS(1263), + [sym__block_continuation] = ACTIONS(1117), + [sym__block_quote_continuation] = ACTIONS(1117), [sym__block_quote_start] = ACTIONS(1113), [sym__indented_chunk_start] = ACTIONS(1113), [sym_atx_h1_marker] = ACTIONS(1113), @@ -56015,1784 +51097,6714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1113), [sym__emphasis_open_star] = ACTIONS(1113), [sym__emphasis_open_underscore] = ACTIONS(1113), - [sym__last_token_whitespace] = ACTIONS(1263), + [sym__last_token_whitespace] = ACTIONS(1117), }, - [271] = { + [213] = { + [aux_sym__ignore_matching_tokens] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(866), + [anon_sym_DOLLAR] = ACTIONS(866), + [anon_sym_PERCENT] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_COMMA] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_DOT] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_COLON] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_QMARK] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_BSLASH] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(866), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym__] = ACTIONS(866), + [anon_sym_BQUOTE] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(866), + [aux_sym__html_block_1_token1] = ACTIONS(866), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(868), + [anon_sym_LT_QMARK] = ACTIONS(868), + [aux_sym__html_block_4_token1] = ACTIONS(868), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(866), + [aux_sym__html_block_6_token1] = ACTIONS(868), + [aux_sym__html_block_6_token2] = ACTIONS(866), + [sym__open_tag_html_block] = ACTIONS(866), + [sym__open_tag_html_block_newline] = ACTIONS(866), + [sym__closing_tag_html_block] = ACTIONS(866), + [sym__closing_tag_html_block_newline] = ACTIONS(866), + [sym_backslash_escape] = ACTIONS(866), + [sym_entity_reference] = ACTIONS(866), + [sym_numeric_character_reference] = ACTIONS(866), + [sym_uri_autolink] = ACTIONS(866), + [sym_email_autolink] = ACTIONS(866), + [sym__whitespace_ge_2] = ACTIONS(866), + [aux_sym__whitespace_token1] = ACTIONS(868), + [sym__word_no_digit] = ACTIONS(866), + [sym__digits] = ACTIONS(866), + [aux_sym__newline_token1] = ACTIONS(866), + [sym__block_continuation] = ACTIONS(1119), + [sym__block_quote_continuation] = ACTIONS(1119), + [sym__block_quote_start] = ACTIONS(866), + [sym__indented_chunk_start] = ACTIONS(866), + [sym_atx_h1_marker] = ACTIONS(866), + [sym_atx_h2_marker] = ACTIONS(866), + [sym_atx_h3_marker] = ACTIONS(866), + [sym_atx_h4_marker] = ACTIONS(866), + [sym_atx_h5_marker] = ACTIONS(866), + [sym_atx_h6_marker] = ACTIONS(866), + [sym__thematic_break] = ACTIONS(866), + [sym__list_marker_minus] = ACTIONS(866), + [sym__list_marker_plus] = ACTIONS(866), + [sym__list_marker_star] = ACTIONS(866), + [sym__list_marker_parenthesis] = ACTIONS(866), + [sym__list_marker_dot] = ACTIONS(866), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(866), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(866), + [sym__list_marker_star_dont_interrupt] = ACTIONS(866), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(866), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(866), + [sym__fenced_code_block_start_backtick] = ACTIONS(866), + [sym__fenced_code_block_start_tilde] = ACTIONS(866), + [sym__blank_line_start] = ACTIONS(866), + [sym__code_span_start] = ACTIONS(866), + [sym__emphasis_open_star] = ACTIONS(866), + [sym__emphasis_open_underscore] = ACTIONS(866), + [sym__last_token_whitespace] = ACTIONS(1119), + }, + [214] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_LT] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1113), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym__] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [aux_sym__html_block_1_token1] = ACTIONS(1113), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1115), + [anon_sym_LT_QMARK] = ACTIONS(1115), + [aux_sym__html_block_4_token1] = ACTIONS(1115), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1113), + [aux_sym__html_block_6_token1] = ACTIONS(1115), + [aux_sym__html_block_6_token2] = ACTIONS(1113), + [sym__open_tag_html_block] = ACTIONS(1113), + [sym__open_tag_html_block_newline] = ACTIONS(1113), + [sym__closing_tag_html_block] = ACTIONS(1113), + [sym__closing_tag_html_block_newline] = ACTIONS(1113), + [sym_backslash_escape] = ACTIONS(1113), + [sym_entity_reference] = ACTIONS(1113), + [sym_numeric_character_reference] = ACTIONS(1113), + [sym_uri_autolink] = ACTIONS(1113), + [sym_email_autolink] = ACTIONS(1113), + [sym__whitespace_ge_2] = ACTIONS(1113), + [aux_sym__whitespace_token1] = ACTIONS(1115), + [sym__word_no_digit] = ACTIONS(1113), + [sym__digits] = ACTIONS(1113), + [aux_sym__newline_token1] = ACTIONS(1113), + [sym__block_close] = ACTIONS(1113), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1113), + [sym__indented_chunk_start] = ACTIONS(1113), + [sym_atx_h1_marker] = ACTIONS(1113), + [sym_atx_h2_marker] = ACTIONS(1113), + [sym_atx_h3_marker] = ACTIONS(1113), + [sym_atx_h4_marker] = ACTIONS(1113), + [sym_atx_h5_marker] = ACTIONS(1113), + [sym_atx_h6_marker] = ACTIONS(1113), + [sym__thematic_break] = ACTIONS(1113), + [sym__list_marker_minus] = ACTIONS(1113), + [sym__list_marker_plus] = ACTIONS(1113), + [sym__list_marker_star] = ACTIONS(1113), + [sym__list_marker_parenthesis] = ACTIONS(1113), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__fenced_code_block_start_backtick] = ACTIONS(1113), + [sym__fenced_code_block_start_tilde] = ACTIONS(1113), + [sym__blank_line_start] = ACTIONS(1113), + [sym__code_span_start] = ACTIONS(1113), + [sym__emphasis_open_star] = ACTIONS(1113), + [sym__emphasis_open_underscore] = ACTIONS(1113), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [215] = { + [sym__soft_line_break] = STATE(113), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(113), + [sym_full_reference_link] = STATE(113), + [sym_collapsed_reference_link] = STATE(113), + [sym_inline_link] = STATE(113), + [sym_image] = STATE(113), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(113), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(113), + [sym__whitespace] = STATE(113), + [sym__word] = STATE(113), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(113), + [aux_sym__inline_no_star] = STATE(113), + [sym__text_inline_no_star] = STATE(113), + [sym__emphasis_star] = STATE(795), + [sym__strong_emphasis_star] = STATE(113), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(113), + [sym__code_span] = STATE(113), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1121), + [anon_sym_POUND] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(1121), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_GT] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1121), + [anon_sym__] = ACTIONS(1121), + [anon_sym_BQUOTE] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1121), + [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(720), + [sym__code_span_start] = ACTIONS(1160), + [sym__emphasis_open_star] = ACTIONS(1163), + [sym__emphasis_open_underscore] = ACTIONS(1166), + [sym__last_token_punctuation] = ACTIONS(1169), + }, + [216] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(750), + [anon_sym__] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [aux_sym__html_block_1_token1] = ACTIONS(750), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), + [anon_sym_LT_QMARK] = ACTIONS(752), + [aux_sym__html_block_4_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(750), + [aux_sym__html_block_6_token1] = ACTIONS(752), + [aux_sym__html_block_6_token2] = ACTIONS(750), + [sym__open_tag_html_block] = ACTIONS(750), + [sym__open_tag_html_block_newline] = ACTIONS(750), + [sym__closing_tag_html_block] = ACTIONS(750), + [sym__closing_tag_html_block_newline] = ACTIONS(750), + [sym_backslash_escape] = ACTIONS(750), + [sym_entity_reference] = ACTIONS(750), + [sym_numeric_character_reference] = ACTIONS(750), + [sym_uri_autolink] = ACTIONS(750), + [sym_email_autolink] = ACTIONS(750), + [sym__whitespace_ge_2] = ACTIONS(750), + [aux_sym__whitespace_token1] = ACTIONS(752), + [sym__word_no_digit] = ACTIONS(750), + [sym__digits] = ACTIONS(750), + [aux_sym__newline_token1] = ACTIONS(750), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(750), + [sym__indented_chunk_start] = ACTIONS(750), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(750), + [sym_atx_h5_marker] = ACTIONS(750), + [sym_atx_h6_marker] = ACTIONS(750), + [sym__thematic_break] = ACTIONS(750), + [sym__list_marker_minus] = ACTIONS(750), + [sym__list_marker_plus] = ACTIONS(750), + [sym__list_marker_star] = ACTIONS(750), + [sym__list_marker_parenthesis] = ACTIONS(750), + [sym__list_marker_dot] = ACTIONS(750), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_star_dont_interrupt] = ACTIONS(750), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(750), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(750), + [sym__fenced_code_block_start_backtick] = ACTIONS(750), + [sym__fenced_code_block_start_tilde] = ACTIONS(750), + [sym__blank_line_start] = ACTIONS(750), + [sym__code_span_start] = ACTIONS(750), + [sym__emphasis_open_star] = ACTIONS(750), + [sym__emphasis_open_underscore] = ACTIONS(750), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [217] = { + [aux_sym__ignore_matching_tokens] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(750), + [anon_sym__] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [aux_sym__html_block_1_token1] = ACTIONS(750), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), + [anon_sym_LT_QMARK] = ACTIONS(752), + [aux_sym__html_block_4_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(750), + [aux_sym__html_block_6_token1] = ACTIONS(752), + [aux_sym__html_block_6_token2] = ACTIONS(750), + [sym__open_tag_html_block] = ACTIONS(750), + [sym__open_tag_html_block_newline] = ACTIONS(750), + [sym__closing_tag_html_block] = ACTIONS(750), + [sym__closing_tag_html_block_newline] = ACTIONS(750), + [sym_backslash_escape] = ACTIONS(750), + [sym_entity_reference] = ACTIONS(750), + [sym_numeric_character_reference] = ACTIONS(750), + [sym_uri_autolink] = ACTIONS(750), + [sym_email_autolink] = ACTIONS(750), + [sym__whitespace_ge_2] = ACTIONS(750), + [aux_sym__whitespace_token1] = ACTIONS(752), + [sym__word_no_digit] = ACTIONS(750), + [sym__digits] = ACTIONS(750), + [aux_sym__newline_token1] = ACTIONS(750), + [sym__block_continuation] = ACTIONS(1171), + [sym__block_quote_continuation] = ACTIONS(1171), + [sym__block_quote_start] = ACTIONS(750), + [sym__indented_chunk_start] = ACTIONS(750), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(750), + [sym_atx_h5_marker] = ACTIONS(750), + [sym_atx_h6_marker] = ACTIONS(750), + [sym__thematic_break] = ACTIONS(750), + [sym__list_marker_minus] = ACTIONS(750), + [sym__list_marker_plus] = ACTIONS(750), + [sym__list_marker_star] = ACTIONS(750), + [sym__list_marker_parenthesis] = ACTIONS(750), + [sym__list_marker_dot] = ACTIONS(750), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_star_dont_interrupt] = ACTIONS(750), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(750), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(750), + [sym__fenced_code_block_start_backtick] = ACTIONS(750), + [sym__fenced_code_block_start_tilde] = ACTIONS(750), + [sym__blank_line_start] = ACTIONS(750), + [sym__code_span_start] = ACTIONS(750), + [sym__emphasis_open_star] = ACTIONS(750), + [sym__emphasis_open_underscore] = ACTIONS(750), + [sym__last_token_whitespace] = ACTIONS(1171), + }, + [218] = { + [aux_sym__ignore_matching_tokens] = STATE(211), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_BSLASH] = ACTIONS(1175), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [aux_sym__html_block_1_token1] = ACTIONS(1173), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1175), + [anon_sym_LT_QMARK] = ACTIONS(1175), + [aux_sym__html_block_4_token1] = ACTIONS(1175), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1173), + [aux_sym__html_block_6_token1] = ACTIONS(1175), + [aux_sym__html_block_6_token2] = ACTIONS(1173), + [sym__open_tag_html_block] = ACTIONS(1173), + [sym__open_tag_html_block_newline] = ACTIONS(1173), + [sym__closing_tag_html_block] = ACTIONS(1173), + [sym__closing_tag_html_block_newline] = ACTIONS(1173), + [sym_backslash_escape] = ACTIONS(1173), + [sym_entity_reference] = ACTIONS(1173), + [sym_numeric_character_reference] = ACTIONS(1173), + [sym_uri_autolink] = ACTIONS(1173), + [sym_email_autolink] = ACTIONS(1173), + [sym__whitespace_ge_2] = ACTIONS(1173), + [aux_sym__whitespace_token1] = ACTIONS(1175), + [sym__word_no_digit] = ACTIONS(1173), + [sym__digits] = ACTIONS(1173), + [aux_sym__newline_token1] = ACTIONS(1173), + [sym__block_close] = ACTIONS(1173), + [sym__block_continuation] = ACTIONS(1177), + [sym__block_quote_continuation] = ACTIONS(1177), + [sym__block_quote_start] = ACTIONS(1173), + [sym__indented_chunk_start] = ACTIONS(1173), + [sym_atx_h1_marker] = ACTIONS(1173), + [sym_atx_h2_marker] = ACTIONS(1173), + [sym_atx_h3_marker] = ACTIONS(1173), + [sym_atx_h4_marker] = ACTIONS(1173), + [sym_atx_h5_marker] = ACTIONS(1173), + [sym_atx_h6_marker] = ACTIONS(1173), + [sym__thematic_break] = ACTIONS(1173), + [sym__list_marker_minus] = ACTIONS(1173), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1173), + [sym__list_marker_parenthesis] = ACTIONS(1173), + [sym__list_marker_dot] = ACTIONS(1173), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1173), + [sym__fenced_code_block_start_backtick] = ACTIONS(1173), + [sym__fenced_code_block_start_tilde] = ACTIONS(1173), + [sym__blank_line_start] = ACTIONS(1173), + [sym__code_span_start] = ACTIONS(1173), + [sym__emphasis_open_star] = ACTIONS(1173), + [sym__emphasis_open_underscore] = ACTIONS(1173), + [sym__last_token_whitespace] = ACTIONS(1177), + }, + [219] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(840), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(840), + [anon_sym_PERCENT] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(840), + [anon_sym_SLASH] = ACTIONS(840), + [anon_sym_COLON] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(840), + [anon_sym_AT] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_BSLASH] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(840), + [anon_sym__] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [aux_sym__html_block_1_token1] = ACTIONS(840), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(842), + [anon_sym_LT_QMARK] = ACTIONS(842), + [aux_sym__html_block_4_token1] = ACTIONS(842), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(840), + [aux_sym__html_block_6_token1] = ACTIONS(842), + [aux_sym__html_block_6_token2] = ACTIONS(840), + [sym__open_tag_html_block] = ACTIONS(840), + [sym__open_tag_html_block_newline] = ACTIONS(840), + [sym__closing_tag_html_block] = ACTIONS(840), + [sym__closing_tag_html_block_newline] = ACTIONS(840), + [sym_backslash_escape] = ACTIONS(840), + [sym_entity_reference] = ACTIONS(840), + [sym_numeric_character_reference] = ACTIONS(840), + [sym_uri_autolink] = ACTIONS(840), + [sym_email_autolink] = ACTIONS(840), + [sym__whitespace_ge_2] = ACTIONS(840), + [aux_sym__whitespace_token1] = ACTIONS(842), + [sym__word_no_digit] = ACTIONS(840), + [sym__digits] = ACTIONS(840), + [aux_sym__newline_token1] = ACTIONS(840), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(840), + [sym__indented_chunk_start] = ACTIONS(840), + [sym_atx_h1_marker] = ACTIONS(840), + [sym_atx_h2_marker] = ACTIONS(840), + [sym_atx_h3_marker] = ACTIONS(840), + [sym_atx_h4_marker] = ACTIONS(840), + [sym_atx_h5_marker] = ACTIONS(840), + [sym_atx_h6_marker] = ACTIONS(840), + [sym__thematic_break] = ACTIONS(840), + [sym__list_marker_minus] = ACTIONS(840), + [sym__list_marker_plus] = ACTIONS(840), + [sym__list_marker_star] = ACTIONS(840), + [sym__list_marker_parenthesis] = ACTIONS(840), + [sym__list_marker_dot] = ACTIONS(840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(840), + [sym__fenced_code_block_start_backtick] = ACTIONS(840), + [sym__fenced_code_block_start_tilde] = ACTIONS(840), + [sym__blank_line_start] = ACTIONS(840), + [sym__code_span_start] = ACTIONS(840), + [sym__emphasis_open_star] = ACTIONS(840), + [sym__emphasis_open_underscore] = ACTIONS(840), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [220] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_BSLASH] = ACTIONS(1175), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [aux_sym__html_block_1_token1] = ACTIONS(1173), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1175), + [anon_sym_LT_QMARK] = ACTIONS(1175), + [aux_sym__html_block_4_token1] = ACTIONS(1175), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1173), + [aux_sym__html_block_6_token1] = ACTIONS(1175), + [aux_sym__html_block_6_token2] = ACTIONS(1173), + [sym__open_tag_html_block] = ACTIONS(1173), + [sym__open_tag_html_block_newline] = ACTIONS(1173), + [sym__closing_tag_html_block] = ACTIONS(1173), + [sym__closing_tag_html_block_newline] = ACTIONS(1173), + [sym_backslash_escape] = ACTIONS(1173), + [sym_entity_reference] = ACTIONS(1173), + [sym_numeric_character_reference] = ACTIONS(1173), + [sym_uri_autolink] = ACTIONS(1173), + [sym_email_autolink] = ACTIONS(1173), + [sym__whitespace_ge_2] = ACTIONS(1173), + [aux_sym__whitespace_token1] = ACTIONS(1175), + [sym__word_no_digit] = ACTIONS(1173), + [sym__digits] = ACTIONS(1173), + [aux_sym__newline_token1] = ACTIONS(1173), + [sym__block_close] = ACTIONS(1173), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1173), + [sym__indented_chunk_start] = ACTIONS(1173), + [sym_atx_h1_marker] = ACTIONS(1173), + [sym_atx_h2_marker] = ACTIONS(1173), + [sym_atx_h3_marker] = ACTIONS(1173), + [sym_atx_h4_marker] = ACTIONS(1173), + [sym_atx_h5_marker] = ACTIONS(1173), + [sym_atx_h6_marker] = ACTIONS(1173), + [sym__thematic_break] = ACTIONS(1173), + [sym__list_marker_minus] = ACTIONS(1173), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1173), + [sym__list_marker_parenthesis] = ACTIONS(1173), + [sym__list_marker_dot] = ACTIONS(1173), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1173), + [sym__fenced_code_block_start_backtick] = ACTIONS(1173), + [sym__fenced_code_block_start_tilde] = ACTIONS(1173), + [sym__blank_line_start] = ACTIONS(1173), + [sym__code_span_start] = ACTIONS(1173), + [sym__emphasis_open_star] = ACTIONS(1173), + [sym__emphasis_open_underscore] = ACTIONS(1173), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [221] = { + [aux_sym__ignore_matching_tokens] = STATE(109), + [ts_builtin_sym_end] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(840), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(840), + [anon_sym_PERCENT] = ACTIONS(840), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(840), + [anon_sym_SLASH] = ACTIONS(840), + [anon_sym_COLON] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_GT] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(840), + [anon_sym_AT] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_BSLASH] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(840), + [anon_sym__] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [aux_sym__html_block_1_token1] = ACTIONS(840), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(842), + [anon_sym_LT_QMARK] = ACTIONS(842), + [aux_sym__html_block_4_token1] = ACTIONS(842), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(840), + [aux_sym__html_block_6_token1] = ACTIONS(842), + [aux_sym__html_block_6_token2] = ACTIONS(840), + [sym__open_tag_html_block] = ACTIONS(840), + [sym__open_tag_html_block_newline] = ACTIONS(840), + [sym__closing_tag_html_block] = ACTIONS(840), + [sym__closing_tag_html_block_newline] = ACTIONS(840), + [sym_backslash_escape] = ACTIONS(840), + [sym_entity_reference] = ACTIONS(840), + [sym_numeric_character_reference] = ACTIONS(840), + [sym_uri_autolink] = ACTIONS(840), + [sym_email_autolink] = ACTIONS(840), + [sym__whitespace_ge_2] = ACTIONS(840), + [aux_sym__whitespace_token1] = ACTIONS(842), + [sym__word_no_digit] = ACTIONS(840), + [sym__digits] = ACTIONS(840), + [aux_sym__newline_token1] = ACTIONS(840), + [sym__block_continuation] = ACTIONS(1179), + [sym__block_quote_continuation] = ACTIONS(1179), + [sym__block_quote_start] = ACTIONS(840), + [sym__indented_chunk_start] = ACTIONS(840), + [sym_atx_h1_marker] = ACTIONS(840), + [sym_atx_h2_marker] = ACTIONS(840), + [sym_atx_h3_marker] = ACTIONS(840), + [sym_atx_h4_marker] = ACTIONS(840), + [sym_atx_h5_marker] = ACTIONS(840), + [sym_atx_h6_marker] = ACTIONS(840), + [sym__thematic_break] = ACTIONS(840), + [sym__list_marker_minus] = ACTIONS(840), + [sym__list_marker_plus] = ACTIONS(840), + [sym__list_marker_star] = ACTIONS(840), + [sym__list_marker_parenthesis] = ACTIONS(840), + [sym__list_marker_dot] = ACTIONS(840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(840), + [sym__fenced_code_block_start_backtick] = ACTIONS(840), + [sym__fenced_code_block_start_tilde] = ACTIONS(840), + [sym__blank_line_start] = ACTIONS(840), + [sym__code_span_start] = ACTIONS(840), + [sym__emphasis_open_star] = ACTIONS(840), + [sym__emphasis_open_underscore] = ACTIONS(840), + [sym__last_token_whitespace] = ACTIONS(1179), + }, + [222] = { + [aux_sym__ignore_matching_tokens] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = 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_PIPE] = 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_continuation] = ACTIONS(1181), + [sym__block_quote_continuation] = ACTIONS(1181), + [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(1181), + }, + [223] = { + [aux_sym__ignore_matching_tokens] = STATE(214), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym__] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [aux_sym__html_block_1_token1] = ACTIONS(1076), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1078), + [anon_sym_LT_QMARK] = ACTIONS(1078), + [aux_sym__html_block_4_token1] = ACTIONS(1078), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1076), + [aux_sym__html_block_6_token1] = ACTIONS(1078), + [aux_sym__html_block_6_token2] = ACTIONS(1076), + [sym__open_tag_html_block] = ACTIONS(1076), + [sym__open_tag_html_block_newline] = ACTIONS(1076), + [sym__closing_tag_html_block] = ACTIONS(1076), + [sym__closing_tag_html_block_newline] = ACTIONS(1076), + [sym_backslash_escape] = ACTIONS(1076), + [sym_entity_reference] = ACTIONS(1076), + [sym_numeric_character_reference] = ACTIONS(1076), + [sym_uri_autolink] = ACTIONS(1076), + [sym_email_autolink] = ACTIONS(1076), + [sym__whitespace_ge_2] = ACTIONS(1076), + [aux_sym__whitespace_token1] = ACTIONS(1078), + [sym__word_no_digit] = ACTIONS(1076), + [sym__digits] = ACTIONS(1076), + [aux_sym__newline_token1] = ACTIONS(1076), + [sym__block_close] = ACTIONS(1076), + [sym__block_continuation] = ACTIONS(1183), + [sym__block_quote_continuation] = ACTIONS(1183), + [sym__block_quote_start] = ACTIONS(1076), + [sym__indented_chunk_start] = ACTIONS(1076), + [sym_atx_h1_marker] = ACTIONS(1076), + [sym_atx_h2_marker] = ACTIONS(1076), + [sym_atx_h3_marker] = ACTIONS(1076), + [sym_atx_h4_marker] = ACTIONS(1076), + [sym_atx_h5_marker] = ACTIONS(1076), + [sym_atx_h6_marker] = ACTIONS(1076), + [sym__thematic_break] = ACTIONS(1076), + [sym__list_marker_minus] = ACTIONS(1076), + [sym__list_marker_plus] = ACTIONS(1076), + [sym__list_marker_star] = ACTIONS(1076), + [sym__list_marker_parenthesis] = ACTIONS(1076), + [sym__list_marker_dot] = ACTIONS(1076), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1076), + [sym__fenced_code_block_start_backtick] = ACTIONS(1076), + [sym__fenced_code_block_start_tilde] = ACTIONS(1076), + [sym__blank_line_start] = ACTIONS(1076), + [sym__code_span_start] = ACTIONS(1076), + [sym__emphasis_open_star] = ACTIONS(1076), + [sym__emphasis_open_underscore] = ACTIONS(1076), + [sym__last_token_whitespace] = ACTIONS(1183), + }, + [224] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym__] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [aux_sym__html_block_1_token1] = ACTIONS(1076), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1078), + [anon_sym_LT_QMARK] = ACTIONS(1078), + [aux_sym__html_block_4_token1] = ACTIONS(1078), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1076), + [aux_sym__html_block_6_token1] = ACTIONS(1078), + [aux_sym__html_block_6_token2] = ACTIONS(1076), + [sym__open_tag_html_block] = ACTIONS(1076), + [sym__open_tag_html_block_newline] = ACTIONS(1076), + [sym__closing_tag_html_block] = ACTIONS(1076), + [sym__closing_tag_html_block_newline] = ACTIONS(1076), + [sym_backslash_escape] = ACTIONS(1076), + [sym_entity_reference] = ACTIONS(1076), + [sym_numeric_character_reference] = ACTIONS(1076), + [sym_uri_autolink] = ACTIONS(1076), + [sym_email_autolink] = ACTIONS(1076), + [sym__whitespace_ge_2] = ACTIONS(1076), + [aux_sym__whitespace_token1] = ACTIONS(1078), + [sym__word_no_digit] = ACTIONS(1076), + [sym__digits] = ACTIONS(1076), + [aux_sym__newline_token1] = ACTIONS(1076), + [sym__block_close] = ACTIONS(1076), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1076), + [sym__indented_chunk_start] = ACTIONS(1076), + [sym_atx_h1_marker] = ACTIONS(1076), + [sym_atx_h2_marker] = ACTIONS(1076), + [sym_atx_h3_marker] = ACTIONS(1076), + [sym_atx_h4_marker] = ACTIONS(1076), + [sym_atx_h5_marker] = ACTIONS(1076), + [sym_atx_h6_marker] = ACTIONS(1076), + [sym__thematic_break] = ACTIONS(1076), + [sym__list_marker_minus] = ACTIONS(1076), + [sym__list_marker_plus] = ACTIONS(1076), + [sym__list_marker_star] = ACTIONS(1076), + [sym__list_marker_parenthesis] = ACTIONS(1076), + [sym__list_marker_dot] = ACTIONS(1076), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1076), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1076), + [sym__fenced_code_block_start_backtick] = ACTIONS(1076), + [sym__fenced_code_block_start_tilde] = ACTIONS(1076), + [sym__blank_line_start] = ACTIONS(1076), + [sym__code_span_start] = ACTIONS(1076), + [sym__emphasis_open_star] = ACTIONS(1076), + [sym__emphasis_open_underscore] = ACTIONS(1076), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [225] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym__] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(985), + [aux_sym__html_block_1_token1] = ACTIONS(985), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(987), + [anon_sym_LT_QMARK] = ACTIONS(987), + [aux_sym__html_block_4_token1] = ACTIONS(987), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(985), + [aux_sym__html_block_6_token1] = ACTIONS(987), + [aux_sym__html_block_6_token2] = ACTIONS(985), + [sym__open_tag_html_block] = ACTIONS(985), + [sym__open_tag_html_block_newline] = ACTIONS(985), + [sym__closing_tag_html_block] = ACTIONS(985), + [sym__closing_tag_html_block_newline] = ACTIONS(985), + [sym_backslash_escape] = ACTIONS(985), + [sym_entity_reference] = ACTIONS(985), + [sym_numeric_character_reference] = ACTIONS(985), + [sym_uri_autolink] = ACTIONS(985), + [sym_email_autolink] = ACTIONS(985), + [sym__whitespace_ge_2] = ACTIONS(985), + [aux_sym__whitespace_token1] = ACTIONS(987), + [sym__word_no_digit] = ACTIONS(985), + [sym__digits] = ACTIONS(985), + [aux_sym__newline_token1] = ACTIONS(985), + [sym__block_close] = ACTIONS(985), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(985), + [sym__indented_chunk_start] = ACTIONS(985), + [sym_atx_h1_marker] = ACTIONS(985), + [sym_atx_h2_marker] = ACTIONS(985), + [sym_atx_h3_marker] = ACTIONS(985), + [sym_atx_h4_marker] = ACTIONS(985), + [sym_atx_h5_marker] = ACTIONS(985), + [sym_atx_h6_marker] = ACTIONS(985), + [sym__thematic_break] = ACTIONS(985), + [sym__list_marker_minus] = ACTIONS(985), + [sym__list_marker_plus] = ACTIONS(985), + [sym__list_marker_star] = ACTIONS(985), + [sym__list_marker_parenthesis] = ACTIONS(985), + [sym__list_marker_dot] = ACTIONS(985), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_star_dont_interrupt] = ACTIONS(985), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(985), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(985), + [sym__fenced_code_block_start_backtick] = ACTIONS(985), + [sym__fenced_code_block_start_tilde] = ACTIONS(985), + [sym__blank_line_start] = ACTIONS(985), + [sym__code_span_start] = ACTIONS(985), + [sym__emphasis_open_star] = ACTIONS(985), + [sym__emphasis_open_underscore] = ACTIONS(985), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [226] = { + [aux_sym__ignore_matching_tokens] = STATE(220), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym__] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [aux_sym__html_block_1_token1] = ACTIONS(1062), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1064), + [anon_sym_LT_QMARK] = ACTIONS(1064), + [aux_sym__html_block_4_token1] = ACTIONS(1064), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1062), + [aux_sym__html_block_6_token1] = ACTIONS(1064), + [aux_sym__html_block_6_token2] = ACTIONS(1062), + [sym__open_tag_html_block] = ACTIONS(1062), + [sym__open_tag_html_block_newline] = ACTIONS(1062), + [sym__closing_tag_html_block] = ACTIONS(1062), + [sym__closing_tag_html_block_newline] = ACTIONS(1062), + [sym_backslash_escape] = ACTIONS(1062), + [sym_entity_reference] = ACTIONS(1062), + [sym_numeric_character_reference] = ACTIONS(1062), + [sym_uri_autolink] = ACTIONS(1062), + [sym_email_autolink] = ACTIONS(1062), + [sym__whitespace_ge_2] = ACTIONS(1062), + [aux_sym__whitespace_token1] = ACTIONS(1064), + [sym__word_no_digit] = ACTIONS(1062), + [sym__digits] = ACTIONS(1062), + [aux_sym__newline_token1] = ACTIONS(1062), + [sym__block_close] = ACTIONS(1062), + [sym__block_continuation] = ACTIONS(1185), + [sym__block_quote_continuation] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1062), + [sym__indented_chunk_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(1062), + [sym_atx_h2_marker] = ACTIONS(1062), + [sym_atx_h3_marker] = ACTIONS(1062), + [sym_atx_h4_marker] = ACTIONS(1062), + [sym_atx_h5_marker] = ACTIONS(1062), + [sym_atx_h6_marker] = ACTIONS(1062), + [sym__thematic_break] = ACTIONS(1062), + [sym__list_marker_minus] = ACTIONS(1062), + [sym__list_marker_plus] = ACTIONS(1062), + [sym__list_marker_star] = ACTIONS(1062), + [sym__list_marker_parenthesis] = ACTIONS(1062), + [sym__list_marker_dot] = ACTIONS(1062), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1062), + [sym__fenced_code_block_start_backtick] = ACTIONS(1062), + [sym__fenced_code_block_start_tilde] = ACTIONS(1062), + [sym__blank_line_start] = ACTIONS(1062), + [sym__code_span_start] = ACTIONS(1062), + [sym__emphasis_open_star] = ACTIONS(1062), + [sym__emphasis_open_underscore] = ACTIONS(1062), + [sym__last_token_whitespace] = ACTIONS(1185), + }, + [227] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym__] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [aux_sym__html_block_1_token1] = ACTIONS(1062), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1064), + [anon_sym_LT_QMARK] = ACTIONS(1064), + [aux_sym__html_block_4_token1] = ACTIONS(1064), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1062), + [aux_sym__html_block_6_token1] = ACTIONS(1064), + [aux_sym__html_block_6_token2] = ACTIONS(1062), + [sym__open_tag_html_block] = ACTIONS(1062), + [sym__open_tag_html_block_newline] = ACTIONS(1062), + [sym__closing_tag_html_block] = ACTIONS(1062), + [sym__closing_tag_html_block_newline] = ACTIONS(1062), + [sym_backslash_escape] = ACTIONS(1062), + [sym_entity_reference] = ACTIONS(1062), + [sym_numeric_character_reference] = ACTIONS(1062), + [sym_uri_autolink] = ACTIONS(1062), + [sym_email_autolink] = ACTIONS(1062), + [sym__whitespace_ge_2] = ACTIONS(1062), + [aux_sym__whitespace_token1] = ACTIONS(1064), + [sym__word_no_digit] = ACTIONS(1062), + [sym__digits] = ACTIONS(1062), + [aux_sym__newline_token1] = ACTIONS(1062), + [sym__block_close] = ACTIONS(1062), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1062), + [sym__indented_chunk_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(1062), + [sym_atx_h2_marker] = ACTIONS(1062), + [sym_atx_h3_marker] = ACTIONS(1062), + [sym_atx_h4_marker] = ACTIONS(1062), + [sym_atx_h5_marker] = ACTIONS(1062), + [sym_atx_h6_marker] = ACTIONS(1062), + [sym__thematic_break] = ACTIONS(1062), + [sym__list_marker_minus] = ACTIONS(1062), + [sym__list_marker_plus] = ACTIONS(1062), + [sym__list_marker_star] = ACTIONS(1062), + [sym__list_marker_parenthesis] = ACTIONS(1062), + [sym__list_marker_dot] = ACTIONS(1062), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1062), + [sym__fenced_code_block_start_backtick] = ACTIONS(1062), + [sym__fenced_code_block_start_tilde] = ACTIONS(1062), + [sym__blank_line_start] = ACTIONS(1062), + [sym__code_span_start] = ACTIONS(1062), + [sym__emphasis_open_star] = ACTIONS(1062), + [sym__emphasis_open_underscore] = ACTIONS(1062), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [228] = { + [aux_sym__ignore_matching_tokens] = STATE(263), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym__] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(985), + [aux_sym__html_block_1_token1] = ACTIONS(985), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(987), + [anon_sym_LT_QMARK] = ACTIONS(987), + [aux_sym__html_block_4_token1] = ACTIONS(987), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(985), + [aux_sym__html_block_6_token1] = ACTIONS(987), + [aux_sym__html_block_6_token2] = ACTIONS(985), + [sym__open_tag_html_block] = ACTIONS(985), + [sym__open_tag_html_block_newline] = ACTIONS(985), + [sym__closing_tag_html_block] = ACTIONS(985), + [sym__closing_tag_html_block_newline] = ACTIONS(985), + [sym_backslash_escape] = ACTIONS(985), + [sym_entity_reference] = ACTIONS(985), + [sym_numeric_character_reference] = ACTIONS(985), + [sym_uri_autolink] = ACTIONS(985), + [sym_email_autolink] = ACTIONS(985), + [sym__whitespace_ge_2] = ACTIONS(985), + [aux_sym__whitespace_token1] = ACTIONS(987), + [sym__word_no_digit] = ACTIONS(985), + [sym__digits] = ACTIONS(985), + [aux_sym__newline_token1] = ACTIONS(985), + [sym__block_close] = ACTIONS(985), + [sym__block_continuation] = ACTIONS(1187), + [sym__block_quote_continuation] = ACTIONS(1187), + [sym__block_quote_start] = ACTIONS(985), + [sym__indented_chunk_start] = ACTIONS(985), + [sym_atx_h1_marker] = ACTIONS(985), + [sym_atx_h2_marker] = ACTIONS(985), + [sym_atx_h3_marker] = ACTIONS(985), + [sym_atx_h4_marker] = ACTIONS(985), + [sym_atx_h5_marker] = ACTIONS(985), + [sym_atx_h6_marker] = ACTIONS(985), + [sym__thematic_break] = ACTIONS(985), + [sym__list_marker_minus] = ACTIONS(985), + [sym__list_marker_plus] = ACTIONS(985), + [sym__list_marker_star] = ACTIONS(985), + [sym__list_marker_parenthesis] = ACTIONS(985), + [sym__list_marker_dot] = ACTIONS(985), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(985), + [sym__list_marker_star_dont_interrupt] = ACTIONS(985), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(985), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(985), + [sym__fenced_code_block_start_backtick] = ACTIONS(985), + [sym__fenced_code_block_start_tilde] = ACTIONS(985), + [sym__blank_line_start] = ACTIONS(985), + [sym__code_span_start] = ACTIONS(985), + [sym__emphasis_open_star] = ACTIONS(985), + [sym__emphasis_open_underscore] = ACTIONS(985), + [sym__last_token_whitespace] = ACTIONS(1187), + }, + [229] = { + [aux_sym__ignore_matching_tokens] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = 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_PIPE] = 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(1189), + [sym__block_quote_continuation] = ACTIONS(1189), + [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(1189), + }, + [230] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_POUND] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_PERCENT] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_BSLASH] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym__] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [aux_sym__html_block_1_token1] = ACTIONS(740), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(742), + [anon_sym_LT_QMARK] = ACTIONS(742), + [aux_sym__html_block_4_token1] = ACTIONS(742), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(740), + [aux_sym__html_block_6_token1] = ACTIONS(742), + [aux_sym__html_block_6_token2] = ACTIONS(740), + [sym__open_tag_html_block] = ACTIONS(740), + [sym__open_tag_html_block_newline] = ACTIONS(740), + [sym__closing_tag_html_block] = ACTIONS(740), + [sym__closing_tag_html_block_newline] = ACTIONS(740), + [sym_backslash_escape] = ACTIONS(740), + [sym_entity_reference] = ACTIONS(740), + [sym_numeric_character_reference] = ACTIONS(740), + [sym_uri_autolink] = ACTIONS(740), + [sym_email_autolink] = ACTIONS(740), + [sym__whitespace_ge_2] = ACTIONS(740), + [aux_sym__whitespace_token1] = ACTIONS(742), + [sym__word_no_digit] = ACTIONS(740), + [sym__digits] = ACTIONS(740), + [aux_sym__newline_token1] = ACTIONS(740), + [sym__block_close] = ACTIONS(740), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(740), + [sym__indented_chunk_start] = ACTIONS(740), + [sym_atx_h1_marker] = ACTIONS(740), + [sym_atx_h2_marker] = ACTIONS(740), + [sym_atx_h3_marker] = ACTIONS(740), + [sym_atx_h4_marker] = ACTIONS(740), + [sym_atx_h5_marker] = ACTIONS(740), + [sym_atx_h6_marker] = ACTIONS(740), + [sym__thematic_break] = ACTIONS(740), + [sym__list_marker_minus] = ACTIONS(740), + [sym__list_marker_plus] = ACTIONS(740), + [sym__list_marker_star] = ACTIONS(740), + [sym__list_marker_parenthesis] = ACTIONS(740), + [sym__list_marker_dot] = ACTIONS(740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(740), + [sym__fenced_code_block_start_backtick] = ACTIONS(740), + [sym__fenced_code_block_start_tilde] = ACTIONS(740), + [sym__blank_line_start] = ACTIONS(740), + [sym__code_span_start] = ACTIONS(740), + [sym__emphasis_open_star] = ACTIONS(740), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [231] = { + [aux_sym__ignore_matching_tokens] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_POUND] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_PERCENT] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_BSLASH] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym__] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [aux_sym__html_block_1_token1] = ACTIONS(740), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(742), + [anon_sym_LT_QMARK] = ACTIONS(742), + [aux_sym__html_block_4_token1] = ACTIONS(742), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(740), + [aux_sym__html_block_6_token1] = ACTIONS(742), + [aux_sym__html_block_6_token2] = ACTIONS(740), + [sym__open_tag_html_block] = ACTIONS(740), + [sym__open_tag_html_block_newline] = ACTIONS(740), + [sym__closing_tag_html_block] = ACTIONS(740), + [sym__closing_tag_html_block_newline] = ACTIONS(740), + [sym_backslash_escape] = ACTIONS(740), + [sym_entity_reference] = ACTIONS(740), + [sym_numeric_character_reference] = ACTIONS(740), + [sym_uri_autolink] = ACTIONS(740), + [sym_email_autolink] = ACTIONS(740), + [sym__whitespace_ge_2] = ACTIONS(740), + [aux_sym__whitespace_token1] = ACTIONS(742), + [sym__word_no_digit] = ACTIONS(740), + [sym__digits] = ACTIONS(740), + [aux_sym__newline_token1] = ACTIONS(740), + [sym__block_close] = ACTIONS(740), + [sym__block_continuation] = ACTIONS(1191), + [sym__block_quote_continuation] = ACTIONS(1191), + [sym__block_quote_start] = ACTIONS(740), + [sym__indented_chunk_start] = ACTIONS(740), + [sym_atx_h1_marker] = ACTIONS(740), + [sym_atx_h2_marker] = ACTIONS(740), + [sym_atx_h3_marker] = ACTIONS(740), + [sym_atx_h4_marker] = ACTIONS(740), + [sym_atx_h5_marker] = ACTIONS(740), + [sym_atx_h6_marker] = ACTIONS(740), + [sym__thematic_break] = ACTIONS(740), + [sym__list_marker_minus] = ACTIONS(740), + [sym__list_marker_plus] = ACTIONS(740), + [sym__list_marker_star] = ACTIONS(740), + [sym__list_marker_parenthesis] = ACTIONS(740), + [sym__list_marker_dot] = ACTIONS(740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(740), + [sym__fenced_code_block_start_backtick] = ACTIONS(740), + [sym__fenced_code_block_start_tilde] = ACTIONS(740), + [sym__blank_line_start] = ACTIONS(740), + [sym__code_span_start] = ACTIONS(740), + [sym__emphasis_open_star] = ACTIONS(740), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym__last_token_whitespace] = ACTIONS(1191), + }, + [232] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_BSLASH] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym__] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [aux_sym__html_block_1_token1] = ACTIONS(991), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(993), + [anon_sym_LT_QMARK] = ACTIONS(993), + [aux_sym__html_block_4_token1] = ACTIONS(993), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(991), + [aux_sym__html_block_6_token1] = ACTIONS(993), + [aux_sym__html_block_6_token2] = ACTIONS(991), + [sym__open_tag_html_block] = ACTIONS(991), + [sym__open_tag_html_block_newline] = ACTIONS(991), + [sym__closing_tag_html_block] = ACTIONS(991), + [sym__closing_tag_html_block_newline] = ACTIONS(991), + [sym_backslash_escape] = ACTIONS(991), + [sym_entity_reference] = ACTIONS(991), + [sym_numeric_character_reference] = ACTIONS(991), + [sym_uri_autolink] = ACTIONS(991), + [sym_email_autolink] = ACTIONS(991), + [sym__whitespace_ge_2] = ACTIONS(991), + [aux_sym__whitespace_token1] = ACTIONS(993), + [sym__word_no_digit] = ACTIONS(991), + [sym__digits] = ACTIONS(991), + [aux_sym__newline_token1] = ACTIONS(991), + [sym__block_close] = ACTIONS(991), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(991), + [sym_atx_h2_marker] = ACTIONS(991), + [sym_atx_h3_marker] = ACTIONS(991), + [sym_atx_h4_marker] = ACTIONS(991), + [sym_atx_h5_marker] = ACTIONS(991), + [sym_atx_h6_marker] = ACTIONS(991), + [sym__thematic_break] = ACTIONS(991), + [sym__list_marker_minus] = ACTIONS(991), + [sym__list_marker_plus] = ACTIONS(991), + [sym__list_marker_star] = ACTIONS(991), + [sym__list_marker_parenthesis] = ACTIONS(991), + [sym__list_marker_dot] = ACTIONS(991), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_star_dont_interrupt] = ACTIONS(991), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(991), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(991), + [sym__fenced_code_block_start_backtick] = ACTIONS(991), + [sym__fenced_code_block_start_tilde] = ACTIONS(991), + [sym__blank_line_start] = ACTIONS(991), + [sym__code_span_start] = ACTIONS(991), + [sym__emphasis_open_star] = ACTIONS(991), + [sym__emphasis_open_underscore] = ACTIONS(991), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [233] = { + [aux_sym__ignore_matching_tokens] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_POUND] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_BSLASH] = ACTIONS(850), + [anon_sym_RBRACK] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym__] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [aux_sym__html_block_1_token1] = ACTIONS(848), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(850), + [anon_sym_LT_QMARK] = ACTIONS(850), + [aux_sym__html_block_4_token1] = ACTIONS(850), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(848), + [aux_sym__html_block_6_token1] = ACTIONS(850), + [aux_sym__html_block_6_token2] = ACTIONS(848), + [sym__open_tag_html_block] = ACTIONS(848), + [sym__open_tag_html_block_newline] = ACTIONS(848), + [sym__closing_tag_html_block] = ACTIONS(848), + [sym__closing_tag_html_block_newline] = ACTIONS(848), + [sym_backslash_escape] = ACTIONS(848), + [sym_entity_reference] = ACTIONS(848), + [sym_numeric_character_reference] = ACTIONS(848), + [sym_uri_autolink] = ACTIONS(848), + [sym_email_autolink] = ACTIONS(848), + [sym__whitespace_ge_2] = ACTIONS(848), + [aux_sym__whitespace_token1] = ACTIONS(850), + [sym__word_no_digit] = ACTIONS(848), + [sym__digits] = ACTIONS(848), + [aux_sym__newline_token1] = ACTIONS(848), + [sym__block_continuation] = ACTIONS(1193), + [sym__block_quote_continuation] = ACTIONS(1193), + [sym__block_quote_start] = ACTIONS(848), + [sym__indented_chunk_start] = ACTIONS(848), + [sym_atx_h1_marker] = ACTIONS(848), + [sym_atx_h2_marker] = ACTIONS(848), + [sym_atx_h3_marker] = ACTIONS(848), + [sym_atx_h4_marker] = ACTIONS(848), + [sym_atx_h5_marker] = ACTIONS(848), + [sym_atx_h6_marker] = ACTIONS(848), + [sym__thematic_break] = ACTIONS(848), + [sym__list_marker_minus] = ACTIONS(848), + [sym__list_marker_plus] = ACTIONS(848), + [sym__list_marker_star] = ACTIONS(848), + [sym__list_marker_parenthesis] = ACTIONS(848), + [sym__list_marker_dot] = ACTIONS(848), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(848), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(848), + [sym__list_marker_star_dont_interrupt] = ACTIONS(848), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(848), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(848), + [sym__fenced_code_block_start_backtick] = ACTIONS(848), + [sym__fenced_code_block_start_tilde] = ACTIONS(848), + [sym__blank_line_start] = ACTIONS(848), + [sym__code_span_start] = ACTIONS(848), + [sym__emphasis_open_star] = ACTIONS(848), + [sym__emphasis_open_underscore] = ACTIONS(848), + [sym__last_token_whitespace] = ACTIONS(1193), + }, + [234] = { + [aux_sym__paragraph_end_newline_repeat1] = STATE(234), + [ts_builtin_sym_end] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1197), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1197), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym__] = ACTIONS(1195), + [anon_sym_BQUOTE] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [aux_sym__html_block_1_token1] = ACTIONS(1195), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1197), + [anon_sym_LT_QMARK] = ACTIONS(1197), + [aux_sym__html_block_4_token1] = ACTIONS(1197), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1195), + [aux_sym__html_block_6_token1] = ACTIONS(1197), + [aux_sym__html_block_6_token2] = ACTIONS(1195), + [sym__open_tag_html_block] = ACTIONS(1195), + [sym__open_tag_html_block_newline] = ACTIONS(1195), + [sym__closing_tag_html_block] = ACTIONS(1195), + [sym__closing_tag_html_block_newline] = ACTIONS(1195), + [sym_backslash_escape] = ACTIONS(1195), + [sym_entity_reference] = ACTIONS(1195), + [sym_numeric_character_reference] = ACTIONS(1195), + [sym_uri_autolink] = ACTIONS(1195), + [sym_email_autolink] = ACTIONS(1195), + [sym__whitespace_ge_2] = ACTIONS(1195), + [aux_sym__whitespace_token1] = ACTIONS(1197), + [sym__word_no_digit] = ACTIONS(1195), + [sym__digits] = ACTIONS(1195), + [aux_sym__newline_token1] = ACTIONS(1195), + [sym__block_quote_start] = ACTIONS(1195), + [sym__indented_chunk_start] = ACTIONS(1195), + [sym_atx_h1_marker] = ACTIONS(1195), + [sym_atx_h2_marker] = ACTIONS(1195), + [sym_atx_h3_marker] = ACTIONS(1195), + [sym_atx_h4_marker] = ACTIONS(1195), + [sym_atx_h5_marker] = ACTIONS(1195), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym_setext_h1_underline] = ACTIONS(1195), + [sym_setext_h2_underline] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1195), + [sym__list_marker_minus] = ACTIONS(1195), + [sym__list_marker_plus] = ACTIONS(1195), + [sym__list_marker_star] = ACTIONS(1195), + [sym__list_marker_parenthesis] = ACTIONS(1195), + [sym__list_marker_dot] = ACTIONS(1195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1195), + [sym__fenced_code_block_start_backtick] = ACTIONS(1195), + [sym__fenced_code_block_start_tilde] = ACTIONS(1195), + [sym__blank_line_start] = ACTIONS(1195), + [sym__split_token] = ACTIONS(1199), + [sym__code_span_start] = ACTIONS(1195), + [sym__emphasis_open_star] = ACTIONS(1195), + [sym__emphasis_open_underscore] = ACTIONS(1195), + }, + [235] = { + [aux_sym__ignore_matching_tokens] = STATE(258), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_BSLASH] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym__] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [aux_sym__html_block_1_token1] = ACTIONS(991), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(993), + [anon_sym_LT_QMARK] = ACTIONS(993), + [aux_sym__html_block_4_token1] = ACTIONS(993), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(991), + [aux_sym__html_block_6_token1] = ACTIONS(993), + [aux_sym__html_block_6_token2] = ACTIONS(991), + [sym__open_tag_html_block] = ACTIONS(991), + [sym__open_tag_html_block_newline] = ACTIONS(991), + [sym__closing_tag_html_block] = ACTIONS(991), + [sym__closing_tag_html_block_newline] = ACTIONS(991), + [sym_backslash_escape] = ACTIONS(991), + [sym_entity_reference] = ACTIONS(991), + [sym_numeric_character_reference] = ACTIONS(991), + [sym_uri_autolink] = ACTIONS(991), + [sym_email_autolink] = ACTIONS(991), + [sym__whitespace_ge_2] = ACTIONS(991), + [aux_sym__whitespace_token1] = ACTIONS(993), + [sym__word_no_digit] = ACTIONS(991), + [sym__digits] = ACTIONS(991), + [aux_sym__newline_token1] = ACTIONS(991), + [sym__block_close] = ACTIONS(991), + [sym__block_continuation] = ACTIONS(1202), + [sym__block_quote_continuation] = ACTIONS(1202), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(991), + [sym_atx_h2_marker] = ACTIONS(991), + [sym_atx_h3_marker] = ACTIONS(991), + [sym_atx_h4_marker] = ACTIONS(991), + [sym_atx_h5_marker] = ACTIONS(991), + [sym_atx_h6_marker] = ACTIONS(991), + [sym__thematic_break] = ACTIONS(991), + [sym__list_marker_minus] = ACTIONS(991), + [sym__list_marker_plus] = ACTIONS(991), + [sym__list_marker_star] = ACTIONS(991), + [sym__list_marker_parenthesis] = ACTIONS(991), + [sym__list_marker_dot] = ACTIONS(991), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_star_dont_interrupt] = ACTIONS(991), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(991), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(991), + [sym__fenced_code_block_start_backtick] = ACTIONS(991), + [sym__fenced_code_block_start_tilde] = ACTIONS(991), + [sym__blank_line_start] = ACTIONS(991), + [sym__code_span_start] = ACTIONS(991), + [sym__emphasis_open_star] = ACTIONS(991), + [sym__emphasis_open_underscore] = ACTIONS(991), + [sym__last_token_whitespace] = ACTIONS(1202), + }, + [236] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_PERCENT] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_BSLASH] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_CARET] = ACTIONS(1204), + [anon_sym__] = ACTIONS(1204), + [anon_sym_BQUOTE] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [aux_sym__html_block_1_token1] = ACTIONS(1204), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1206), + [anon_sym_LT_QMARK] = ACTIONS(1206), + [aux_sym__html_block_4_token1] = ACTIONS(1206), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1204), + [aux_sym__html_block_6_token1] = ACTIONS(1206), + [aux_sym__html_block_6_token2] = ACTIONS(1204), + [sym__open_tag_html_block] = ACTIONS(1204), + [sym__open_tag_html_block_newline] = ACTIONS(1204), + [sym__closing_tag_html_block] = ACTIONS(1204), + [sym__closing_tag_html_block_newline] = ACTIONS(1204), + [sym_backslash_escape] = ACTIONS(1204), + [sym_entity_reference] = ACTIONS(1204), + [sym_numeric_character_reference] = ACTIONS(1204), + [sym_uri_autolink] = ACTIONS(1204), + [sym_email_autolink] = ACTIONS(1204), + [sym__whitespace_ge_2] = ACTIONS(1204), + [aux_sym__whitespace_token1] = ACTIONS(1206), + [sym__word_no_digit] = ACTIONS(1204), + [sym__digits] = ACTIONS(1204), + [aux_sym__newline_token1] = ACTIONS(1204), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1204), + [sym__indented_chunk_start] = ACTIONS(1204), + [sym_atx_h1_marker] = ACTIONS(1204), + [sym_atx_h2_marker] = ACTIONS(1204), + [sym_atx_h3_marker] = ACTIONS(1204), + [sym_atx_h4_marker] = ACTIONS(1204), + [sym_atx_h5_marker] = ACTIONS(1204), + [sym_atx_h6_marker] = ACTIONS(1204), + [sym__thematic_break] = ACTIONS(1204), + [sym__list_marker_minus] = ACTIONS(1204), + [sym__list_marker_plus] = ACTIONS(1204), + [sym__list_marker_star] = ACTIONS(1204), + [sym__list_marker_parenthesis] = ACTIONS(1204), + [sym__list_marker_dot] = ACTIONS(1204), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1204), + [sym__fenced_code_block_start_backtick] = ACTIONS(1204), + [sym__fenced_code_block_start_tilde] = ACTIONS(1204), + [sym__blank_line_start] = ACTIONS(1204), + [sym__code_span_start] = ACTIONS(1204), + [sym__emphasis_open_star] = ACTIONS(1204), + [sym__emphasis_open_underscore] = ACTIONS(1204), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [237] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym__] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [aux_sym__html_block_1_token1] = ACTIONS(754), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(756), + [anon_sym_LT_QMARK] = ACTIONS(756), + [aux_sym__html_block_4_token1] = ACTIONS(756), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [aux_sym__html_block_6_token1] = ACTIONS(756), + [aux_sym__html_block_6_token2] = ACTIONS(754), + [sym__open_tag_html_block] = ACTIONS(754), + [sym__open_tag_html_block_newline] = ACTIONS(754), + [sym__closing_tag_html_block] = ACTIONS(754), + [sym__closing_tag_html_block_newline] = ACTIONS(754), + [sym_backslash_escape] = ACTIONS(754), + [sym_entity_reference] = ACTIONS(754), + [sym_numeric_character_reference] = ACTIONS(754), + [sym_uri_autolink] = ACTIONS(754), + [sym_email_autolink] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(754), + [aux_sym__whitespace_token1] = ACTIONS(756), + [sym__word_no_digit] = ACTIONS(754), + [sym__digits] = ACTIONS(754), + [aux_sym__newline_token1] = ACTIONS(754), + [sym__block_close] = ACTIONS(754), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(754), + [sym__indented_chunk_start] = ACTIONS(754), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(754), + [sym_atx_h5_marker] = ACTIONS(754), + [sym_atx_h6_marker] = ACTIONS(754), + [sym__thematic_break] = ACTIONS(754), + [sym__list_marker_minus] = ACTIONS(754), + [sym__list_marker_plus] = ACTIONS(754), + [sym__list_marker_star] = ACTIONS(754), + [sym__list_marker_parenthesis] = ACTIONS(754), + [sym__list_marker_dot] = ACTIONS(754), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_star_dont_interrupt] = ACTIONS(754), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(754), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(754), + [sym__fenced_code_block_start_backtick] = ACTIONS(754), + [sym__fenced_code_block_start_tilde] = ACTIONS(754), + [sym__blank_line_start] = ACTIONS(754), + [sym__code_span_start] = ACTIONS(754), + [sym__emphasis_open_star] = ACTIONS(754), + [sym__emphasis_open_underscore] = ACTIONS(754), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [238] = { + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(778), + [sym_entity_reference] = ACTIONS(778), + [sym_numeric_character_reference] = ACTIONS(778), + [sym_uri_autolink] = ACTIONS(778), + [sym_email_autolink] = ACTIONS(778), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(778), + [sym__digits] = ACTIONS(778), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__emphasis_close_star] = ACTIONS(1208), + }, + [239] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_BSLASH] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1008), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [aux_sym__html_block_1_token1] = ACTIONS(1008), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1010), + [anon_sym_LT_QMARK] = ACTIONS(1010), + [aux_sym__html_block_4_token1] = ACTIONS(1010), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1008), + [aux_sym__html_block_6_token1] = ACTIONS(1010), + [aux_sym__html_block_6_token2] = ACTIONS(1008), + [sym__open_tag_html_block] = ACTIONS(1008), + [sym__open_tag_html_block_newline] = ACTIONS(1008), + [sym__closing_tag_html_block] = ACTIONS(1008), + [sym__closing_tag_html_block_newline] = ACTIONS(1008), + [sym_backslash_escape] = ACTIONS(1008), + [sym_entity_reference] = ACTIONS(1008), + [sym_numeric_character_reference] = ACTIONS(1008), + [sym_uri_autolink] = ACTIONS(1008), + [sym_email_autolink] = ACTIONS(1008), + [sym__whitespace_ge_2] = ACTIONS(1008), + [aux_sym__whitespace_token1] = ACTIONS(1010), + [sym__word_no_digit] = ACTIONS(1008), + [sym__digits] = ACTIONS(1008), + [aux_sym__newline_token1] = ACTIONS(1008), + [sym__block_close] = ACTIONS(1008), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1008), + [sym__indented_chunk_start] = ACTIONS(1008), + [sym_atx_h1_marker] = ACTIONS(1008), + [sym_atx_h2_marker] = ACTIONS(1008), + [sym_atx_h3_marker] = ACTIONS(1008), + [sym_atx_h4_marker] = ACTIONS(1008), + [sym_atx_h5_marker] = ACTIONS(1008), + [sym_atx_h6_marker] = ACTIONS(1008), + [sym__thematic_break] = ACTIONS(1008), + [sym__list_marker_minus] = ACTIONS(1008), + [sym__list_marker_plus] = ACTIONS(1008), + [sym__list_marker_star] = ACTIONS(1008), + [sym__list_marker_parenthesis] = ACTIONS(1008), + [sym__list_marker_dot] = ACTIONS(1008), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1008), + [sym__fenced_code_block_start_backtick] = ACTIONS(1008), + [sym__fenced_code_block_start_tilde] = ACTIONS(1008), + [sym__blank_line_start] = ACTIONS(1008), + [sym__code_span_start] = ACTIONS(1008), + [sym__emphasis_open_star] = ACTIONS(1008), + [sym__emphasis_open_underscore] = ACTIONS(1008), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [240] = { + [aux_sym__ignore_matching_tokens] = STATE(227), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_CARET] = ACTIONS(754), + [anon_sym__] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [aux_sym__html_block_1_token1] = ACTIONS(754), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(756), + [anon_sym_LT_QMARK] = ACTIONS(756), + [aux_sym__html_block_4_token1] = ACTIONS(756), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [aux_sym__html_block_6_token1] = ACTIONS(756), + [aux_sym__html_block_6_token2] = ACTIONS(754), + [sym__open_tag_html_block] = ACTIONS(754), + [sym__open_tag_html_block_newline] = ACTIONS(754), + [sym__closing_tag_html_block] = ACTIONS(754), + [sym__closing_tag_html_block_newline] = ACTIONS(754), + [sym_backslash_escape] = ACTIONS(754), + [sym_entity_reference] = ACTIONS(754), + [sym_numeric_character_reference] = ACTIONS(754), + [sym_uri_autolink] = ACTIONS(754), + [sym_email_autolink] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(754), + [aux_sym__whitespace_token1] = ACTIONS(756), + [sym__word_no_digit] = ACTIONS(754), + [sym__digits] = ACTIONS(754), + [aux_sym__newline_token1] = ACTIONS(754), + [sym__block_close] = ACTIONS(754), + [sym__block_continuation] = ACTIONS(1210), + [sym__block_quote_continuation] = ACTIONS(1210), + [sym__block_quote_start] = ACTIONS(754), + [sym__indented_chunk_start] = ACTIONS(754), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(754), + [sym_atx_h5_marker] = ACTIONS(754), + [sym_atx_h6_marker] = ACTIONS(754), + [sym__thematic_break] = ACTIONS(754), + [sym__list_marker_minus] = ACTIONS(754), + [sym__list_marker_plus] = ACTIONS(754), + [sym__list_marker_star] = ACTIONS(754), + [sym__list_marker_parenthesis] = ACTIONS(754), + [sym__list_marker_dot] = ACTIONS(754), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(754), + [sym__list_marker_star_dont_interrupt] = ACTIONS(754), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(754), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(754), + [sym__fenced_code_block_start_backtick] = ACTIONS(754), + [sym__fenced_code_block_start_tilde] = ACTIONS(754), + [sym__blank_line_start] = ACTIONS(754), + [sym__code_span_start] = ACTIONS(754), + [sym__emphasis_open_star] = ACTIONS(754), + [sym__emphasis_open_underscore] = ACTIONS(754), + [sym__last_token_whitespace] = ACTIONS(1210), + }, + [241] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_PERCENT] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_RBRACK] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [aux_sym__html_block_1_token1] = ACTIONS(1212), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1214), + [anon_sym_LT_QMARK] = ACTIONS(1214), + [aux_sym__html_block_4_token1] = ACTIONS(1214), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1212), + [aux_sym__html_block_6_token1] = ACTIONS(1214), + [aux_sym__html_block_6_token2] = ACTIONS(1212), + [sym__open_tag_html_block] = ACTIONS(1212), + [sym__open_tag_html_block_newline] = ACTIONS(1212), + [sym__closing_tag_html_block] = ACTIONS(1212), + [sym__closing_tag_html_block_newline] = ACTIONS(1212), + [sym_backslash_escape] = ACTIONS(1212), + [sym_entity_reference] = ACTIONS(1212), + [sym_numeric_character_reference] = ACTIONS(1212), + [sym_uri_autolink] = ACTIONS(1212), + [sym_email_autolink] = ACTIONS(1212), + [sym__whitespace_ge_2] = ACTIONS(1212), + [aux_sym__whitespace_token1] = ACTIONS(1214), + [sym__word_no_digit] = ACTIONS(1212), + [sym__digits] = ACTIONS(1212), + [aux_sym__newline_token1] = ACTIONS(1212), + [sym__block_close] = ACTIONS(1212), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1212), + [sym__indented_chunk_start] = ACTIONS(1212), + [sym_atx_h1_marker] = ACTIONS(1212), + [sym_atx_h2_marker] = ACTIONS(1212), + [sym_atx_h3_marker] = ACTIONS(1212), + [sym_atx_h4_marker] = ACTIONS(1212), + [sym_atx_h5_marker] = ACTIONS(1212), + [sym_atx_h6_marker] = ACTIONS(1212), + [sym__thematic_break] = ACTIONS(1212), + [sym__list_marker_minus] = ACTIONS(1212), + [sym__list_marker_plus] = ACTIONS(1212), + [sym__list_marker_star] = ACTIONS(1212), + [sym__list_marker_parenthesis] = ACTIONS(1212), + [sym__list_marker_dot] = ACTIONS(1212), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1212), + [sym__fenced_code_block_start_backtick] = ACTIONS(1212), + [sym__fenced_code_block_start_tilde] = ACTIONS(1212), + [sym__blank_line_start] = ACTIONS(1212), + [sym__code_span_start] = ACTIONS(1212), + [sym__emphasis_open_star] = ACTIONS(1212), + [sym__emphasis_open_underscore] = ACTIONS(1212), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [242] = { + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(884), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [sym_uri_autolink] = ACTIONS(884), + [sym_email_autolink] = ACTIONS(884), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(884), + [sym__digits] = ACTIONS(884), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__emphasis_close_underscore] = ACTIONS(1216), + }, + [243] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(1218), + [anon_sym_PERCENT] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1218), + [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_QMARK] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_RBRACK] = ACTIONS(1218), + [anon_sym_CARET] = ACTIONS(1218), + [anon_sym__] = ACTIONS(1218), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [aux_sym__html_block_1_token1] = ACTIONS(1218), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1220), + [anon_sym_LT_QMARK] = ACTIONS(1220), + [aux_sym__html_block_4_token1] = ACTIONS(1220), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1218), + [aux_sym__html_block_6_token1] = ACTIONS(1220), + [aux_sym__html_block_6_token2] = ACTIONS(1218), + [sym__open_tag_html_block] = ACTIONS(1218), + [sym__open_tag_html_block_newline] = ACTIONS(1218), + [sym__closing_tag_html_block] = ACTIONS(1218), + [sym__closing_tag_html_block_newline] = ACTIONS(1218), + [sym_backslash_escape] = ACTIONS(1218), + [sym_entity_reference] = ACTIONS(1218), + [sym_numeric_character_reference] = ACTIONS(1218), + [sym_uri_autolink] = ACTIONS(1218), + [sym_email_autolink] = ACTIONS(1218), + [sym__whitespace_ge_2] = ACTIONS(1218), + [aux_sym__whitespace_token1] = ACTIONS(1220), + [sym__word_no_digit] = ACTIONS(1218), + [sym__digits] = ACTIONS(1218), + [aux_sym__newline_token1] = ACTIONS(1218), + [sym__block_close] = ACTIONS(1218), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1218), + [sym__indented_chunk_start] = ACTIONS(1218), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(1218), + [sym__list_marker_minus] = ACTIONS(1218), + [sym__list_marker_plus] = ACTIONS(1218), + [sym__list_marker_star] = ACTIONS(1218), + [sym__list_marker_parenthesis] = ACTIONS(1218), + [sym__list_marker_dot] = ACTIONS(1218), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1218), + [sym__fenced_code_block_start_backtick] = ACTIONS(1218), + [sym__fenced_code_block_start_tilde] = ACTIONS(1218), + [sym__blank_line_start] = ACTIONS(1218), + [sym__code_span_start] = ACTIONS(1218), + [sym__emphasis_open_star] = ACTIONS(1218), + [sym__emphasis_open_underscore] = ACTIONS(1218), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [244] = { + [aux_sym__ignore_matching_tokens] = STATE(251), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_BSLASH] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1008), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [aux_sym__html_block_1_token1] = ACTIONS(1008), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1010), + [anon_sym_LT_QMARK] = ACTIONS(1010), + [aux_sym__html_block_4_token1] = ACTIONS(1010), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1008), + [aux_sym__html_block_6_token1] = ACTIONS(1010), + [aux_sym__html_block_6_token2] = ACTIONS(1008), + [sym__open_tag_html_block] = ACTIONS(1008), + [sym__open_tag_html_block_newline] = ACTIONS(1008), + [sym__closing_tag_html_block] = ACTIONS(1008), + [sym__closing_tag_html_block_newline] = ACTIONS(1008), + [sym_backslash_escape] = ACTIONS(1008), + [sym_entity_reference] = ACTIONS(1008), + [sym_numeric_character_reference] = ACTIONS(1008), + [sym_uri_autolink] = ACTIONS(1008), + [sym_email_autolink] = ACTIONS(1008), + [sym__whitespace_ge_2] = ACTIONS(1008), + [aux_sym__whitespace_token1] = ACTIONS(1010), + [sym__word_no_digit] = ACTIONS(1008), + [sym__digits] = ACTIONS(1008), + [aux_sym__newline_token1] = ACTIONS(1008), + [sym__block_close] = ACTIONS(1008), + [sym__block_continuation] = ACTIONS(1222), + [sym__block_quote_continuation] = ACTIONS(1222), + [sym__block_quote_start] = ACTIONS(1008), + [sym__indented_chunk_start] = ACTIONS(1008), + [sym_atx_h1_marker] = ACTIONS(1008), + [sym_atx_h2_marker] = ACTIONS(1008), + [sym_atx_h3_marker] = ACTIONS(1008), + [sym_atx_h4_marker] = ACTIONS(1008), + [sym_atx_h5_marker] = ACTIONS(1008), + [sym_atx_h6_marker] = ACTIONS(1008), + [sym__thematic_break] = ACTIONS(1008), + [sym__list_marker_minus] = ACTIONS(1008), + [sym__list_marker_plus] = ACTIONS(1008), + [sym__list_marker_star] = ACTIONS(1008), + [sym__list_marker_parenthesis] = ACTIONS(1008), + [sym__list_marker_dot] = ACTIONS(1008), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1008), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1008), + [sym__fenced_code_block_start_backtick] = ACTIONS(1008), + [sym__fenced_code_block_start_tilde] = ACTIONS(1008), + [sym__blank_line_start] = ACTIONS(1008), + [sym__code_span_start] = ACTIONS(1008), + [sym__emphasis_open_star] = ACTIONS(1008), + [sym__emphasis_open_underscore] = ACTIONS(1008), + [sym__last_token_whitespace] = ACTIONS(1222), + }, + [245] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_BSLASH] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym__] = ACTIONS(1028), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [aux_sym__html_block_1_token1] = ACTIONS(1028), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1030), + [anon_sym_LT_QMARK] = ACTIONS(1030), + [aux_sym__html_block_4_token1] = ACTIONS(1030), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1028), + [aux_sym__html_block_6_token1] = ACTIONS(1030), + [aux_sym__html_block_6_token2] = ACTIONS(1028), + [sym__open_tag_html_block] = ACTIONS(1028), + [sym__open_tag_html_block_newline] = ACTIONS(1028), + [sym__closing_tag_html_block] = ACTIONS(1028), + [sym__closing_tag_html_block_newline] = ACTIONS(1028), + [sym_backslash_escape] = ACTIONS(1028), + [sym_entity_reference] = ACTIONS(1028), + [sym_numeric_character_reference] = ACTIONS(1028), + [sym_uri_autolink] = ACTIONS(1028), + [sym_email_autolink] = ACTIONS(1028), + [sym__whitespace_ge_2] = ACTIONS(1028), + [aux_sym__whitespace_token1] = ACTIONS(1030), + [sym__word_no_digit] = ACTIONS(1028), + [sym__digits] = ACTIONS(1028), + [aux_sym__newline_token1] = ACTIONS(1028), + [sym__block_close] = ACTIONS(1028), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1028), + [sym__indented_chunk_start] = ACTIONS(1028), + [sym_atx_h1_marker] = ACTIONS(1028), + [sym_atx_h2_marker] = ACTIONS(1028), + [sym_atx_h3_marker] = ACTIONS(1028), + [sym_atx_h4_marker] = ACTIONS(1028), + [sym_atx_h5_marker] = ACTIONS(1028), + [sym_atx_h6_marker] = ACTIONS(1028), + [sym__thematic_break] = ACTIONS(1028), + [sym__list_marker_minus] = ACTIONS(1028), + [sym__list_marker_plus] = ACTIONS(1028), + [sym__list_marker_star] = ACTIONS(1028), + [sym__list_marker_parenthesis] = ACTIONS(1028), + [sym__list_marker_dot] = ACTIONS(1028), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1028), + [sym__fenced_code_block_start_backtick] = ACTIONS(1028), + [sym__fenced_code_block_start_tilde] = ACTIONS(1028), + [sym__blank_line_start] = ACTIONS(1028), + [sym__code_span_start] = ACTIONS(1028), + [sym__emphasis_open_star] = ACTIONS(1028), + [sym__emphasis_open_underscore] = ACTIONS(1028), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [246] = { + [aux_sym__ignore_matching_tokens] = STATE(249), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_BSLASH] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym__] = ACTIONS(1028), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1028), + [aux_sym__html_block_1_token1] = ACTIONS(1028), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1030), + [anon_sym_LT_QMARK] = ACTIONS(1030), + [aux_sym__html_block_4_token1] = ACTIONS(1030), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1028), + [aux_sym__html_block_6_token1] = ACTIONS(1030), + [aux_sym__html_block_6_token2] = ACTIONS(1028), + [sym__open_tag_html_block] = ACTIONS(1028), + [sym__open_tag_html_block_newline] = ACTIONS(1028), + [sym__closing_tag_html_block] = ACTIONS(1028), + [sym__closing_tag_html_block_newline] = ACTIONS(1028), + [sym_backslash_escape] = ACTIONS(1028), + [sym_entity_reference] = ACTIONS(1028), + [sym_numeric_character_reference] = ACTIONS(1028), + [sym_uri_autolink] = ACTIONS(1028), + [sym_email_autolink] = ACTIONS(1028), + [sym__whitespace_ge_2] = ACTIONS(1028), + [aux_sym__whitespace_token1] = ACTIONS(1030), + [sym__word_no_digit] = ACTIONS(1028), + [sym__digits] = ACTIONS(1028), + [aux_sym__newline_token1] = ACTIONS(1028), + [sym__block_close] = ACTIONS(1028), + [sym__block_continuation] = ACTIONS(1224), + [sym__block_quote_continuation] = ACTIONS(1224), + [sym__block_quote_start] = ACTIONS(1028), + [sym__indented_chunk_start] = ACTIONS(1028), + [sym_atx_h1_marker] = ACTIONS(1028), + [sym_atx_h2_marker] = ACTIONS(1028), + [sym_atx_h3_marker] = ACTIONS(1028), + [sym_atx_h4_marker] = ACTIONS(1028), + [sym_atx_h5_marker] = ACTIONS(1028), + [sym_atx_h6_marker] = ACTIONS(1028), + [sym__thematic_break] = ACTIONS(1028), + [sym__list_marker_minus] = ACTIONS(1028), + [sym__list_marker_plus] = ACTIONS(1028), + [sym__list_marker_star] = ACTIONS(1028), + [sym__list_marker_parenthesis] = ACTIONS(1028), + [sym__list_marker_dot] = ACTIONS(1028), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1028), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1028), + [sym__fenced_code_block_start_backtick] = ACTIONS(1028), + [sym__fenced_code_block_start_tilde] = ACTIONS(1028), + [sym__blank_line_start] = ACTIONS(1028), + [sym__code_span_start] = ACTIONS(1028), + [sym__emphasis_open_star] = ACTIONS(1028), + [sym__emphasis_open_underscore] = ACTIONS(1028), + [sym__last_token_whitespace] = ACTIONS(1224), + }, + [247] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym__] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [aux_sym__html_block_1_token1] = ACTIONS(1042), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1044), + [anon_sym_LT_QMARK] = ACTIONS(1044), + [aux_sym__html_block_4_token1] = ACTIONS(1044), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1042), + [aux_sym__html_block_6_token1] = ACTIONS(1044), + [aux_sym__html_block_6_token2] = ACTIONS(1042), + [sym__open_tag_html_block] = ACTIONS(1042), + [sym__open_tag_html_block_newline] = ACTIONS(1042), + [sym__closing_tag_html_block] = ACTIONS(1042), + [sym__closing_tag_html_block_newline] = ACTIONS(1042), + [sym_backslash_escape] = ACTIONS(1042), + [sym_entity_reference] = ACTIONS(1042), + [sym_numeric_character_reference] = ACTIONS(1042), + [sym_uri_autolink] = ACTIONS(1042), + [sym_email_autolink] = ACTIONS(1042), + [sym__whitespace_ge_2] = ACTIONS(1042), + [aux_sym__whitespace_token1] = ACTIONS(1044), + [sym__word_no_digit] = ACTIONS(1042), + [sym__digits] = ACTIONS(1042), + [aux_sym__newline_token1] = ACTIONS(1042), + [sym__block_close] = ACTIONS(1042), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1042), + [sym__indented_chunk_start] = ACTIONS(1042), + [sym_atx_h1_marker] = ACTIONS(1042), + [sym_atx_h2_marker] = ACTIONS(1042), + [sym_atx_h3_marker] = ACTIONS(1042), + [sym_atx_h4_marker] = ACTIONS(1042), + [sym_atx_h5_marker] = ACTIONS(1042), + [sym_atx_h6_marker] = ACTIONS(1042), + [sym__thematic_break] = ACTIONS(1042), + [sym__list_marker_minus] = ACTIONS(1042), + [sym__list_marker_plus] = ACTIONS(1042), + [sym__list_marker_star] = ACTIONS(1042), + [sym__list_marker_parenthesis] = ACTIONS(1042), + [sym__list_marker_dot] = ACTIONS(1042), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1042), + [sym__fenced_code_block_start_backtick] = ACTIONS(1042), + [sym__fenced_code_block_start_tilde] = ACTIONS(1042), + [sym__blank_line_start] = ACTIONS(1042), + [sym__code_span_start] = ACTIONS(1042), + [sym__emphasis_open_star] = ACTIONS(1042), + [sym__emphasis_open_underscore] = ACTIONS(1042), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [248] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1226), + [anon_sym_PERCENT] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_COMMA] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1226), + [anon_sym_COLON] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_RBRACK] = ACTIONS(1226), + [anon_sym_CARET] = ACTIONS(1226), + [anon_sym__] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [aux_sym__html_block_1_token1] = ACTIONS(1226), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1228), + [anon_sym_LT_QMARK] = ACTIONS(1228), + [aux_sym__html_block_4_token1] = ACTIONS(1228), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1226), + [aux_sym__html_block_6_token1] = ACTIONS(1228), + [aux_sym__html_block_6_token2] = ACTIONS(1226), + [sym__open_tag_html_block] = ACTIONS(1226), + [sym__open_tag_html_block_newline] = ACTIONS(1226), + [sym__closing_tag_html_block] = ACTIONS(1226), + [sym__closing_tag_html_block_newline] = ACTIONS(1226), + [sym_backslash_escape] = ACTIONS(1226), + [sym_entity_reference] = ACTIONS(1226), + [sym_numeric_character_reference] = ACTIONS(1226), + [sym_uri_autolink] = ACTIONS(1226), + [sym_email_autolink] = ACTIONS(1226), + [sym__whitespace_ge_2] = ACTIONS(1226), + [aux_sym__whitespace_token1] = ACTIONS(1228), + [sym__word_no_digit] = ACTIONS(1226), + [sym__digits] = ACTIONS(1226), + [aux_sym__newline_token1] = ACTIONS(1226), + [sym__block_close] = ACTIONS(1226), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1226), + [sym__indented_chunk_start] = ACTIONS(1226), + [sym_atx_h1_marker] = ACTIONS(1226), + [sym_atx_h2_marker] = ACTIONS(1226), + [sym_atx_h3_marker] = ACTIONS(1226), + [sym_atx_h4_marker] = ACTIONS(1226), + [sym_atx_h5_marker] = ACTIONS(1226), + [sym_atx_h6_marker] = ACTIONS(1226), + [sym__thematic_break] = ACTIONS(1226), + [sym__list_marker_minus] = ACTIONS(1226), + [sym__list_marker_plus] = ACTIONS(1226), + [sym__list_marker_star] = ACTIONS(1226), + [sym__list_marker_parenthesis] = ACTIONS(1226), + [sym__list_marker_dot] = ACTIONS(1226), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1226), + [sym__fenced_code_block_start_backtick] = ACTIONS(1226), + [sym__fenced_code_block_start_tilde] = ACTIONS(1226), + [sym__blank_line_start] = ACTIONS(1226), + [sym__code_span_start] = ACTIONS(1226), + [sym__emphasis_open_star] = ACTIONS(1226), + [sym__emphasis_open_underscore] = ACTIONS(1226), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [249] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_DOLLAR] = ACTIONS(1230), + [anon_sym_PERCENT] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_COMMA] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1230), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_QMARK] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_RBRACK] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(1230), + [anon_sym__] = ACTIONS(1230), + [anon_sym_BQUOTE] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [aux_sym__html_block_1_token1] = ACTIONS(1230), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1232), + [anon_sym_LT_QMARK] = ACTIONS(1232), + [aux_sym__html_block_4_token1] = ACTIONS(1232), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1230), + [aux_sym__html_block_6_token1] = ACTIONS(1232), + [aux_sym__html_block_6_token2] = ACTIONS(1230), + [sym__open_tag_html_block] = ACTIONS(1230), + [sym__open_tag_html_block_newline] = ACTIONS(1230), + [sym__closing_tag_html_block] = ACTIONS(1230), + [sym__closing_tag_html_block_newline] = ACTIONS(1230), + [sym_backslash_escape] = ACTIONS(1230), + [sym_entity_reference] = ACTIONS(1230), + [sym_numeric_character_reference] = ACTIONS(1230), + [sym_uri_autolink] = ACTIONS(1230), + [sym_email_autolink] = ACTIONS(1230), + [sym__whitespace_ge_2] = ACTIONS(1230), + [aux_sym__whitespace_token1] = ACTIONS(1232), + [sym__word_no_digit] = ACTIONS(1230), + [sym__digits] = ACTIONS(1230), + [aux_sym__newline_token1] = ACTIONS(1230), + [sym__block_close] = ACTIONS(1230), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1230), + [sym__indented_chunk_start] = ACTIONS(1230), + [sym_atx_h1_marker] = ACTIONS(1230), + [sym_atx_h2_marker] = ACTIONS(1230), + [sym_atx_h3_marker] = ACTIONS(1230), + [sym_atx_h4_marker] = ACTIONS(1230), + [sym_atx_h5_marker] = ACTIONS(1230), + [sym_atx_h6_marker] = ACTIONS(1230), + [sym__thematic_break] = ACTIONS(1230), + [sym__list_marker_minus] = ACTIONS(1230), + [sym__list_marker_plus] = ACTIONS(1230), + [sym__list_marker_star] = ACTIONS(1230), + [sym__list_marker_parenthesis] = ACTIONS(1230), + [sym__list_marker_dot] = ACTIONS(1230), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1230), + [sym__fenced_code_block_start_backtick] = ACTIONS(1230), + [sym__fenced_code_block_start_tilde] = ACTIONS(1230), + [sym__blank_line_start] = ACTIONS(1230), + [sym__code_span_start] = ACTIONS(1230), + [sym__emphasis_open_star] = ACTIONS(1230), + [sym__emphasis_open_underscore] = ACTIONS(1230), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [250] = { [aux_sym__ignore_matching_tokens] = STATE(230), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_PERCENT] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_COLON] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_COMMA] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1234), + [anon_sym__] = ACTIONS(1234), + [anon_sym_BQUOTE] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [aux_sym__html_block_1_token1] = ACTIONS(1234), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1236), + [anon_sym_LT_QMARK] = ACTIONS(1236), + [aux_sym__html_block_4_token1] = ACTIONS(1236), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1234), + [aux_sym__html_block_6_token1] = ACTIONS(1236), + [aux_sym__html_block_6_token2] = ACTIONS(1234), + [sym__open_tag_html_block] = ACTIONS(1234), + [sym__open_tag_html_block_newline] = ACTIONS(1234), + [sym__closing_tag_html_block] = ACTIONS(1234), + [sym__closing_tag_html_block_newline] = ACTIONS(1234), + [sym_backslash_escape] = ACTIONS(1234), + [sym_entity_reference] = ACTIONS(1234), + [sym_numeric_character_reference] = ACTIONS(1234), + [sym_uri_autolink] = ACTIONS(1234), + [sym_email_autolink] = ACTIONS(1234), + [sym__whitespace_ge_2] = ACTIONS(1234), + [aux_sym__whitespace_token1] = ACTIONS(1236), + [sym__word_no_digit] = ACTIONS(1234), + [sym__digits] = ACTIONS(1234), + [aux_sym__newline_token1] = ACTIONS(1234), + [sym__block_close] = ACTIONS(1234), + [sym__block_continuation] = ACTIONS(1238), + [sym__block_quote_continuation] = ACTIONS(1238), + [sym__block_quote_start] = ACTIONS(1234), + [sym__indented_chunk_start] = ACTIONS(1234), + [sym_atx_h1_marker] = ACTIONS(1234), + [sym_atx_h2_marker] = ACTIONS(1234), + [sym_atx_h3_marker] = ACTIONS(1234), + [sym_atx_h4_marker] = ACTIONS(1234), + [sym_atx_h5_marker] = ACTIONS(1234), + [sym_atx_h6_marker] = ACTIONS(1234), + [sym__thematic_break] = ACTIONS(1234), + [sym__list_marker_minus] = ACTIONS(1234), + [sym__list_marker_plus] = ACTIONS(1234), + [sym__list_marker_star] = ACTIONS(1234), + [sym__list_marker_parenthesis] = ACTIONS(1234), + [sym__list_marker_dot] = ACTIONS(1234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1234), + [sym__fenced_code_block_start_backtick] = ACTIONS(1234), + [sym__fenced_code_block_start_tilde] = ACTIONS(1234), + [sym__blank_line_start] = ACTIONS(1234), + [sym__code_span_start] = ACTIONS(1234), + [sym__emphasis_open_star] = ACTIONS(1234), + [sym__emphasis_open_underscore] = ACTIONS(1234), + [sym__last_token_whitespace] = ACTIONS(1238), + }, + [251] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_COMMA] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1234), + [anon_sym__] = ACTIONS(1234), + [anon_sym_BQUOTE] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [aux_sym__html_block_1_token1] = ACTIONS(1234), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1236), + [anon_sym_LT_QMARK] = ACTIONS(1236), + [aux_sym__html_block_4_token1] = ACTIONS(1236), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1234), + [aux_sym__html_block_6_token1] = ACTIONS(1236), + [aux_sym__html_block_6_token2] = ACTIONS(1234), + [sym__open_tag_html_block] = ACTIONS(1234), + [sym__open_tag_html_block_newline] = ACTIONS(1234), + [sym__closing_tag_html_block] = ACTIONS(1234), + [sym__closing_tag_html_block_newline] = ACTIONS(1234), + [sym_backslash_escape] = ACTIONS(1234), + [sym_entity_reference] = ACTIONS(1234), + [sym_numeric_character_reference] = ACTIONS(1234), + [sym_uri_autolink] = ACTIONS(1234), + [sym_email_autolink] = ACTIONS(1234), + [sym__whitespace_ge_2] = ACTIONS(1234), + [aux_sym__whitespace_token1] = ACTIONS(1236), + [sym__word_no_digit] = ACTIONS(1234), + [sym__digits] = ACTIONS(1234), + [aux_sym__newline_token1] = ACTIONS(1234), + [sym__block_close] = ACTIONS(1234), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1234), + [sym__indented_chunk_start] = ACTIONS(1234), + [sym_atx_h1_marker] = ACTIONS(1234), + [sym_atx_h2_marker] = ACTIONS(1234), + [sym_atx_h3_marker] = ACTIONS(1234), + [sym_atx_h4_marker] = ACTIONS(1234), + [sym_atx_h5_marker] = ACTIONS(1234), + [sym_atx_h6_marker] = ACTIONS(1234), + [sym__thematic_break] = ACTIONS(1234), + [sym__list_marker_minus] = ACTIONS(1234), + [sym__list_marker_plus] = ACTIONS(1234), + [sym__list_marker_star] = ACTIONS(1234), + [sym__list_marker_parenthesis] = ACTIONS(1234), + [sym__list_marker_dot] = ACTIONS(1234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1234), + [sym__fenced_code_block_start_backtick] = ACTIONS(1234), + [sym__fenced_code_block_start_tilde] = ACTIONS(1234), + [sym__blank_line_start] = ACTIONS(1234), + [sym__code_span_start] = ACTIONS(1234), + [sym__emphasis_open_star] = ACTIONS(1234), + [sym__emphasis_open_underscore] = ACTIONS(1234), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [252] = { + [aux_sym__ignore_matching_tokens] = STATE(237), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1240), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [aux_sym__html_block_1_token1] = ACTIONS(1240), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1242), + [anon_sym_LT_QMARK] = ACTIONS(1242), + [aux_sym__html_block_4_token1] = ACTIONS(1242), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1240), + [aux_sym__html_block_6_token1] = ACTIONS(1242), + [aux_sym__html_block_6_token2] = ACTIONS(1240), + [sym__open_tag_html_block] = ACTIONS(1240), + [sym__open_tag_html_block_newline] = ACTIONS(1240), + [sym__closing_tag_html_block] = ACTIONS(1240), + [sym__closing_tag_html_block_newline] = ACTIONS(1240), + [sym_backslash_escape] = ACTIONS(1240), + [sym_entity_reference] = ACTIONS(1240), + [sym_numeric_character_reference] = ACTIONS(1240), + [sym_uri_autolink] = ACTIONS(1240), + [sym_email_autolink] = ACTIONS(1240), + [sym__whitespace_ge_2] = ACTIONS(1240), + [aux_sym__whitespace_token1] = ACTIONS(1242), + [sym__word_no_digit] = ACTIONS(1240), + [sym__digits] = ACTIONS(1240), + [aux_sym__newline_token1] = ACTIONS(1240), + [sym__block_close] = ACTIONS(1240), + [sym__block_continuation] = ACTIONS(1244), + [sym__block_quote_continuation] = ACTIONS(1244), + [sym__block_quote_start] = ACTIONS(1240), + [sym__indented_chunk_start] = ACTIONS(1240), + [sym_atx_h1_marker] = ACTIONS(1240), + [sym_atx_h2_marker] = ACTIONS(1240), + [sym_atx_h3_marker] = ACTIONS(1240), + [sym_atx_h4_marker] = ACTIONS(1240), + [sym_atx_h5_marker] = ACTIONS(1240), + [sym_atx_h6_marker] = ACTIONS(1240), + [sym__thematic_break] = ACTIONS(1240), + [sym__list_marker_minus] = ACTIONS(1240), + [sym__list_marker_plus] = ACTIONS(1240), + [sym__list_marker_star] = ACTIONS(1240), + [sym__list_marker_parenthesis] = ACTIONS(1240), + [sym__list_marker_dot] = ACTIONS(1240), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1240), + [sym__fenced_code_block_start_backtick] = ACTIONS(1240), + [sym__fenced_code_block_start_tilde] = ACTIONS(1240), + [sym__blank_line_start] = ACTIONS(1240), + [sym__code_span_start] = ACTIONS(1240), + [sym__emphasis_open_star] = ACTIONS(1240), + [sym__emphasis_open_underscore] = ACTIONS(1240), + [sym__last_token_whitespace] = ACTIONS(1244), + }, + [253] = { + [aux_sym__ignore_matching_tokens] = STATE(104), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym__] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [aux_sym__html_block_1_token1] = ACTIONS(1042), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1044), + [anon_sym_LT_QMARK] = ACTIONS(1044), + [aux_sym__html_block_4_token1] = ACTIONS(1044), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1042), + [aux_sym__html_block_6_token1] = ACTIONS(1044), + [aux_sym__html_block_6_token2] = ACTIONS(1042), + [sym__open_tag_html_block] = ACTIONS(1042), + [sym__open_tag_html_block_newline] = ACTIONS(1042), + [sym__closing_tag_html_block] = ACTIONS(1042), + [sym__closing_tag_html_block_newline] = ACTIONS(1042), + [sym_backslash_escape] = ACTIONS(1042), + [sym_entity_reference] = ACTIONS(1042), + [sym_numeric_character_reference] = ACTIONS(1042), + [sym_uri_autolink] = ACTIONS(1042), + [sym_email_autolink] = ACTIONS(1042), + [sym__whitespace_ge_2] = ACTIONS(1042), + [aux_sym__whitespace_token1] = ACTIONS(1044), + [sym__word_no_digit] = ACTIONS(1042), + [sym__digits] = ACTIONS(1042), + [aux_sym__newline_token1] = ACTIONS(1042), + [sym__block_close] = ACTIONS(1042), + [sym__block_continuation] = ACTIONS(1246), + [sym__block_quote_continuation] = ACTIONS(1246), + [sym__block_quote_start] = ACTIONS(1042), + [sym__indented_chunk_start] = ACTIONS(1042), + [sym_atx_h1_marker] = ACTIONS(1042), + [sym_atx_h2_marker] = ACTIONS(1042), + [sym_atx_h3_marker] = ACTIONS(1042), + [sym_atx_h4_marker] = ACTIONS(1042), + [sym_atx_h5_marker] = ACTIONS(1042), + [sym_atx_h6_marker] = ACTIONS(1042), + [sym__thematic_break] = ACTIONS(1042), + [sym__list_marker_minus] = ACTIONS(1042), + [sym__list_marker_plus] = ACTIONS(1042), + [sym__list_marker_star] = ACTIONS(1042), + [sym__list_marker_parenthesis] = ACTIONS(1042), + [sym__list_marker_dot] = ACTIONS(1042), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1042), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1042), + [sym__fenced_code_block_start_backtick] = ACTIONS(1042), + [sym__fenced_code_block_start_tilde] = ACTIONS(1042), + [sym__blank_line_start] = ACTIONS(1042), + [sym__code_span_start] = ACTIONS(1042), + [sym__emphasis_open_star] = ACTIONS(1042), + [sym__emphasis_open_underscore] = ACTIONS(1042), + [sym__last_token_whitespace] = ACTIONS(1246), + }, + [254] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_PERCENT] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_RBRACK] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [aux_sym__html_block_1_token1] = ACTIONS(1212), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1214), + [anon_sym_LT_QMARK] = ACTIONS(1214), + [aux_sym__html_block_4_token1] = ACTIONS(1214), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1212), + [aux_sym__html_block_6_token1] = ACTIONS(1214), + [aux_sym__html_block_6_token2] = ACTIONS(1212), + [sym__open_tag_html_block] = ACTIONS(1212), + [sym__open_tag_html_block_newline] = ACTIONS(1212), + [sym__closing_tag_html_block] = ACTIONS(1212), + [sym__closing_tag_html_block_newline] = ACTIONS(1212), + [sym_backslash_escape] = ACTIONS(1212), + [sym_entity_reference] = ACTIONS(1212), + [sym_numeric_character_reference] = ACTIONS(1212), + [sym_uri_autolink] = ACTIONS(1212), + [sym_email_autolink] = ACTIONS(1212), + [sym__whitespace_ge_2] = ACTIONS(1212), + [aux_sym__whitespace_token1] = ACTIONS(1214), + [sym__word_no_digit] = ACTIONS(1212), + [sym__digits] = ACTIONS(1212), + [aux_sym__newline_token1] = ACTIONS(1212), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1212), + [sym__indented_chunk_start] = ACTIONS(1212), + [sym_atx_h1_marker] = ACTIONS(1212), + [sym_atx_h2_marker] = ACTIONS(1212), + [sym_atx_h3_marker] = ACTIONS(1212), + [sym_atx_h4_marker] = ACTIONS(1212), + [sym_atx_h5_marker] = ACTIONS(1212), + [sym_atx_h6_marker] = ACTIONS(1212), + [sym__thematic_break] = ACTIONS(1212), + [sym__list_marker_minus] = ACTIONS(1212), + [sym__list_marker_plus] = ACTIONS(1212), + [sym__list_marker_star] = ACTIONS(1212), + [sym__list_marker_parenthesis] = ACTIONS(1212), + [sym__list_marker_dot] = ACTIONS(1212), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1212), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1212), + [sym__fenced_code_block_start_backtick] = ACTIONS(1212), + [sym__fenced_code_block_start_tilde] = ACTIONS(1212), + [sym__blank_line_start] = ACTIONS(1212), + [sym__code_span_start] = ACTIONS(1212), + [sym__emphasis_open_star] = ACTIONS(1212), + [sym__emphasis_open_underscore] = ACTIONS(1212), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [255] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(1218), + [anon_sym_PERCENT] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1218), + [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_QMARK] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_RBRACK] = ACTIONS(1218), + [anon_sym_CARET] = ACTIONS(1218), + [anon_sym__] = ACTIONS(1218), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [aux_sym__html_block_1_token1] = ACTIONS(1218), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1220), + [anon_sym_LT_QMARK] = ACTIONS(1220), + [aux_sym__html_block_4_token1] = ACTIONS(1220), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1218), + [aux_sym__html_block_6_token1] = ACTIONS(1220), + [aux_sym__html_block_6_token2] = ACTIONS(1218), + [sym__open_tag_html_block] = ACTIONS(1218), + [sym__open_tag_html_block_newline] = ACTIONS(1218), + [sym__closing_tag_html_block] = ACTIONS(1218), + [sym__closing_tag_html_block_newline] = ACTIONS(1218), + [sym_backslash_escape] = ACTIONS(1218), + [sym_entity_reference] = ACTIONS(1218), + [sym_numeric_character_reference] = ACTIONS(1218), + [sym_uri_autolink] = ACTIONS(1218), + [sym_email_autolink] = ACTIONS(1218), + [sym__whitespace_ge_2] = ACTIONS(1218), + [aux_sym__whitespace_token1] = ACTIONS(1220), + [sym__word_no_digit] = ACTIONS(1218), + [sym__digits] = ACTIONS(1218), + [aux_sym__newline_token1] = ACTIONS(1218), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1218), + [sym__indented_chunk_start] = ACTIONS(1218), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(1218), + [sym__list_marker_minus] = ACTIONS(1218), + [sym__list_marker_plus] = ACTIONS(1218), + [sym__list_marker_star] = ACTIONS(1218), + [sym__list_marker_parenthesis] = ACTIONS(1218), + [sym__list_marker_dot] = ACTIONS(1218), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1218), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1218), + [sym__fenced_code_block_start_backtick] = ACTIONS(1218), + [sym__fenced_code_block_start_tilde] = ACTIONS(1218), + [sym__blank_line_start] = ACTIONS(1218), + [sym__code_span_start] = ACTIONS(1218), + [sym__emphasis_open_star] = ACTIONS(1218), + [sym__emphasis_open_underscore] = ACTIONS(1218), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [256] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1226), + [anon_sym_PERCENT] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_COMMA] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1226), + [anon_sym_COLON] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_RBRACK] = ACTIONS(1226), + [anon_sym_CARET] = ACTIONS(1226), + [anon_sym__] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [aux_sym__html_block_1_token1] = ACTIONS(1226), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1228), + [anon_sym_LT_QMARK] = ACTIONS(1228), + [aux_sym__html_block_4_token1] = ACTIONS(1228), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1226), + [aux_sym__html_block_6_token1] = ACTIONS(1228), + [aux_sym__html_block_6_token2] = ACTIONS(1226), + [sym__open_tag_html_block] = ACTIONS(1226), + [sym__open_tag_html_block_newline] = ACTIONS(1226), + [sym__closing_tag_html_block] = ACTIONS(1226), + [sym__closing_tag_html_block_newline] = ACTIONS(1226), + [sym_backslash_escape] = ACTIONS(1226), + [sym_entity_reference] = ACTIONS(1226), + [sym_numeric_character_reference] = ACTIONS(1226), + [sym_uri_autolink] = ACTIONS(1226), + [sym_email_autolink] = ACTIONS(1226), + [sym__whitespace_ge_2] = ACTIONS(1226), + [aux_sym__whitespace_token1] = ACTIONS(1228), + [sym__word_no_digit] = ACTIONS(1226), + [sym__digits] = ACTIONS(1226), + [aux_sym__newline_token1] = ACTIONS(1226), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1226), + [sym__indented_chunk_start] = ACTIONS(1226), + [sym_atx_h1_marker] = ACTIONS(1226), + [sym_atx_h2_marker] = ACTIONS(1226), + [sym_atx_h3_marker] = ACTIONS(1226), + [sym_atx_h4_marker] = ACTIONS(1226), + [sym_atx_h5_marker] = ACTIONS(1226), + [sym_atx_h6_marker] = ACTIONS(1226), + [sym__thematic_break] = ACTIONS(1226), + [sym__list_marker_minus] = ACTIONS(1226), + [sym__list_marker_plus] = ACTIONS(1226), + [sym__list_marker_star] = ACTIONS(1226), + [sym__list_marker_parenthesis] = ACTIONS(1226), + [sym__list_marker_dot] = ACTIONS(1226), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1226), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1226), + [sym__fenced_code_block_start_backtick] = ACTIONS(1226), + [sym__fenced_code_block_start_tilde] = ACTIONS(1226), + [sym__blank_line_start] = ACTIONS(1226), + [sym__code_span_start] = ACTIONS(1226), + [sym__emphasis_open_star] = ACTIONS(1226), + [sym__emphasis_open_underscore] = ACTIONS(1226), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [257] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = 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_PIPE] = 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(93), + [sym__block_quote_continuation] = ACTIONS(93), + [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(93), + }, + [258] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1240), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [aux_sym__html_block_1_token1] = ACTIONS(1240), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1242), + [anon_sym_LT_QMARK] = ACTIONS(1242), + [aux_sym__html_block_4_token1] = ACTIONS(1242), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1240), + [aux_sym__html_block_6_token1] = ACTIONS(1242), + [aux_sym__html_block_6_token2] = ACTIONS(1240), + [sym__open_tag_html_block] = ACTIONS(1240), + [sym__open_tag_html_block_newline] = ACTIONS(1240), + [sym__closing_tag_html_block] = ACTIONS(1240), + [sym__closing_tag_html_block_newline] = ACTIONS(1240), + [sym_backslash_escape] = ACTIONS(1240), + [sym_entity_reference] = ACTIONS(1240), + [sym_numeric_character_reference] = ACTIONS(1240), + [sym_uri_autolink] = ACTIONS(1240), + [sym_email_autolink] = ACTIONS(1240), + [sym__whitespace_ge_2] = ACTIONS(1240), + [aux_sym__whitespace_token1] = ACTIONS(1242), + [sym__word_no_digit] = ACTIONS(1240), + [sym__digits] = ACTIONS(1240), + [aux_sym__newline_token1] = ACTIONS(1240), + [sym__block_close] = ACTIONS(1240), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1240), + [sym__indented_chunk_start] = ACTIONS(1240), + [sym_atx_h1_marker] = ACTIONS(1240), + [sym_atx_h2_marker] = ACTIONS(1240), + [sym_atx_h3_marker] = ACTIONS(1240), + [sym_atx_h4_marker] = ACTIONS(1240), + [sym_atx_h5_marker] = ACTIONS(1240), + [sym_atx_h6_marker] = ACTIONS(1240), + [sym__thematic_break] = ACTIONS(1240), + [sym__list_marker_minus] = ACTIONS(1240), + [sym__list_marker_plus] = ACTIONS(1240), + [sym__list_marker_star] = ACTIONS(1240), + [sym__list_marker_parenthesis] = ACTIONS(1240), + [sym__list_marker_dot] = ACTIONS(1240), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1240), + [sym__fenced_code_block_start_backtick] = ACTIONS(1240), + [sym__fenced_code_block_start_tilde] = ACTIONS(1240), + [sym__blank_line_start] = ACTIONS(1240), + [sym__code_span_start] = ACTIONS(1240), + [sym__emphasis_open_star] = ACTIONS(1240), + [sym__emphasis_open_underscore] = ACTIONS(1240), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [259] = { + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(778), + [sym_entity_reference] = ACTIONS(778), + [sym_numeric_character_reference] = ACTIONS(778), + [sym_uri_autolink] = ACTIONS(778), + [sym_email_autolink] = ACTIONS(778), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(778), + [sym__digits] = ACTIONS(778), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + [sym__emphasis_close_star] = ACTIONS(1248), + }, + [260] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_BSLASH] = ACTIONS(1175), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [aux_sym__html_block_1_token1] = ACTIONS(1173), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1175), + [anon_sym_LT_QMARK] = ACTIONS(1175), + [aux_sym__html_block_4_token1] = ACTIONS(1175), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1173), + [aux_sym__html_block_6_token1] = ACTIONS(1175), + [aux_sym__html_block_6_token2] = ACTIONS(1173), + [sym__open_tag_html_block] = ACTIONS(1173), + [sym__open_tag_html_block_newline] = ACTIONS(1173), + [sym__closing_tag_html_block] = ACTIONS(1173), + [sym__closing_tag_html_block_newline] = ACTIONS(1173), + [sym_backslash_escape] = ACTIONS(1173), + [sym_entity_reference] = ACTIONS(1173), + [sym_numeric_character_reference] = ACTIONS(1173), + [sym_uri_autolink] = ACTIONS(1173), + [sym_email_autolink] = ACTIONS(1173), + [sym__whitespace_ge_2] = ACTIONS(1173), + [aux_sym__whitespace_token1] = ACTIONS(1175), + [sym__word_no_digit] = ACTIONS(1173), + [sym__digits] = ACTIONS(1173), + [aux_sym__newline_token1] = ACTIONS(1173), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1173), + [sym__indented_chunk_start] = ACTIONS(1173), + [sym_atx_h1_marker] = ACTIONS(1173), + [sym_atx_h2_marker] = ACTIONS(1173), + [sym_atx_h3_marker] = ACTIONS(1173), + [sym_atx_h4_marker] = ACTIONS(1173), + [sym_atx_h5_marker] = ACTIONS(1173), + [sym_atx_h6_marker] = ACTIONS(1173), + [sym__thematic_break] = ACTIONS(1173), + [sym__list_marker_minus] = ACTIONS(1173), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1173), + [sym__list_marker_parenthesis] = ACTIONS(1173), + [sym__list_marker_dot] = ACTIONS(1173), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1173), + [sym__fenced_code_block_start_backtick] = ACTIONS(1173), + [sym__fenced_code_block_start_tilde] = ACTIONS(1173), + [sym__blank_line_start] = ACTIONS(1173), + [sym__code_span_start] = ACTIONS(1173), + [sym__emphasis_open_star] = ACTIONS(1173), + [sym__emphasis_open_underscore] = ACTIONS(1173), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [261] = { + [aux_sym__ignore_matching_tokens] = STATE(184), + [ts_builtin_sym_end] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PERCENT] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_BSLASH] = ACTIONS(1175), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym__] = ACTIONS(1173), + [anon_sym_BQUOTE] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [aux_sym__html_block_1_token1] = ACTIONS(1173), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1175), + [anon_sym_LT_QMARK] = ACTIONS(1175), + [aux_sym__html_block_4_token1] = ACTIONS(1175), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1173), + [aux_sym__html_block_6_token1] = ACTIONS(1175), + [aux_sym__html_block_6_token2] = ACTIONS(1173), + [sym__open_tag_html_block] = ACTIONS(1173), + [sym__open_tag_html_block_newline] = ACTIONS(1173), + [sym__closing_tag_html_block] = ACTIONS(1173), + [sym__closing_tag_html_block_newline] = ACTIONS(1173), + [sym_backslash_escape] = ACTIONS(1173), + [sym_entity_reference] = ACTIONS(1173), + [sym_numeric_character_reference] = ACTIONS(1173), + [sym_uri_autolink] = ACTIONS(1173), + [sym_email_autolink] = ACTIONS(1173), + [sym__whitespace_ge_2] = ACTIONS(1173), + [aux_sym__whitespace_token1] = ACTIONS(1175), + [sym__word_no_digit] = ACTIONS(1173), + [sym__digits] = ACTIONS(1173), + [aux_sym__newline_token1] = ACTIONS(1173), + [sym__block_continuation] = ACTIONS(1250), + [sym__block_quote_continuation] = ACTIONS(1250), + [sym__block_quote_start] = ACTIONS(1173), + [sym__indented_chunk_start] = ACTIONS(1173), + [sym_atx_h1_marker] = ACTIONS(1173), + [sym_atx_h2_marker] = ACTIONS(1173), + [sym_atx_h3_marker] = ACTIONS(1173), + [sym_atx_h4_marker] = ACTIONS(1173), + [sym_atx_h5_marker] = ACTIONS(1173), + [sym_atx_h6_marker] = ACTIONS(1173), + [sym__thematic_break] = ACTIONS(1173), + [sym__list_marker_minus] = ACTIONS(1173), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1173), + [sym__list_marker_parenthesis] = ACTIONS(1173), + [sym__list_marker_dot] = ACTIONS(1173), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1173), + [sym__fenced_code_block_start_backtick] = ACTIONS(1173), + [sym__fenced_code_block_start_tilde] = ACTIONS(1173), + [sym__blank_line_start] = ACTIONS(1173), + [sym__code_span_start] = ACTIONS(1173), + [sym__emphasis_open_star] = ACTIONS(1173), + [sym__emphasis_open_underscore] = ACTIONS(1173), + [sym__last_token_whitespace] = ACTIONS(1250), + }, + [262] = { + [sym__soft_line_break] = STATE(262), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(262), + [sym_full_reference_link] = STATE(262), + [sym_collapsed_reference_link] = STATE(262), + [sym_inline_link] = STATE(262), + [sym_image] = STATE(262), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(262), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(262), + [sym__whitespace] = STATE(262), + [sym__word] = STATE(262), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(262), + [aux_sym__inline_no_star] = STATE(262), + [sym__text_inline_no_star] = STATE(262), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(262), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(262), + [sym__code_span] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_DOT] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1264), [anon_sym_BSLASH] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym__] = ACTIONS(1265), - [anon_sym_BQUOTE] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [aux_sym__html_block_1_token1] = ACTIONS(1265), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1267), - [anon_sym_LT_QMARK] = ACTIONS(1267), - [aux_sym__html_block_4_token1] = ACTIONS(1267), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1265), - [aux_sym__html_block_6_token1] = ACTIONS(1267), - [aux_sym__html_block_6_token2] = ACTIONS(1265), - [sym__open_tag_html_block] = ACTIONS(1265), - [sym__open_tag_html_block_newline] = ACTIONS(1265), - [sym__closing_tag_html_block] = ACTIONS(1265), - [sym__closing_tag_html_block_newline] = ACTIONS(1265), - [sym_backslash_escape] = ACTIONS(1265), - [sym_entity_reference] = ACTIONS(1265), - [sym_numeric_character_reference] = ACTIONS(1265), - [sym_uri_autolink] = ACTIONS(1265), - [sym_email_autolink] = ACTIONS(1265), - [sym__whitespace_ge_2] = ACTIONS(1265), - [aux_sym__whitespace_token1] = ACTIONS(1267), - [sym__word_no_digit] = ACTIONS(1265), - [sym__digits] = ACTIONS(1265), - [aux_sym__newline_token1] = ACTIONS(1265), - [sym__block_close] = ACTIONS(1265), - [sym__block_continuation] = ACTIONS(1269), - [sym__block_quote_continuation] = ACTIONS(1269), - [sym__block_quote_start] = ACTIONS(1265), - [sym__indented_chunk_start] = ACTIONS(1265), - [sym_atx_h1_marker] = ACTIONS(1265), - [sym_atx_h2_marker] = ACTIONS(1265), - [sym_atx_h3_marker] = ACTIONS(1265), - [sym_atx_h4_marker] = ACTIONS(1265), - [sym_atx_h5_marker] = ACTIONS(1265), - [sym_atx_h6_marker] = ACTIONS(1265), - [sym__thematic_break] = ACTIONS(1265), - [sym__list_marker_minus] = ACTIONS(1265), - [sym__list_marker_plus] = ACTIONS(1265), - [sym__list_marker_star] = ACTIONS(1265), - [sym__list_marker_parenthesis] = ACTIONS(1265), - [sym__list_marker_dot] = ACTIONS(1265), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1265), - [sym__fenced_code_block_start_backtick] = ACTIONS(1265), - [sym__fenced_code_block_start_tilde] = ACTIONS(1265), - [sym__blank_line_start] = ACTIONS(1265), - [sym__code_span_start] = ACTIONS(1265), - [sym__emphasis_open_star] = ACTIONS(1265), - [sym__emphasis_open_underscore] = ACTIONS(1265), - [sym__last_token_whitespace] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym__] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1270), + [anon_sym_LT_QMARK] = ACTIONS(1273), + [aux_sym__html_block_4_token1] = ACTIONS(1276), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1279), + [sym_backslash_escape] = ACTIONS(1282), + [sym_entity_reference] = ACTIONS(1282), + [sym_numeric_character_reference] = ACTIONS(1282), + [sym_uri_autolink] = ACTIONS(1282), + [sym_email_autolink] = ACTIONS(1282), + [sym__whitespace_ge_2] = ACTIONS(1285), + [aux_sym__whitespace_token1] = ACTIONS(1288), + [sym__word_no_digit] = ACTIONS(1282), + [sym__digits] = ACTIONS(1282), + [aux_sym__newline_token1] = ACTIONS(1291), + [sym__code_span_start] = ACTIONS(1294), + [sym__emphasis_open_star] = ACTIONS(1297), + [sym__emphasis_open_underscore] = ACTIONS(1300), + [sym__emphasis_close_star] = ACTIONS(1303), + }, + [263] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_SLASH] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_AT] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_BSLASH] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1305), + [anon_sym_CARET] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [aux_sym__html_block_1_token1] = ACTIONS(1305), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1307), + [anon_sym_LT_QMARK] = ACTIONS(1307), + [aux_sym__html_block_4_token1] = ACTIONS(1307), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1305), + [aux_sym__html_block_6_token1] = ACTIONS(1307), + [aux_sym__html_block_6_token2] = ACTIONS(1305), + [sym__open_tag_html_block] = ACTIONS(1305), + [sym__open_tag_html_block_newline] = ACTIONS(1305), + [sym__closing_tag_html_block] = ACTIONS(1305), + [sym__closing_tag_html_block_newline] = ACTIONS(1305), + [sym_backslash_escape] = ACTIONS(1305), + [sym_entity_reference] = ACTIONS(1305), + [sym_numeric_character_reference] = ACTIONS(1305), + [sym_uri_autolink] = ACTIONS(1305), + [sym_email_autolink] = ACTIONS(1305), + [sym__whitespace_ge_2] = ACTIONS(1305), + [aux_sym__whitespace_token1] = ACTIONS(1307), + [sym__word_no_digit] = ACTIONS(1305), + [sym__digits] = ACTIONS(1305), + [aux_sym__newline_token1] = ACTIONS(1305), + [sym__block_close] = ACTIONS(1305), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1305), + [sym__indented_chunk_start] = ACTIONS(1305), + [sym_atx_h1_marker] = ACTIONS(1305), + [sym_atx_h2_marker] = ACTIONS(1305), + [sym_atx_h3_marker] = ACTIONS(1305), + [sym_atx_h4_marker] = ACTIONS(1305), + [sym_atx_h5_marker] = ACTIONS(1305), + [sym_atx_h6_marker] = ACTIONS(1305), + [sym__thematic_break] = ACTIONS(1305), + [sym__list_marker_minus] = ACTIONS(1305), + [sym__list_marker_plus] = ACTIONS(1305), + [sym__list_marker_star] = ACTIONS(1305), + [sym__list_marker_parenthesis] = ACTIONS(1305), + [sym__list_marker_dot] = ACTIONS(1305), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1305), + [sym__fenced_code_block_start_backtick] = ACTIONS(1305), + [sym__fenced_code_block_start_tilde] = ACTIONS(1305), + [sym__blank_line_start] = ACTIONS(1305), + [sym__code_span_start] = ACTIONS(1305), + [sym__emphasis_open_star] = ACTIONS(1305), + [sym__emphasis_open_underscore] = ACTIONS(1305), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [264] = { + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(884), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [sym_uri_autolink] = ACTIONS(884), + [sym_email_autolink] = ACTIONS(884), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(884), + [sym__digits] = ACTIONS(884), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__emphasis_close_underscore] = ACTIONS(1309), + }, + [265] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_DOLLAR] = ACTIONS(1230), + [anon_sym_PERCENT] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_COMMA] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1230), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_QMARK] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_RBRACK] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(1230), + [anon_sym__] = ACTIONS(1230), + [anon_sym_BQUOTE] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [aux_sym__html_block_1_token1] = ACTIONS(1230), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1232), + [anon_sym_LT_QMARK] = ACTIONS(1232), + [aux_sym__html_block_4_token1] = ACTIONS(1232), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1230), + [aux_sym__html_block_6_token1] = ACTIONS(1232), + [aux_sym__html_block_6_token2] = ACTIONS(1230), + [sym__open_tag_html_block] = ACTIONS(1230), + [sym__open_tag_html_block_newline] = ACTIONS(1230), + [sym__closing_tag_html_block] = ACTIONS(1230), + [sym__closing_tag_html_block_newline] = ACTIONS(1230), + [sym_backslash_escape] = ACTIONS(1230), + [sym_entity_reference] = ACTIONS(1230), + [sym_numeric_character_reference] = ACTIONS(1230), + [sym_uri_autolink] = ACTIONS(1230), + [sym_email_autolink] = ACTIONS(1230), + [sym__whitespace_ge_2] = ACTIONS(1230), + [aux_sym__whitespace_token1] = ACTIONS(1232), + [sym__word_no_digit] = ACTIONS(1230), + [sym__digits] = ACTIONS(1230), + [aux_sym__newline_token1] = ACTIONS(1230), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1230), + [sym__indented_chunk_start] = ACTIONS(1230), + [sym_atx_h1_marker] = ACTIONS(1230), + [sym_atx_h2_marker] = ACTIONS(1230), + [sym_atx_h3_marker] = ACTIONS(1230), + [sym_atx_h4_marker] = ACTIONS(1230), + [sym_atx_h5_marker] = ACTIONS(1230), + [sym_atx_h6_marker] = ACTIONS(1230), + [sym__thematic_break] = ACTIONS(1230), + [sym__list_marker_minus] = ACTIONS(1230), + [sym__list_marker_plus] = ACTIONS(1230), + [sym__list_marker_star] = ACTIONS(1230), + [sym__list_marker_parenthesis] = ACTIONS(1230), + [sym__list_marker_dot] = ACTIONS(1230), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1230), + [sym__fenced_code_block_start_backtick] = ACTIONS(1230), + [sym__fenced_code_block_start_tilde] = ACTIONS(1230), + [sym__blank_line_start] = ACTIONS(1230), + [sym__code_span_start] = ACTIONS(1230), + [sym__emphasis_open_star] = ACTIONS(1230), + [sym__emphasis_open_underscore] = ACTIONS(1230), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [266] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_LT] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1113), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym__] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [aux_sym__html_block_1_token1] = ACTIONS(1113), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1115), + [anon_sym_LT_QMARK] = ACTIONS(1115), + [aux_sym__html_block_4_token1] = ACTIONS(1115), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1113), + [aux_sym__html_block_6_token1] = ACTIONS(1115), + [aux_sym__html_block_6_token2] = ACTIONS(1113), + [sym__open_tag_html_block] = ACTIONS(1113), + [sym__open_tag_html_block_newline] = ACTIONS(1113), + [sym__closing_tag_html_block] = ACTIONS(1113), + [sym__closing_tag_html_block_newline] = ACTIONS(1113), + [sym_backslash_escape] = ACTIONS(1113), + [sym_entity_reference] = ACTIONS(1113), + [sym_numeric_character_reference] = ACTIONS(1113), + [sym_uri_autolink] = ACTIONS(1113), + [sym_email_autolink] = ACTIONS(1113), + [sym__whitespace_ge_2] = ACTIONS(1113), + [aux_sym__whitespace_token1] = ACTIONS(1115), + [sym__word_no_digit] = ACTIONS(1113), + [sym__digits] = ACTIONS(1113), + [aux_sym__newline_token1] = ACTIONS(1113), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1113), + [sym__indented_chunk_start] = ACTIONS(1113), + [sym_atx_h1_marker] = ACTIONS(1113), + [sym_atx_h2_marker] = ACTIONS(1113), + [sym_atx_h3_marker] = ACTIONS(1113), + [sym_atx_h4_marker] = ACTIONS(1113), + [sym_atx_h5_marker] = ACTIONS(1113), + [sym_atx_h6_marker] = ACTIONS(1113), + [sym__thematic_break] = ACTIONS(1113), + [sym__list_marker_minus] = ACTIONS(1113), + [sym__list_marker_plus] = ACTIONS(1113), + [sym__list_marker_star] = ACTIONS(1113), + [sym__list_marker_parenthesis] = ACTIONS(1113), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__fenced_code_block_start_backtick] = ACTIONS(1113), + [sym__fenced_code_block_start_tilde] = ACTIONS(1113), + [sym__blank_line_start] = ACTIONS(1113), + [sym__code_span_start] = ACTIONS(1113), + [sym__emphasis_open_star] = ACTIONS(1113), + [sym__emphasis_open_underscore] = ACTIONS(1113), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [267] = { + [sym__soft_line_break] = STATE(267), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(267), + [sym_full_reference_link] = STATE(267), + [sym_collapsed_reference_link] = STATE(267), + [sym_inline_link] = STATE(267), + [sym_image] = STATE(267), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(267), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(267), + [sym__whitespace] = STATE(267), + [sym__word] = STATE(267), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(267), + [aux_sym__inline_no_underscore] = STATE(267), + [sym__text_inline_no_underscore] = STATE(267), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(267), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(267), + [sym__code_span] = STATE(267), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1311), + [anon_sym_DOLLAR] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_COMMA] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_COLON] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_BSLASH] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym__] = ACTIONS(1311), + [anon_sym_BQUOTE] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1329), + [anon_sym_LT_QMARK] = ACTIONS(1332), + [aux_sym__html_block_4_token1] = ACTIONS(1335), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1338), + [sym_backslash_escape] = ACTIONS(1341), + [sym_entity_reference] = ACTIONS(1341), + [sym_numeric_character_reference] = ACTIONS(1341), + [sym_uri_autolink] = ACTIONS(1341), + [sym_email_autolink] = ACTIONS(1341), + [sym__whitespace_ge_2] = ACTIONS(1344), + [aux_sym__whitespace_token1] = ACTIONS(1347), + [sym__word_no_digit] = ACTIONS(1341), + [sym__digits] = ACTIONS(1341), + [aux_sym__newline_token1] = ACTIONS(1350), + [sym__code_span_start] = ACTIONS(1353), + [sym__emphasis_open_star] = ACTIONS(1356), + [sym__emphasis_open_underscore] = ACTIONS(1359), + [sym__emphasis_close_underscore] = ACTIONS(1362), + }, + [268] = { + [aux_sym__ignore_matching_tokens] = STATE(185), + [ts_builtin_sym_end] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_LT] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1113), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym__] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [aux_sym__html_block_1_token1] = ACTIONS(1113), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1115), + [anon_sym_LT_QMARK] = ACTIONS(1115), + [aux_sym__html_block_4_token1] = ACTIONS(1115), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1113), + [aux_sym__html_block_6_token1] = ACTIONS(1115), + [aux_sym__html_block_6_token2] = ACTIONS(1113), + [sym__open_tag_html_block] = ACTIONS(1113), + [sym__open_tag_html_block_newline] = ACTIONS(1113), + [sym__closing_tag_html_block] = ACTIONS(1113), + [sym__closing_tag_html_block_newline] = ACTIONS(1113), + [sym_backslash_escape] = ACTIONS(1113), + [sym_entity_reference] = ACTIONS(1113), + [sym_numeric_character_reference] = ACTIONS(1113), + [sym_uri_autolink] = ACTIONS(1113), + [sym_email_autolink] = ACTIONS(1113), + [sym__whitespace_ge_2] = ACTIONS(1113), + [aux_sym__whitespace_token1] = ACTIONS(1115), + [sym__word_no_digit] = ACTIONS(1113), + [sym__digits] = ACTIONS(1113), + [aux_sym__newline_token1] = ACTIONS(1113), + [sym__block_continuation] = ACTIONS(1364), + [sym__block_quote_continuation] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1113), + [sym__indented_chunk_start] = ACTIONS(1113), + [sym_atx_h1_marker] = ACTIONS(1113), + [sym_atx_h2_marker] = ACTIONS(1113), + [sym_atx_h3_marker] = ACTIONS(1113), + [sym_atx_h4_marker] = ACTIONS(1113), + [sym_atx_h5_marker] = ACTIONS(1113), + [sym_atx_h6_marker] = ACTIONS(1113), + [sym__thematic_break] = ACTIONS(1113), + [sym__list_marker_minus] = ACTIONS(1113), + [sym__list_marker_plus] = ACTIONS(1113), + [sym__list_marker_star] = ACTIONS(1113), + [sym__list_marker_parenthesis] = ACTIONS(1113), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__fenced_code_block_start_backtick] = ACTIONS(1113), + [sym__fenced_code_block_start_tilde] = ACTIONS(1113), + [sym__blank_line_start] = ACTIONS(1113), + [sym__code_span_start] = ACTIONS(1113), + [sym__emphasis_open_star] = ACTIONS(1113), + [sym__emphasis_open_underscore] = ACTIONS(1113), + [sym__last_token_whitespace] = ACTIONS(1364), + }, + [269] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [aux_sym__html_block_1_token1] = ACTIONS(1366), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1368), + [anon_sym_LT_QMARK] = ACTIONS(1368), + [aux_sym__html_block_4_token1] = ACTIONS(1368), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1366), + [aux_sym__html_block_6_token1] = ACTIONS(1368), + [aux_sym__html_block_6_token2] = ACTIONS(1366), + [sym__open_tag_html_block] = ACTIONS(1366), + [sym__open_tag_html_block_newline] = ACTIONS(1366), + [sym__closing_tag_html_block] = ACTIONS(1366), + [sym__closing_tag_html_block_newline] = ACTIONS(1366), + [sym_backslash_escape] = ACTIONS(1366), + [sym_entity_reference] = ACTIONS(1366), + [sym_numeric_character_reference] = ACTIONS(1366), + [sym_uri_autolink] = ACTIONS(1366), + [sym_email_autolink] = ACTIONS(1366), + [sym__whitespace_ge_2] = ACTIONS(1366), + [aux_sym__whitespace_token1] = ACTIONS(1368), + [sym__word_no_digit] = ACTIONS(1366), + [sym__digits] = ACTIONS(1366), + [aux_sym__newline_token1] = ACTIONS(1366), + [sym__block_close] = ACTIONS(1366), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym__code_span_start] = ACTIONS(1366), + [sym__emphasis_open_star] = ACTIONS(1366), + [sym__emphasis_open_underscore] = ACTIONS(1366), + [sym__last_token_whitespace] = ACTIONS(111), + }, + [270] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_PERCENT] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_COLON] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [aux_sym__html_block_1_token1] = ACTIONS(1370), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1372), + [anon_sym_LT_QMARK] = ACTIONS(1372), + [aux_sym__html_block_4_token1] = ACTIONS(1372), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1370), + [aux_sym__html_block_6_token1] = ACTIONS(1372), + [aux_sym__html_block_6_token2] = ACTIONS(1370), + [sym__open_tag_html_block] = ACTIONS(1370), + [sym__open_tag_html_block_newline] = ACTIONS(1370), + [sym__closing_tag_html_block] = ACTIONS(1370), + [sym__closing_tag_html_block_newline] = ACTIONS(1370), + [sym_backslash_escape] = ACTIONS(1370), + [sym_entity_reference] = ACTIONS(1370), + [sym_numeric_character_reference] = ACTIONS(1370), + [sym_uri_autolink] = ACTIONS(1370), + [sym_email_autolink] = ACTIONS(1370), + [sym__whitespace_ge_2] = ACTIONS(1370), + [aux_sym__whitespace_token1] = ACTIONS(1372), + [sym__word_no_digit] = ACTIONS(1370), + [sym__digits] = ACTIONS(1370), + [aux_sym__newline_token1] = ACTIONS(1370), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1370), + [sym__indented_chunk_start] = ACTIONS(1370), + [sym_atx_h1_marker] = ACTIONS(1370), + [sym_atx_h2_marker] = ACTIONS(1370), + [sym_atx_h3_marker] = ACTIONS(1370), + [sym_atx_h4_marker] = ACTIONS(1370), + [sym_atx_h5_marker] = ACTIONS(1370), + [sym_atx_h6_marker] = ACTIONS(1370), + [sym__thematic_break] = ACTIONS(1370), + [sym__list_marker_minus] = ACTIONS(1370), + [sym__list_marker_plus] = ACTIONS(1370), + [sym__list_marker_star] = ACTIONS(1370), + [sym__list_marker_parenthesis] = ACTIONS(1370), + [sym__list_marker_dot] = ACTIONS(1370), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), + [sym__fenced_code_block_start_backtick] = ACTIONS(1370), + [sym__fenced_code_block_start_tilde] = ACTIONS(1370), + [sym__blank_line_start] = ACTIONS(1370), + [sym__code_span_start] = ACTIONS(1370), + [sym__emphasis_open_star] = ACTIONS(1370), + [sym__emphasis_open_underscore] = ACTIONS(1370), + [sym__last_token_whitespace] = ACTIONS(93), + }, + [271] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_COLON] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1376), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [aux_sym__html_block_1_token1] = ACTIONS(1374), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1376), + [anon_sym_LT_QMARK] = ACTIONS(1376), + [aux_sym__html_block_4_token1] = ACTIONS(1376), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1374), + [aux_sym__html_block_6_token1] = ACTIONS(1376), + [aux_sym__html_block_6_token2] = ACTIONS(1374), + [sym__open_tag_html_block] = ACTIONS(1374), + [sym__open_tag_html_block_newline] = ACTIONS(1374), + [sym__closing_tag_html_block] = ACTIONS(1374), + [sym__closing_tag_html_block_newline] = ACTIONS(1374), + [sym_backslash_escape] = ACTIONS(1374), + [sym_entity_reference] = ACTIONS(1374), + [sym_numeric_character_reference] = ACTIONS(1374), + [sym_uri_autolink] = ACTIONS(1374), + [sym_email_autolink] = ACTIONS(1374), + [sym__whitespace_ge_2] = ACTIONS(1374), + [aux_sym__whitespace_token1] = ACTIONS(1376), + [sym__word_no_digit] = ACTIONS(1374), + [sym__digits] = ACTIONS(1374), + [aux_sym__newline_token1] = ACTIONS(1374), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1374), + [sym__indented_chunk_start] = ACTIONS(1374), + [sym_atx_h1_marker] = ACTIONS(1374), + [sym_atx_h2_marker] = ACTIONS(1374), + [sym_atx_h3_marker] = ACTIONS(1374), + [sym_atx_h4_marker] = ACTIONS(1374), + [sym_atx_h5_marker] = ACTIONS(1374), + [sym_atx_h6_marker] = ACTIONS(1374), + [sym__thematic_break] = ACTIONS(1374), + [sym__list_marker_minus] = ACTIONS(1374), + [sym__list_marker_plus] = ACTIONS(1374), + [sym__list_marker_star] = ACTIONS(1374), + [sym__list_marker_parenthesis] = ACTIONS(1374), + [sym__list_marker_dot] = ACTIONS(1374), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1374), + [sym__fenced_code_block_start_backtick] = ACTIONS(1374), + [sym__fenced_code_block_start_tilde] = ACTIONS(1374), + [sym__blank_line_start] = ACTIONS(1374), + [sym__code_span_start] = ACTIONS(1374), + [sym__emphasis_open_star] = ACTIONS(1374), + [sym__emphasis_open_underscore] = ACTIONS(1374), + [sym__last_token_whitespace] = ACTIONS(93), }, [272] = { - [aux_sym__ignore_matching_tokens] = STATE(278), - [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(1271), - [sym__block_quote_continuation] = ACTIONS(1271), - [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(1271), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = 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_PIPE] = 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_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1378), + [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(1378), + [sym__code_span_start] = ACTIONS(1378), + [sym__emphasis_open_star] = ACTIONS(1378), + [sym__emphasis_open_underscore] = ACTIONS(1378), + [sym__last_token_whitespace] = ACTIONS(111), }, [273] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(843), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(843), - [anon_sym_POUND] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_DOT] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_QMARK] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(843), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym__] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(843), - [aux_sym__html_block_1_token1] = ACTIONS(843), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), - [anon_sym_LT_QMARK] = ACTIONS(845), - [aux_sym__html_block_4_token1] = ACTIONS(845), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), - [aux_sym__html_block_6_token1] = ACTIONS(845), - [aux_sym__html_block_6_token2] = ACTIONS(843), - [sym__open_tag_html_block] = ACTIONS(843), - [sym__open_tag_html_block_newline] = ACTIONS(843), - [sym__closing_tag_html_block] = ACTIONS(843), - [sym__closing_tag_html_block_newline] = ACTIONS(843), - [sym_backslash_escape] = ACTIONS(843), - [sym_entity_reference] = ACTIONS(843), - [sym_numeric_character_reference] = ACTIONS(843), - [sym_uri_autolink] = ACTIONS(843), - [sym_email_autolink] = ACTIONS(843), - [sym__whitespace_ge_2] = ACTIONS(843), - [aux_sym__whitespace_token1] = ACTIONS(845), - [sym__word_no_digit] = ACTIONS(843), - [sym__digits] = ACTIONS(843), - [aux_sym__newline_token1] = ACTIONS(843), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_COLON] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1376), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [aux_sym__html_block_1_token1] = ACTIONS(1374), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1376), + [anon_sym_LT_QMARK] = ACTIONS(1376), + [aux_sym__html_block_4_token1] = ACTIONS(1376), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1374), + [aux_sym__html_block_6_token1] = ACTIONS(1376), + [aux_sym__html_block_6_token2] = ACTIONS(1374), + [sym__open_tag_html_block] = ACTIONS(1374), + [sym__open_tag_html_block_newline] = ACTIONS(1374), + [sym__closing_tag_html_block] = ACTIONS(1374), + [sym__closing_tag_html_block_newline] = ACTIONS(1374), + [sym_backslash_escape] = ACTIONS(1374), + [sym_entity_reference] = ACTIONS(1374), + [sym_numeric_character_reference] = ACTIONS(1374), + [sym_uri_autolink] = ACTIONS(1374), + [sym_email_autolink] = ACTIONS(1374), + [sym__whitespace_ge_2] = ACTIONS(1374), + [aux_sym__whitespace_token1] = ACTIONS(1376), + [sym__word_no_digit] = ACTIONS(1374), + [sym__digits] = ACTIONS(1374), + [aux_sym__newline_token1] = ACTIONS(1374), + [sym__block_close] = ACTIONS(1374), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(843), - [sym__indented_chunk_start] = ACTIONS(843), - [sym_atx_h1_marker] = ACTIONS(843), - [sym_atx_h2_marker] = ACTIONS(843), - [sym_atx_h3_marker] = ACTIONS(843), - [sym_atx_h4_marker] = ACTIONS(843), - [sym_atx_h5_marker] = ACTIONS(843), - [sym_atx_h6_marker] = ACTIONS(843), - [sym__thematic_break] = ACTIONS(843), - [sym__list_marker_minus] = ACTIONS(843), - [sym__list_marker_plus] = ACTIONS(843), - [sym__list_marker_star] = ACTIONS(843), - [sym__list_marker_parenthesis] = ACTIONS(843), - [sym__list_marker_dot] = ACTIONS(843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), - [sym__list_marker_star_dont_interrupt] = ACTIONS(843), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), - [sym__fenced_code_block_start_backtick] = ACTIONS(843), - [sym__fenced_code_block_start_tilde] = ACTIONS(843), - [sym__blank_line_start] = ACTIONS(843), - [sym__code_span_start] = ACTIONS(843), - [sym__emphasis_open_star] = ACTIONS(843), - [sym__emphasis_open_underscore] = ACTIONS(843), + [sym__block_quote_start] = ACTIONS(1374), + [sym__indented_chunk_start] = ACTIONS(1374), + [sym_atx_h1_marker] = ACTIONS(1374), + [sym_atx_h2_marker] = ACTIONS(1374), + [sym_atx_h3_marker] = ACTIONS(1374), + [sym_atx_h4_marker] = ACTIONS(1374), + [sym_atx_h5_marker] = ACTIONS(1374), + [sym_atx_h6_marker] = ACTIONS(1374), + [sym__thematic_break] = ACTIONS(1374), + [sym__list_marker_minus] = ACTIONS(1374), + [sym__list_marker_plus] = ACTIONS(1374), + [sym__list_marker_star] = ACTIONS(1374), + [sym__list_marker_parenthesis] = ACTIONS(1374), + [sym__list_marker_dot] = ACTIONS(1374), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1374), + [sym__fenced_code_block_start_backtick] = ACTIONS(1374), + [sym__fenced_code_block_start_tilde] = ACTIONS(1374), + [sym__blank_line_start] = ACTIONS(1374), + [sym__code_span_start] = ACTIONS(1374), + [sym__emphasis_open_star] = ACTIONS(1374), + [sym__emphasis_open_underscore] = ACTIONS(1374), [sym__last_token_whitespace] = ACTIONS(111), }, [274] = { - [aux_sym__ignore_matching_tokens] = STATE(104), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1035), - [aux_sym__html_block_1_token1] = ACTIONS(1035), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1037), - [anon_sym_LT_QMARK] = ACTIONS(1037), - [aux_sym__html_block_4_token1] = ACTIONS(1037), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1035), - [aux_sym__html_block_6_token1] = ACTIONS(1037), - [aux_sym__html_block_6_token2] = ACTIONS(1035), - [sym__open_tag_html_block] = ACTIONS(1035), - [sym__open_tag_html_block_newline] = ACTIONS(1035), - [sym__closing_tag_html_block] = ACTIONS(1035), - [sym__closing_tag_html_block_newline] = ACTIONS(1035), - [sym_backslash_escape] = ACTIONS(1035), - [sym_entity_reference] = ACTIONS(1035), - [sym_numeric_character_reference] = ACTIONS(1035), - [sym_uri_autolink] = ACTIONS(1035), - [sym_email_autolink] = ACTIONS(1035), - [sym__whitespace_ge_2] = ACTIONS(1035), - [aux_sym__whitespace_token1] = ACTIONS(1037), - [sym__word_no_digit] = ACTIONS(1035), - [sym__digits] = ACTIONS(1035), - [aux_sym__newline_token1] = ACTIONS(1035), - [sym__block_close] = ACTIONS(1035), - [sym__block_continuation] = ACTIONS(1273), - [sym__block_quote_continuation] = ACTIONS(1273), - [sym__block_quote_start] = ACTIONS(1035), - [sym__indented_chunk_start] = ACTIONS(1035), - [sym_atx_h1_marker] = ACTIONS(1035), - [sym_atx_h2_marker] = ACTIONS(1035), - [sym_atx_h3_marker] = ACTIONS(1035), - [sym_atx_h4_marker] = ACTIONS(1035), - [sym_atx_h5_marker] = ACTIONS(1035), - [sym_atx_h6_marker] = ACTIONS(1035), - [sym__thematic_break] = ACTIONS(1035), - [sym__list_marker_minus] = ACTIONS(1035), - [sym__list_marker_plus] = ACTIONS(1035), - [sym__list_marker_star] = ACTIONS(1035), - [sym__list_marker_parenthesis] = ACTIONS(1035), - [sym__list_marker_dot] = ACTIONS(1035), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1035), - [sym__fenced_code_block_start_backtick] = ACTIONS(1035), - [sym__fenced_code_block_start_tilde] = ACTIONS(1035), - [sym__blank_line_start] = ACTIONS(1035), - [sym__code_span_start] = ACTIONS(1035), - [sym__emphasis_open_star] = ACTIONS(1035), - [sym__emphasis_open_underscore] = ACTIONS(1035), - [sym__last_token_whitespace] = ACTIONS(1273), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_PERCENT] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_COLON] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [aux_sym__html_block_1_token1] = ACTIONS(1370), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1372), + [anon_sym_LT_QMARK] = ACTIONS(1372), + [aux_sym__html_block_4_token1] = ACTIONS(1372), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1370), + [aux_sym__html_block_6_token1] = ACTIONS(1372), + [aux_sym__html_block_6_token2] = ACTIONS(1370), + [sym__open_tag_html_block] = ACTIONS(1370), + [sym__open_tag_html_block_newline] = ACTIONS(1370), + [sym__closing_tag_html_block] = ACTIONS(1370), + [sym__closing_tag_html_block_newline] = ACTIONS(1370), + [sym_backslash_escape] = ACTIONS(1370), + [sym_entity_reference] = ACTIONS(1370), + [sym_numeric_character_reference] = ACTIONS(1370), + [sym_uri_autolink] = ACTIONS(1370), + [sym_email_autolink] = ACTIONS(1370), + [sym__whitespace_ge_2] = ACTIONS(1370), + [aux_sym__whitespace_token1] = ACTIONS(1372), + [sym__word_no_digit] = ACTIONS(1370), + [sym__digits] = ACTIONS(1370), + [aux_sym__newline_token1] = ACTIONS(1370), + [sym__block_close] = ACTIONS(1370), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1370), + [sym__indented_chunk_start] = ACTIONS(1370), + [sym_atx_h1_marker] = ACTIONS(1370), + [sym_atx_h2_marker] = ACTIONS(1370), + [sym_atx_h3_marker] = ACTIONS(1370), + [sym_atx_h4_marker] = ACTIONS(1370), + [sym_atx_h5_marker] = ACTIONS(1370), + [sym_atx_h6_marker] = ACTIONS(1370), + [sym__thematic_break] = ACTIONS(1370), + [sym__list_marker_minus] = ACTIONS(1370), + [sym__list_marker_plus] = ACTIONS(1370), + [sym__list_marker_star] = ACTIONS(1370), + [sym__list_marker_parenthesis] = ACTIONS(1370), + [sym__list_marker_dot] = ACTIONS(1370), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), + [sym__fenced_code_block_start_backtick] = ACTIONS(1370), + [sym__fenced_code_block_start_tilde] = ACTIONS(1370), + [sym__blank_line_start] = ACTIONS(1370), + [sym__code_span_start] = ACTIONS(1370), + [sym__emphasis_open_star] = ACTIONS(1370), + [sym__emphasis_open_underscore] = ACTIONS(1370), + [sym__last_token_whitespace] = ACTIONS(111), }, [275] = { - [aux_sym__ignore_matching_tokens] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_BSLASH] = ACTIONS(851), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym__] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [aux_sym__html_block_1_token1] = ACTIONS(849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), - [anon_sym_LT_QMARK] = ACTIONS(851), - [aux_sym__html_block_4_token1] = ACTIONS(851), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), - [aux_sym__html_block_6_token1] = ACTIONS(851), - [aux_sym__html_block_6_token2] = ACTIONS(849), - [sym__open_tag_html_block] = ACTIONS(849), - [sym__open_tag_html_block_newline] = ACTIONS(849), - [sym__closing_tag_html_block] = ACTIONS(849), - [sym__closing_tag_html_block_newline] = ACTIONS(849), - [sym_backslash_escape] = ACTIONS(849), - [sym_entity_reference] = ACTIONS(849), - [sym_numeric_character_reference] = ACTIONS(849), - [sym_uri_autolink] = ACTIONS(849), - [sym_email_autolink] = ACTIONS(849), - [sym__whitespace_ge_2] = ACTIONS(849), - [aux_sym__whitespace_token1] = ACTIONS(851), - [sym__word_no_digit] = ACTIONS(849), - [sym__digits] = ACTIONS(849), - [aux_sym__newline_token1] = ACTIONS(849), - [sym__block_continuation] = ACTIONS(1275), - [sym__block_quote_continuation] = ACTIONS(1275), - [sym__block_quote_start] = ACTIONS(849), - [sym__indented_chunk_start] = ACTIONS(849), - [sym_atx_h1_marker] = ACTIONS(849), - [sym_atx_h2_marker] = ACTIONS(849), - [sym_atx_h3_marker] = ACTIONS(849), - [sym_atx_h4_marker] = ACTIONS(849), - [sym_atx_h5_marker] = ACTIONS(849), - [sym_atx_h6_marker] = ACTIONS(849), - [sym__thematic_break] = ACTIONS(849), - [sym__list_marker_minus] = ACTIONS(849), - [sym__list_marker_plus] = ACTIONS(849), - [sym__list_marker_star] = ACTIONS(849), - [sym__list_marker_parenthesis] = ACTIONS(849), - [sym__list_marker_dot] = ACTIONS(849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), - [sym__fenced_code_block_start_backtick] = ACTIONS(849), - [sym__fenced_code_block_start_tilde] = ACTIONS(849), - [sym__blank_line_start] = ACTIONS(849), - [sym__code_span_start] = ACTIONS(849), - [sym__emphasis_open_star] = ACTIONS(849), - [sym__emphasis_open_underscore] = ACTIONS(849), - [sym__last_token_whitespace] = ACTIONS(1275), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_COLON] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym__] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [aux_sym__html_block_1_token1] = ACTIONS(1068), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1070), + [anon_sym_LT_QMARK] = ACTIONS(1070), + [aux_sym__html_block_4_token1] = ACTIONS(1070), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1068), + [aux_sym__html_block_6_token1] = ACTIONS(1070), + [aux_sym__html_block_6_token2] = ACTIONS(1068), + [sym__open_tag_html_block] = ACTIONS(1068), + [sym__open_tag_html_block_newline] = ACTIONS(1068), + [sym__closing_tag_html_block] = ACTIONS(1068), + [sym__closing_tag_html_block_newline] = ACTIONS(1068), + [sym_backslash_escape] = ACTIONS(1068), + [sym_entity_reference] = ACTIONS(1068), + [sym_numeric_character_reference] = ACTIONS(1068), + [sym_uri_autolink] = ACTIONS(1068), + [sym_email_autolink] = ACTIONS(1068), + [sym__whitespace_ge_2] = ACTIONS(1068), + [aux_sym__whitespace_token1] = ACTIONS(1070), + [sym__word_no_digit] = ACTIONS(1068), + [sym__digits] = ACTIONS(1068), + [aux_sym__newline_token1] = ACTIONS(1068), + [sym__block_close] = ACTIONS(1068), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1068), + [sym__indented_chunk_start] = ACTIONS(1068), + [sym_atx_h1_marker] = ACTIONS(1068), + [sym_atx_h2_marker] = ACTIONS(1068), + [sym_atx_h3_marker] = ACTIONS(1068), + [sym_atx_h4_marker] = ACTIONS(1068), + [sym_atx_h5_marker] = ACTIONS(1068), + [sym_atx_h6_marker] = ACTIONS(1068), + [sym__thematic_break] = ACTIONS(1068), + [sym__list_marker_minus] = ACTIONS(1068), + [sym__list_marker_plus] = ACTIONS(1068), + [sym__list_marker_star] = ACTIONS(1068), + [sym__list_marker_parenthesis] = ACTIONS(1068), + [sym__list_marker_dot] = ACTIONS(1068), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1068), + [sym__fenced_code_block_start_backtick] = ACTIONS(1068), + [sym__fenced_code_block_start_tilde] = ACTIONS(1068), + [sym__blank_line_start] = ACTIONS(1068), + [sym__code_span_start] = ACTIONS(1068), + [sym__emphasis_open_star] = ACTIONS(1068), + [sym__emphasis_open_underscore] = ACTIONS(1068), + [sym__last_token_whitespace] = ACTIONS(111), }, [276] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1035), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1035), - [aux_sym__html_block_1_token1] = ACTIONS(1035), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1037), - [anon_sym_LT_QMARK] = ACTIONS(1037), - [aux_sym__html_block_4_token1] = ACTIONS(1037), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1035), - [aux_sym__html_block_6_token1] = ACTIONS(1037), - [aux_sym__html_block_6_token2] = ACTIONS(1035), - [sym__open_tag_html_block] = ACTIONS(1035), - [sym__open_tag_html_block_newline] = ACTIONS(1035), - [sym__closing_tag_html_block] = ACTIONS(1035), - [sym__closing_tag_html_block_newline] = ACTIONS(1035), - [sym_backslash_escape] = ACTIONS(1035), - [sym_entity_reference] = ACTIONS(1035), - [sym_numeric_character_reference] = ACTIONS(1035), - [sym_uri_autolink] = ACTIONS(1035), - [sym_email_autolink] = ACTIONS(1035), - [sym__whitespace_ge_2] = ACTIONS(1035), - [aux_sym__whitespace_token1] = ACTIONS(1037), - [sym__word_no_digit] = ACTIONS(1035), - [sym__digits] = ACTIONS(1035), - [aux_sym__newline_token1] = ACTIONS(1035), - [sym__block_close] = ACTIONS(1035), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(1035), - [sym__indented_chunk_start] = ACTIONS(1035), - [sym_atx_h1_marker] = ACTIONS(1035), - [sym_atx_h2_marker] = ACTIONS(1035), - [sym_atx_h3_marker] = ACTIONS(1035), - [sym_atx_h4_marker] = ACTIONS(1035), - [sym_atx_h5_marker] = ACTIONS(1035), - [sym_atx_h6_marker] = ACTIONS(1035), - [sym__thematic_break] = ACTIONS(1035), - [sym__list_marker_minus] = ACTIONS(1035), - [sym__list_marker_plus] = ACTIONS(1035), - [sym__list_marker_star] = ACTIONS(1035), - [sym__list_marker_parenthesis] = ACTIONS(1035), - [sym__list_marker_dot] = ACTIONS(1035), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1035), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1035), - [sym__fenced_code_block_start_backtick] = ACTIONS(1035), - [sym__fenced_code_block_start_tilde] = ACTIONS(1035), - [sym__blank_line_start] = ACTIONS(1035), - [sym__code_span_start] = ACTIONS(1035), - [sym__emphasis_open_star] = ACTIONS(1035), - [sym__emphasis_open_underscore] = ACTIONS(1035), - [sym__last_token_whitespace] = ACTIONS(115), + [aux_sym__ignore_matching_tokens] = STATE(248), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_COLON] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym__] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1068), + [aux_sym__html_block_1_token1] = ACTIONS(1068), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1070), + [anon_sym_LT_QMARK] = ACTIONS(1070), + [aux_sym__html_block_4_token1] = ACTIONS(1070), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1068), + [aux_sym__html_block_6_token1] = ACTIONS(1070), + [aux_sym__html_block_6_token2] = ACTIONS(1068), + [sym__open_tag_html_block] = ACTIONS(1068), + [sym__open_tag_html_block_newline] = ACTIONS(1068), + [sym__closing_tag_html_block] = ACTIONS(1068), + [sym__closing_tag_html_block_newline] = ACTIONS(1068), + [sym_backslash_escape] = ACTIONS(1068), + [sym_entity_reference] = ACTIONS(1068), + [sym_numeric_character_reference] = ACTIONS(1068), + [sym_uri_autolink] = ACTIONS(1068), + [sym_email_autolink] = ACTIONS(1068), + [sym__whitespace_ge_2] = ACTIONS(1068), + [aux_sym__whitespace_token1] = ACTIONS(1070), + [sym__word_no_digit] = ACTIONS(1068), + [sym__digits] = ACTIONS(1068), + [aux_sym__newline_token1] = ACTIONS(1068), + [sym__block_close] = ACTIONS(1068), + [sym__block_continuation] = ACTIONS(1382), + [sym__block_quote_continuation] = ACTIONS(1382), + [sym__block_quote_start] = ACTIONS(1068), + [sym__indented_chunk_start] = ACTIONS(1068), + [sym_atx_h1_marker] = ACTIONS(1068), + [sym_atx_h2_marker] = ACTIONS(1068), + [sym_atx_h3_marker] = ACTIONS(1068), + [sym_atx_h4_marker] = ACTIONS(1068), + [sym_atx_h5_marker] = ACTIONS(1068), + [sym_atx_h6_marker] = ACTIONS(1068), + [sym__thematic_break] = ACTIONS(1068), + [sym__list_marker_minus] = ACTIONS(1068), + [sym__list_marker_plus] = ACTIONS(1068), + [sym__list_marker_star] = ACTIONS(1068), + [sym__list_marker_parenthesis] = ACTIONS(1068), + [sym__list_marker_dot] = ACTIONS(1068), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1068), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1068), + [sym__fenced_code_block_start_backtick] = ACTIONS(1068), + [sym__fenced_code_block_start_tilde] = ACTIONS(1068), + [sym__blank_line_start] = ACTIONS(1068), + [sym__code_span_start] = ACTIONS(1068), + [sym__emphasis_open_star] = ACTIONS(1068), + [sym__emphasis_open_underscore] = ACTIONS(1068), + [sym__last_token_whitespace] = ACTIONS(1382), }, [277] = { - [aux_sym__ignore_matching_tokens] = STATE(239), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_BSLASH] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1027), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1027), - [aux_sym__html_block_1_token1] = ACTIONS(1027), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1029), - [anon_sym_LT_QMARK] = ACTIONS(1029), - [aux_sym__html_block_4_token1] = ACTIONS(1029), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1027), - [aux_sym__html_block_6_token1] = ACTIONS(1029), - [aux_sym__html_block_6_token2] = ACTIONS(1027), - [sym__open_tag_html_block] = ACTIONS(1027), - [sym__open_tag_html_block_newline] = ACTIONS(1027), - [sym__closing_tag_html_block] = ACTIONS(1027), - [sym__closing_tag_html_block_newline] = ACTIONS(1027), - [sym_backslash_escape] = ACTIONS(1027), - [sym_entity_reference] = ACTIONS(1027), - [sym_numeric_character_reference] = ACTIONS(1027), - [sym_uri_autolink] = ACTIONS(1027), - [sym_email_autolink] = ACTIONS(1027), - [sym__whitespace_ge_2] = ACTIONS(1027), - [aux_sym__whitespace_token1] = ACTIONS(1029), - [sym__word_no_digit] = ACTIONS(1027), - [sym__digits] = ACTIONS(1027), - [aux_sym__newline_token1] = ACTIONS(1027), - [sym__block_close] = ACTIONS(1027), - [sym__block_continuation] = ACTIONS(1277), - [sym__block_quote_continuation] = ACTIONS(1277), - [sym__block_quote_start] = ACTIONS(1027), - [sym__indented_chunk_start] = ACTIONS(1027), - [sym_atx_h1_marker] = ACTIONS(1027), - [sym_atx_h2_marker] = ACTIONS(1027), - [sym_atx_h3_marker] = ACTIONS(1027), - [sym_atx_h4_marker] = ACTIONS(1027), - [sym_atx_h5_marker] = ACTIONS(1027), - [sym_atx_h6_marker] = ACTIONS(1027), - [sym__thematic_break] = ACTIONS(1027), - [sym__list_marker_minus] = ACTIONS(1027), - [sym__list_marker_plus] = ACTIONS(1027), - [sym__list_marker_star] = ACTIONS(1027), - [sym__list_marker_parenthesis] = ACTIONS(1027), - [sym__list_marker_dot] = ACTIONS(1027), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1027), - [sym__fenced_code_block_start_backtick] = ACTIONS(1027), - [sym__fenced_code_block_start_tilde] = ACTIONS(1027), - [sym__blank_line_start] = ACTIONS(1027), - [sym__code_span_start] = ACTIONS(1027), - [sym__emphasis_open_star] = ACTIONS(1027), - [sym__emphasis_open_underscore] = ACTIONS(1027), - [sym__last_token_whitespace] = ACTIONS(1277), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [aux_sym__html_block_1_token1] = ACTIONS(1080), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1082), + [anon_sym_LT_QMARK] = ACTIONS(1082), + [aux_sym__html_block_4_token1] = ACTIONS(1082), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1080), + [aux_sym__html_block_6_token1] = ACTIONS(1082), + [aux_sym__html_block_6_token2] = ACTIONS(1080), + [sym__open_tag_html_block] = ACTIONS(1080), + [sym__open_tag_html_block_newline] = ACTIONS(1080), + [sym__closing_tag_html_block] = ACTIONS(1080), + [sym__closing_tag_html_block_newline] = ACTIONS(1080), + [sym_backslash_escape] = ACTIONS(1080), + [sym_entity_reference] = ACTIONS(1080), + [sym_numeric_character_reference] = ACTIONS(1080), + [sym_uri_autolink] = ACTIONS(1080), + [sym_email_autolink] = ACTIONS(1080), + [sym__whitespace_ge_2] = ACTIONS(1080), + [aux_sym__whitespace_token1] = ACTIONS(1082), + [sym__word_no_digit] = ACTIONS(1080), + [sym__digits] = ACTIONS(1080), + [aux_sym__newline_token1] = ACTIONS(1080), + [sym__block_close] = ACTIONS(1080), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1080), + [sym__indented_chunk_start] = ACTIONS(1080), + [sym_atx_h1_marker] = ACTIONS(1080), + [sym_atx_h2_marker] = ACTIONS(1080), + [sym_atx_h3_marker] = ACTIONS(1080), + [sym_atx_h4_marker] = ACTIONS(1080), + [sym_atx_h5_marker] = ACTIONS(1080), + [sym_atx_h6_marker] = ACTIONS(1080), + [sym__thematic_break] = ACTIONS(1080), + [sym__list_marker_minus] = ACTIONS(1080), + [sym__list_marker_plus] = ACTIONS(1080), + [sym__list_marker_star] = ACTIONS(1080), + [sym__list_marker_parenthesis] = ACTIONS(1080), + [sym__list_marker_dot] = ACTIONS(1080), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1080), + [sym__fenced_code_block_start_backtick] = ACTIONS(1080), + [sym__fenced_code_block_start_tilde] = ACTIONS(1080), + [sym__blank_line_start] = ACTIONS(1080), + [sym__code_span_start] = ACTIONS(1080), + [sym__emphasis_open_star] = ACTIONS(1080), + [sym__emphasis_open_underscore] = ACTIONS(1080), + [sym__last_token_whitespace] = ACTIONS(111), }, [278] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_BSLASH] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1027), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1027), - [aux_sym__html_block_1_token1] = ACTIONS(1027), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1029), - [anon_sym_LT_QMARK] = ACTIONS(1029), - [aux_sym__html_block_4_token1] = ACTIONS(1029), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1027), - [aux_sym__html_block_6_token1] = ACTIONS(1029), - [aux_sym__html_block_6_token2] = ACTIONS(1027), - [sym__open_tag_html_block] = ACTIONS(1027), - [sym__open_tag_html_block_newline] = ACTIONS(1027), - [sym__closing_tag_html_block] = ACTIONS(1027), - [sym__closing_tag_html_block_newline] = ACTIONS(1027), - [sym_backslash_escape] = ACTIONS(1027), - [sym_entity_reference] = ACTIONS(1027), - [sym_numeric_character_reference] = ACTIONS(1027), - [sym_uri_autolink] = ACTIONS(1027), - [sym_email_autolink] = ACTIONS(1027), - [sym__whitespace_ge_2] = ACTIONS(1027), - [aux_sym__whitespace_token1] = ACTIONS(1029), - [sym__word_no_digit] = ACTIONS(1027), - [sym__digits] = ACTIONS(1027), - [aux_sym__newline_token1] = ACTIONS(1027), - [sym__block_close] = ACTIONS(1027), - [sym__block_continuation] = ACTIONS(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(1027), - [sym__indented_chunk_start] = ACTIONS(1027), - [sym_atx_h1_marker] = ACTIONS(1027), - [sym_atx_h2_marker] = ACTIONS(1027), - [sym_atx_h3_marker] = ACTIONS(1027), - [sym_atx_h4_marker] = ACTIONS(1027), - [sym_atx_h5_marker] = ACTIONS(1027), - [sym_atx_h6_marker] = ACTIONS(1027), - [sym__thematic_break] = ACTIONS(1027), - [sym__list_marker_minus] = ACTIONS(1027), - [sym__list_marker_plus] = ACTIONS(1027), - [sym__list_marker_star] = ACTIONS(1027), - [sym__list_marker_parenthesis] = ACTIONS(1027), - [sym__list_marker_dot] = ACTIONS(1027), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1027), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1027), - [sym__fenced_code_block_start_backtick] = ACTIONS(1027), - [sym__fenced_code_block_start_tilde] = ACTIONS(1027), - [sym__blank_line_start] = ACTIONS(1027), - [sym__code_span_start] = ACTIONS(1027), - [sym__emphasis_open_star] = ACTIONS(1027), - [sym__emphasis_open_underscore] = ACTIONS(1027), - [sym__last_token_whitespace] = ACTIONS(115), + [aux_sym__ignore_matching_tokens] = STATE(108), + [ts_builtin_sym_end] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_COMMA] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1234), + [anon_sym__] = ACTIONS(1234), + [anon_sym_BQUOTE] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [aux_sym__html_block_1_token1] = ACTIONS(1234), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1236), + [anon_sym_LT_QMARK] = ACTIONS(1236), + [aux_sym__html_block_4_token1] = ACTIONS(1236), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1234), + [aux_sym__html_block_6_token1] = ACTIONS(1236), + [aux_sym__html_block_6_token2] = ACTIONS(1234), + [sym__open_tag_html_block] = ACTIONS(1234), + [sym__open_tag_html_block_newline] = ACTIONS(1234), + [sym__closing_tag_html_block] = ACTIONS(1234), + [sym__closing_tag_html_block_newline] = ACTIONS(1234), + [sym_backslash_escape] = ACTIONS(1234), + [sym_entity_reference] = ACTIONS(1234), + [sym_numeric_character_reference] = ACTIONS(1234), + [sym_uri_autolink] = ACTIONS(1234), + [sym_email_autolink] = ACTIONS(1234), + [sym__whitespace_ge_2] = ACTIONS(1234), + [aux_sym__whitespace_token1] = ACTIONS(1236), + [sym__word_no_digit] = ACTIONS(1234), + [sym__digits] = ACTIONS(1234), + [aux_sym__newline_token1] = ACTIONS(1234), + [sym__block_continuation] = ACTIONS(1384), + [sym__block_quote_continuation] = ACTIONS(1384), + [sym__block_quote_start] = ACTIONS(1234), + [sym__indented_chunk_start] = ACTIONS(1234), + [sym_atx_h1_marker] = ACTIONS(1234), + [sym_atx_h2_marker] = ACTIONS(1234), + [sym_atx_h3_marker] = ACTIONS(1234), + [sym_atx_h4_marker] = ACTIONS(1234), + [sym_atx_h5_marker] = ACTIONS(1234), + [sym_atx_h6_marker] = ACTIONS(1234), + [sym__thematic_break] = ACTIONS(1234), + [sym__list_marker_minus] = ACTIONS(1234), + [sym__list_marker_plus] = ACTIONS(1234), + [sym__list_marker_star] = ACTIONS(1234), + [sym__list_marker_parenthesis] = ACTIONS(1234), + [sym__list_marker_dot] = ACTIONS(1234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1234), + [sym__fenced_code_block_start_backtick] = ACTIONS(1234), + [sym__fenced_code_block_start_tilde] = ACTIONS(1234), + [sym__blank_line_start] = ACTIONS(1234), + [sym__code_span_start] = ACTIONS(1234), + [sym__emphasis_open_star] = ACTIONS(1234), + [sym__emphasis_open_underscore] = ACTIONS(1234), + [sym__last_token_whitespace] = ACTIONS(1384), }, [279] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [anon_sym_SQUOTE] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LT] = ACTIONS(817), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_AT] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym__] = ACTIONS(815), - [anon_sym_BQUOTE] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [aux_sym__html_block_1_token1] = ACTIONS(815), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(817), - [anon_sym_LT_QMARK] = ACTIONS(817), - [aux_sym__html_block_4_token1] = ACTIONS(817), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(815), - [aux_sym__html_block_6_token1] = ACTIONS(817), - [aux_sym__html_block_6_token2] = ACTIONS(815), - [sym__open_tag_html_block] = ACTIONS(815), - [sym__open_tag_html_block_newline] = ACTIONS(815), - [sym__closing_tag_html_block] = ACTIONS(815), - [sym__closing_tag_html_block_newline] = ACTIONS(815), - [sym_backslash_escape] = ACTIONS(815), - [sym_entity_reference] = ACTIONS(815), - [sym_numeric_character_reference] = ACTIONS(815), - [sym_uri_autolink] = ACTIONS(815), - [sym_email_autolink] = ACTIONS(815), - [sym__whitespace_ge_2] = ACTIONS(815), - [aux_sym__whitespace_token1] = ACTIONS(817), - [sym__word_no_digit] = ACTIONS(815), - [sym__digits] = ACTIONS(815), - [aux_sym__newline_token1] = ACTIONS(815), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(815), - [sym__indented_chunk_start] = ACTIONS(815), - [sym_atx_h1_marker] = ACTIONS(815), - [sym_atx_h2_marker] = ACTIONS(815), - [sym_atx_h3_marker] = ACTIONS(815), - [sym_atx_h4_marker] = ACTIONS(815), - [sym_atx_h5_marker] = ACTIONS(815), - [sym_atx_h6_marker] = ACTIONS(815), - [sym__thematic_break] = ACTIONS(815), - [sym__list_marker_minus] = ACTIONS(815), - [sym__list_marker_plus] = ACTIONS(815), - [sym__list_marker_star] = ACTIONS(815), - [sym__list_marker_parenthesis] = ACTIONS(815), - [sym__list_marker_dot] = ACTIONS(815), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(815), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(815), - [sym__list_marker_star_dont_interrupt] = ACTIONS(815), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(815), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(815), - [sym__fenced_code_block_start_backtick] = ACTIONS(815), - [sym__fenced_code_block_start_tilde] = ACTIONS(815), - [sym__blank_line_start] = ACTIONS(815), - [sym__code_span_start] = ACTIONS(815), - [sym__emphasis_open_star] = ACTIONS(815), - [sym__emphasis_open_underscore] = ACTIONS(815), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(243), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [aux_sym__html_block_1_token1] = ACTIONS(1080), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1082), + [anon_sym_LT_QMARK] = ACTIONS(1082), + [aux_sym__html_block_4_token1] = ACTIONS(1082), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1080), + [aux_sym__html_block_6_token1] = ACTIONS(1082), + [aux_sym__html_block_6_token2] = ACTIONS(1080), + [sym__open_tag_html_block] = ACTIONS(1080), + [sym__open_tag_html_block_newline] = ACTIONS(1080), + [sym__closing_tag_html_block] = ACTIONS(1080), + [sym__closing_tag_html_block_newline] = ACTIONS(1080), + [sym_backslash_escape] = ACTIONS(1080), + [sym_entity_reference] = ACTIONS(1080), + [sym_numeric_character_reference] = ACTIONS(1080), + [sym_uri_autolink] = ACTIONS(1080), + [sym_email_autolink] = ACTIONS(1080), + [sym__whitespace_ge_2] = ACTIONS(1080), + [aux_sym__whitespace_token1] = ACTIONS(1082), + [sym__word_no_digit] = ACTIONS(1080), + [sym__digits] = ACTIONS(1080), + [aux_sym__newline_token1] = ACTIONS(1080), + [sym__block_close] = ACTIONS(1080), + [sym__block_continuation] = ACTIONS(1386), + [sym__block_quote_continuation] = ACTIONS(1386), + [sym__block_quote_start] = ACTIONS(1080), + [sym__indented_chunk_start] = ACTIONS(1080), + [sym_atx_h1_marker] = ACTIONS(1080), + [sym_atx_h2_marker] = ACTIONS(1080), + [sym_atx_h3_marker] = ACTIONS(1080), + [sym_atx_h4_marker] = ACTIONS(1080), + [sym_atx_h5_marker] = ACTIONS(1080), + [sym_atx_h6_marker] = ACTIONS(1080), + [sym__thematic_break] = ACTIONS(1080), + [sym__list_marker_minus] = ACTIONS(1080), + [sym__list_marker_plus] = ACTIONS(1080), + [sym__list_marker_star] = ACTIONS(1080), + [sym__list_marker_parenthesis] = ACTIONS(1080), + [sym__list_marker_dot] = ACTIONS(1080), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1080), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1080), + [sym__fenced_code_block_start_backtick] = ACTIONS(1080), + [sym__fenced_code_block_start_tilde] = ACTIONS(1080), + [sym__blank_line_start] = ACTIONS(1080), + [sym__code_span_start] = ACTIONS(1080), + [sym__emphasis_open_star] = ACTIONS(1080), + [sym__emphasis_open_underscore] = ACTIONS(1080), + [sym__last_token_whitespace] = ACTIONS(1386), }, [280] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_PERCENT] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_RBRACK] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym__] = ACTIONS(819), - [anon_sym_BQUOTE] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(819), - [aux_sym__html_block_1_token1] = ACTIONS(819), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(821), - [anon_sym_LT_QMARK] = ACTIONS(821), - [aux_sym__html_block_4_token1] = ACTIONS(821), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(819), - [aux_sym__html_block_6_token1] = ACTIONS(821), - [aux_sym__html_block_6_token2] = ACTIONS(819), - [sym__open_tag_html_block] = ACTIONS(819), - [sym__open_tag_html_block_newline] = ACTIONS(819), - [sym__closing_tag_html_block] = ACTIONS(819), - [sym__closing_tag_html_block_newline] = ACTIONS(819), - [sym_backslash_escape] = ACTIONS(819), - [sym_entity_reference] = ACTIONS(819), - [sym_numeric_character_reference] = ACTIONS(819), - [sym_uri_autolink] = ACTIONS(819), - [sym_email_autolink] = ACTIONS(819), - [sym__whitespace_ge_2] = ACTIONS(819), - [aux_sym__whitespace_token1] = ACTIONS(821), - [sym__word_no_digit] = ACTIONS(819), - [sym__digits] = ACTIONS(819), - [aux_sym__newline_token1] = ACTIONS(819), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(819), - [sym__indented_chunk_start] = ACTIONS(819), - [sym_atx_h1_marker] = ACTIONS(819), - [sym_atx_h2_marker] = ACTIONS(819), - [sym_atx_h3_marker] = ACTIONS(819), - [sym_atx_h4_marker] = ACTIONS(819), - [sym_atx_h5_marker] = ACTIONS(819), - [sym_atx_h6_marker] = ACTIONS(819), - [sym__thematic_break] = ACTIONS(819), - [sym__list_marker_minus] = ACTIONS(819), - [sym__list_marker_plus] = ACTIONS(819), - [sym__list_marker_star] = ACTIONS(819), - [sym__list_marker_parenthesis] = ACTIONS(819), - [sym__list_marker_dot] = ACTIONS(819), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(819), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(819), - [sym__list_marker_star_dont_interrupt] = ACTIONS(819), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(819), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(819), - [sym__fenced_code_block_start_backtick] = ACTIONS(819), - [sym__fenced_code_block_start_tilde] = ACTIONS(819), - [sym__blank_line_start] = ACTIONS(819), - [sym__code_span_start] = ACTIONS(819), - [sym__emphasis_open_star] = ACTIONS(819), - [sym__emphasis_open_underscore] = ACTIONS(819), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_COMMA] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_RBRACK] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1234), + [anon_sym__] = ACTIONS(1234), + [anon_sym_BQUOTE] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [aux_sym__html_block_1_token1] = ACTIONS(1234), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1236), + [anon_sym_LT_QMARK] = ACTIONS(1236), + [aux_sym__html_block_4_token1] = ACTIONS(1236), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1234), + [aux_sym__html_block_6_token1] = ACTIONS(1236), + [aux_sym__html_block_6_token2] = ACTIONS(1234), + [sym__open_tag_html_block] = ACTIONS(1234), + [sym__open_tag_html_block_newline] = ACTIONS(1234), + [sym__closing_tag_html_block] = ACTIONS(1234), + [sym__closing_tag_html_block_newline] = ACTIONS(1234), + [sym_backslash_escape] = ACTIONS(1234), + [sym_entity_reference] = ACTIONS(1234), + [sym_numeric_character_reference] = ACTIONS(1234), + [sym_uri_autolink] = ACTIONS(1234), + [sym_email_autolink] = ACTIONS(1234), + [sym__whitespace_ge_2] = ACTIONS(1234), + [aux_sym__whitespace_token1] = ACTIONS(1236), + [sym__word_no_digit] = ACTIONS(1234), + [sym__digits] = ACTIONS(1234), + [aux_sym__newline_token1] = ACTIONS(1234), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1234), + [sym__indented_chunk_start] = ACTIONS(1234), + [sym_atx_h1_marker] = ACTIONS(1234), + [sym_atx_h2_marker] = ACTIONS(1234), + [sym_atx_h3_marker] = ACTIONS(1234), + [sym_atx_h4_marker] = ACTIONS(1234), + [sym_atx_h5_marker] = ACTIONS(1234), + [sym_atx_h6_marker] = ACTIONS(1234), + [sym__thematic_break] = ACTIONS(1234), + [sym__list_marker_minus] = ACTIONS(1234), + [sym__list_marker_plus] = ACTIONS(1234), + [sym__list_marker_star] = ACTIONS(1234), + [sym__list_marker_parenthesis] = ACTIONS(1234), + [sym__list_marker_dot] = ACTIONS(1234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1234), + [sym__fenced_code_block_start_backtick] = ACTIONS(1234), + [sym__fenced_code_block_start_tilde] = ACTIONS(1234), + [sym__blank_line_start] = ACTIONS(1234), + [sym__code_span_start] = ACTIONS(1234), + [sym__emphasis_open_star] = ACTIONS(1234), + [sym__emphasis_open_underscore] = ACTIONS(1234), + [sym__last_token_whitespace] = ACTIONS(93), }, [281] = { - [sym__soft_line_break] = STATE(109), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(109), - [sym_full_reference_link] = STATE(109), - [sym_collapsed_reference_link] = STATE(109), - [sym_inline_link] = STATE(109), - [sym_image] = STATE(109), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(109), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(109), - [sym__whitespace] = STATE(109), - [sym__word] = STATE(109), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(109), - [aux_sym__inline_no_star] = STATE(109), - [sym__text_inline_no_star] = STATE(109), - [sym__emphasis_star] = STATE(718), - [sym__strong_emphasis_star] = STATE(109), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(109), - [sym__code_span] = STATE(109), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_PERCENT] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_QMARK] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_BSLASH] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym__] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1297), - [anon_sym_LT_QMARK] = ACTIONS(1300), - [aux_sym__html_block_4_token1] = ACTIONS(1303), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1306), - [sym_backslash_escape] = ACTIONS(1309), - [sym_entity_reference] = ACTIONS(1309), - [sym_numeric_character_reference] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1309), - [sym_email_autolink] = ACTIONS(1309), - [sym__whitespace_ge_2] = ACTIONS(1312), - [aux_sym__whitespace_token1] = ACTIONS(1315), - [sym__word_no_digit] = ACTIONS(1309), - [sym__digits] = ACTIONS(1309), - [aux_sym__newline_token1] = ACTIONS(1318), - [sym__code_span_start] = ACTIONS(1321), - [sym__emphasis_open_star] = ACTIONS(1324), - [sym__emphasis_open_underscore] = ACTIONS(1327), - [sym__last_token_punctuation] = ACTIONS(1330), - }, - [282] = { - [aux_sym__ignore_matching_tokens] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_COMMA] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_BSLASH] = ACTIONS(851), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym__] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [aux_sym__html_block_1_token1] = ACTIONS(849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), - [anon_sym_LT_QMARK] = ACTIONS(851), - [aux_sym__html_block_4_token1] = ACTIONS(851), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), - [aux_sym__html_block_6_token1] = ACTIONS(851), - [aux_sym__html_block_6_token2] = ACTIONS(849), - [sym__open_tag_html_block] = ACTIONS(849), - [sym__open_tag_html_block_newline] = ACTIONS(849), - [sym__closing_tag_html_block] = ACTIONS(849), - [sym__closing_tag_html_block_newline] = ACTIONS(849), - [sym_backslash_escape] = ACTIONS(849), - [sym_entity_reference] = ACTIONS(849), - [sym_numeric_character_reference] = ACTIONS(849), - [sym_uri_autolink] = ACTIONS(849), - [sym_email_autolink] = ACTIONS(849), - [sym__whitespace_ge_2] = ACTIONS(849), - [aux_sym__whitespace_token1] = ACTIONS(851), - [sym__word_no_digit] = ACTIONS(849), - [sym__digits] = ACTIONS(849), - [aux_sym__newline_token1] = ACTIONS(849), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym__] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [aux_sym__html_block_1_token1] = ACTIONS(1090), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1092), + [anon_sym_LT_QMARK] = ACTIONS(1092), + [aux_sym__html_block_4_token1] = ACTIONS(1092), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1090), + [aux_sym__html_block_6_token1] = ACTIONS(1092), + [aux_sym__html_block_6_token2] = ACTIONS(1090), + [sym__open_tag_html_block] = ACTIONS(1090), + [sym__open_tag_html_block_newline] = ACTIONS(1090), + [sym__closing_tag_html_block] = ACTIONS(1090), + [sym__closing_tag_html_block_newline] = ACTIONS(1090), + [sym_backslash_escape] = ACTIONS(1090), + [sym_entity_reference] = ACTIONS(1090), + [sym_numeric_character_reference] = ACTIONS(1090), + [sym_uri_autolink] = ACTIONS(1090), + [sym_email_autolink] = ACTIONS(1090), + [sym__whitespace_ge_2] = ACTIONS(1090), + [aux_sym__whitespace_token1] = ACTIONS(1092), + [sym__word_no_digit] = ACTIONS(1090), + [sym__digits] = ACTIONS(1090), + [aux_sym__newline_token1] = ACTIONS(1090), + [sym__block_close] = ACTIONS(1090), [sym__block_continuation] = ACTIONS(111), [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(849), - [sym__indented_chunk_start] = ACTIONS(849), - [sym_atx_h1_marker] = ACTIONS(849), - [sym_atx_h2_marker] = ACTIONS(849), - [sym_atx_h3_marker] = ACTIONS(849), - [sym_atx_h4_marker] = ACTIONS(849), - [sym_atx_h5_marker] = ACTIONS(849), - [sym_atx_h6_marker] = ACTIONS(849), - [sym__thematic_break] = ACTIONS(849), - [sym__list_marker_minus] = ACTIONS(849), - [sym__list_marker_plus] = ACTIONS(849), - [sym__list_marker_star] = ACTIONS(849), - [sym__list_marker_parenthesis] = ACTIONS(849), - [sym__list_marker_dot] = ACTIONS(849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), - [sym__fenced_code_block_start_backtick] = ACTIONS(849), - [sym__fenced_code_block_start_tilde] = ACTIONS(849), - [sym__blank_line_start] = ACTIONS(849), - [sym__code_span_start] = ACTIONS(849), - [sym__emphasis_open_star] = ACTIONS(849), - [sym__emphasis_open_underscore] = ACTIONS(849), + [sym__block_quote_start] = ACTIONS(1090), + [sym__indented_chunk_start] = ACTIONS(1090), + [sym_atx_h1_marker] = ACTIONS(1090), + [sym_atx_h2_marker] = ACTIONS(1090), + [sym_atx_h3_marker] = ACTIONS(1090), + [sym_atx_h4_marker] = ACTIONS(1090), + [sym_atx_h5_marker] = ACTIONS(1090), + [sym_atx_h6_marker] = ACTIONS(1090), + [sym__thematic_break] = ACTIONS(1090), + [sym__list_marker_minus] = ACTIONS(1090), + [sym__list_marker_plus] = ACTIONS(1090), + [sym__list_marker_star] = ACTIONS(1090), + [sym__list_marker_parenthesis] = ACTIONS(1090), + [sym__list_marker_dot] = ACTIONS(1090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1090), + [sym__fenced_code_block_start_backtick] = ACTIONS(1090), + [sym__fenced_code_block_start_tilde] = ACTIONS(1090), + [sym__blank_line_start] = ACTIONS(1090), + [sym__code_span_start] = ACTIONS(1090), + [sym__emphasis_open_star] = ACTIONS(1090), + [sym__emphasis_open_underscore] = ACTIONS(1090), [sym__last_token_whitespace] = ACTIONS(111), }, + [282] = { + [aux_sym__ignore_matching_tokens] = STATE(241), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym__] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [aux_sym__html_block_1_token1] = ACTIONS(1090), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1092), + [anon_sym_LT_QMARK] = ACTIONS(1092), + [aux_sym__html_block_4_token1] = ACTIONS(1092), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1090), + [aux_sym__html_block_6_token1] = ACTIONS(1092), + [aux_sym__html_block_6_token2] = ACTIONS(1090), + [sym__open_tag_html_block] = ACTIONS(1090), + [sym__open_tag_html_block_newline] = ACTIONS(1090), + [sym__closing_tag_html_block] = ACTIONS(1090), + [sym__closing_tag_html_block_newline] = ACTIONS(1090), + [sym_backslash_escape] = ACTIONS(1090), + [sym_entity_reference] = ACTIONS(1090), + [sym_numeric_character_reference] = ACTIONS(1090), + [sym_uri_autolink] = ACTIONS(1090), + [sym_email_autolink] = ACTIONS(1090), + [sym__whitespace_ge_2] = ACTIONS(1090), + [aux_sym__whitespace_token1] = ACTIONS(1092), + [sym__word_no_digit] = ACTIONS(1090), + [sym__digits] = ACTIONS(1090), + [aux_sym__newline_token1] = ACTIONS(1090), + [sym__block_close] = ACTIONS(1090), + [sym__block_continuation] = ACTIONS(1388), + [sym__block_quote_continuation] = ACTIONS(1388), + [sym__block_quote_start] = ACTIONS(1090), + [sym__indented_chunk_start] = ACTIONS(1090), + [sym_atx_h1_marker] = ACTIONS(1090), + [sym_atx_h2_marker] = ACTIONS(1090), + [sym_atx_h3_marker] = ACTIONS(1090), + [sym_atx_h4_marker] = ACTIONS(1090), + [sym_atx_h5_marker] = ACTIONS(1090), + [sym_atx_h6_marker] = ACTIONS(1090), + [sym__thematic_break] = ACTIONS(1090), + [sym__list_marker_minus] = ACTIONS(1090), + [sym__list_marker_plus] = ACTIONS(1090), + [sym__list_marker_star] = ACTIONS(1090), + [sym__list_marker_parenthesis] = ACTIONS(1090), + [sym__list_marker_dot] = ACTIONS(1090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1090), + [sym__fenced_code_block_start_backtick] = ACTIONS(1090), + [sym__fenced_code_block_start_tilde] = ACTIONS(1090), + [sym__blank_line_start] = ACTIONS(1090), + [sym__code_span_start] = ACTIONS(1090), + [sym__emphasis_open_star] = ACTIONS(1090), + [sym__emphasis_open_underscore] = ACTIONS(1090), + [sym__last_token_whitespace] = ACTIONS(1388), + }, [283] = { - [aux_sym__ignore_matching_tokens] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_BSLASH] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym__] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [aux_sym__html_block_1_token1] = ACTIONS(1245), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1247), - [anon_sym_LT_QMARK] = ACTIONS(1247), - [aux_sym__html_block_4_token1] = ACTIONS(1247), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1245), - [aux_sym__html_block_6_token1] = ACTIONS(1247), - [aux_sym__html_block_6_token2] = ACTIONS(1245), - [sym__open_tag_html_block] = ACTIONS(1245), - [sym__open_tag_html_block_newline] = ACTIONS(1245), - [sym__closing_tag_html_block] = ACTIONS(1245), - [sym__closing_tag_html_block_newline] = ACTIONS(1245), - [sym_backslash_escape] = ACTIONS(1245), - [sym_entity_reference] = ACTIONS(1245), - [sym_numeric_character_reference] = ACTIONS(1245), - [sym_uri_autolink] = ACTIONS(1245), - [sym_email_autolink] = ACTIONS(1245), - [sym__whitespace_ge_2] = ACTIONS(1245), - [aux_sym__whitespace_token1] = ACTIONS(1247), - [sym__word_no_digit] = ACTIONS(1245), - [sym__digits] = ACTIONS(1245), - [aux_sym__newline_token1] = ACTIONS(1245), - [sym__block_continuation] = ACTIONS(1332), - [sym__block_quote_continuation] = ACTIONS(1332), - [sym__block_quote_start] = ACTIONS(1245), - [sym__indented_chunk_start] = ACTIONS(1245), - [sym_atx_h1_marker] = ACTIONS(1245), - [sym_atx_h2_marker] = ACTIONS(1245), - [sym_atx_h3_marker] = ACTIONS(1245), - [sym_atx_h4_marker] = ACTIONS(1245), - [sym_atx_h5_marker] = ACTIONS(1245), - [sym_atx_h6_marker] = ACTIONS(1245), - [sym__thematic_break] = ACTIONS(1245), - [sym__list_marker_minus] = ACTIONS(1245), - [sym__list_marker_plus] = ACTIONS(1245), - [sym__list_marker_star] = ACTIONS(1245), - [sym__list_marker_parenthesis] = ACTIONS(1245), - [sym__list_marker_dot] = ACTIONS(1245), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1245), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1245), - [sym__fenced_code_block_start_backtick] = ACTIONS(1245), - [sym__fenced_code_block_start_tilde] = ACTIONS(1245), - [sym__blank_line_start] = ACTIONS(1245), - [sym__code_span_start] = ACTIONS(1245), - [sym__emphasis_open_star] = ACTIONS(1245), - [sym__emphasis_open_underscore] = ACTIONS(1245), - [sym__last_token_whitespace] = ACTIONS(1332), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = 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_PIPE] = 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_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1378), + [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(1378), + [sym__code_span_start] = ACTIONS(1378), + [sym__emphasis_open_star] = ACTIONS(1378), + [sym__emphasis_open_underscore] = ACTIONS(1378), + [sym__last_token_whitespace] = ACTIONS(93), }, [284] = { - [sym__soft_line_break] = STATE(124), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(124), - [sym_full_reference_link] = STATE(124), - [sym_collapsed_reference_link] = STATE(124), - [sym_inline_link] = STATE(124), - [sym_image] = STATE(124), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(124), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(124), - [sym__whitespace] = STATE(124), - [sym__word] = STATE(124), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore] = STATE(124), - [aux_sym__inline_no_underscore] = STATE(124), - [sym__text_inline_no_underscore] = STATE(124), - [sym__emphasis_star] = STATE(813), - [sym__strong_emphasis_star] = STATE(124), - [sym__emphasis_underscore] = STATE(831), - [sym__strong_emphasis_underscore] = STATE(124), - [sym__code_span] = STATE(124), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_BSLASH] = ACTIONS(1349), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1352), - [anon_sym_LT_QMARK] = ACTIONS(1355), - [aux_sym__html_block_4_token1] = ACTIONS(1358), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1361), - [sym_backslash_escape] = ACTIONS(1364), - [sym_entity_reference] = ACTIONS(1364), - [sym_numeric_character_reference] = ACTIONS(1364), - [sym_uri_autolink] = ACTIONS(1364), - [sym_email_autolink] = ACTIONS(1364), - [sym__whitespace_ge_2] = ACTIONS(1367), - [aux_sym__whitespace_token1] = ACTIONS(1370), - [sym__word_no_digit] = ACTIONS(1364), - [sym__digits] = ACTIONS(1364), - [aux_sym__newline_token1] = ACTIONS(1318), - [sym__code_span_start] = ACTIONS(1373), - [sym__emphasis_open_star] = ACTIONS(1376), - [sym__emphasis_open_underscore] = ACTIONS(1379), - [sym__last_token_punctuation] = ACTIONS(1382), + [aux_sym__ignore_matching_tokens] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1240), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [aux_sym__html_block_1_token1] = ACTIONS(1240), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1242), + [anon_sym_LT_QMARK] = ACTIONS(1242), + [aux_sym__html_block_4_token1] = ACTIONS(1242), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1240), + [aux_sym__html_block_6_token1] = ACTIONS(1242), + [aux_sym__html_block_6_token2] = ACTIONS(1240), + [sym__open_tag_html_block] = ACTIONS(1240), + [sym__open_tag_html_block_newline] = ACTIONS(1240), + [sym__closing_tag_html_block] = ACTIONS(1240), + [sym__closing_tag_html_block_newline] = ACTIONS(1240), + [sym_backslash_escape] = ACTIONS(1240), + [sym_entity_reference] = ACTIONS(1240), + [sym_numeric_character_reference] = ACTIONS(1240), + [sym_uri_autolink] = ACTIONS(1240), + [sym_email_autolink] = ACTIONS(1240), + [sym__whitespace_ge_2] = ACTIONS(1240), + [aux_sym__whitespace_token1] = ACTIONS(1242), + [sym__word_no_digit] = ACTIONS(1240), + [sym__digits] = ACTIONS(1240), + [aux_sym__newline_token1] = ACTIONS(1240), + [sym__block_continuation] = ACTIONS(1390), + [sym__block_quote_continuation] = ACTIONS(1390), + [sym__block_quote_start] = ACTIONS(1240), + [sym__indented_chunk_start] = ACTIONS(1240), + [sym_atx_h1_marker] = ACTIONS(1240), + [sym_atx_h2_marker] = ACTIONS(1240), + [sym_atx_h3_marker] = ACTIONS(1240), + [sym_atx_h4_marker] = ACTIONS(1240), + [sym_atx_h5_marker] = ACTIONS(1240), + [sym_atx_h6_marker] = ACTIONS(1240), + [sym__thematic_break] = ACTIONS(1240), + [sym__list_marker_minus] = ACTIONS(1240), + [sym__list_marker_plus] = ACTIONS(1240), + [sym__list_marker_star] = ACTIONS(1240), + [sym__list_marker_parenthesis] = ACTIONS(1240), + [sym__list_marker_dot] = ACTIONS(1240), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1240), + [sym__fenced_code_block_start_backtick] = ACTIONS(1240), + [sym__fenced_code_block_start_tilde] = ACTIONS(1240), + [sym__blank_line_start] = ACTIONS(1240), + [sym__code_span_start] = ACTIONS(1240), + [sym__emphasis_open_star] = ACTIONS(1240), + [sym__emphasis_open_underscore] = ACTIONS(1240), + [sym__last_token_whitespace] = ACTIONS(1390), }, [285] = { - [aux_sym__ignore_matching_tokens] = STATE(142), - [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_continuation] = ACTIONS(1384), - [sym__block_quote_continuation] = ACTIONS(1384), - [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(1257), - [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(1257), - [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), - [sym__last_token_whitespace] = ACTIONS(1384), + [aux_sym__paragraph_end_newline_repeat1] = STATE(285), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1197), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1197), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym__] = ACTIONS(1195), + [anon_sym_BQUOTE] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [aux_sym__html_block_1_token1] = ACTIONS(1195), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1197), + [anon_sym_LT_QMARK] = ACTIONS(1197), + [aux_sym__html_block_4_token1] = ACTIONS(1197), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1195), + [aux_sym__html_block_6_token1] = ACTIONS(1197), + [aux_sym__html_block_6_token2] = ACTIONS(1195), + [sym__open_tag_html_block] = ACTIONS(1195), + [sym__open_tag_html_block_newline] = ACTIONS(1195), + [sym__closing_tag_html_block] = ACTIONS(1195), + [sym__closing_tag_html_block_newline] = ACTIONS(1195), + [sym_backslash_escape] = ACTIONS(1195), + [sym_entity_reference] = ACTIONS(1195), + [sym_numeric_character_reference] = ACTIONS(1195), + [sym_uri_autolink] = ACTIONS(1195), + [sym_email_autolink] = ACTIONS(1195), + [sym__whitespace_ge_2] = ACTIONS(1195), + [aux_sym__whitespace_token1] = ACTIONS(1197), + [sym__word_no_digit] = ACTIONS(1195), + [sym__digits] = ACTIONS(1195), + [aux_sym__newline_token1] = ACTIONS(1195), + [sym__block_close] = ACTIONS(1195), + [sym__block_quote_start] = ACTIONS(1195), + [sym__indented_chunk_start] = ACTIONS(1195), + [sym_atx_h1_marker] = ACTIONS(1195), + [sym_atx_h2_marker] = ACTIONS(1195), + [sym_atx_h3_marker] = ACTIONS(1195), + [sym_atx_h4_marker] = ACTIONS(1195), + [sym_atx_h5_marker] = ACTIONS(1195), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym_setext_h1_underline] = ACTIONS(1195), + [sym_setext_h2_underline] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1195), + [sym__list_marker_minus] = ACTIONS(1195), + [sym__list_marker_plus] = ACTIONS(1195), + [sym__list_marker_star] = ACTIONS(1195), + [sym__list_marker_parenthesis] = ACTIONS(1195), + [sym__list_marker_dot] = ACTIONS(1195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1195), + [sym__fenced_code_block_start_backtick] = ACTIONS(1195), + [sym__fenced_code_block_start_tilde] = ACTIONS(1195), + [sym__blank_line_start] = ACTIONS(1195), + [sym__split_token] = ACTIONS(1392), + [sym__code_span_start] = ACTIONS(1195), + [sym__emphasis_open_star] = ACTIONS(1195), + [sym__emphasis_open_underscore] = ACTIONS(1195), }, [286] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [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(1386), - [sym__block_quote_continuation] = ACTIONS(1386), - [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(1386), + [aux_sym__ignore_matching_tokens] = STATE(164), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_PERCENT] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_BSLASH] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_CARET] = ACTIONS(1204), + [anon_sym__] = ACTIONS(1204), + [anon_sym_BQUOTE] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [aux_sym__html_block_1_token1] = ACTIONS(1204), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1206), + [anon_sym_LT_QMARK] = ACTIONS(1206), + [aux_sym__html_block_4_token1] = ACTIONS(1206), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1204), + [aux_sym__html_block_6_token1] = ACTIONS(1206), + [aux_sym__html_block_6_token2] = ACTIONS(1204), + [sym__open_tag_html_block] = ACTIONS(1204), + [sym__open_tag_html_block_newline] = ACTIONS(1204), + [sym__closing_tag_html_block] = ACTIONS(1204), + [sym__closing_tag_html_block_newline] = ACTIONS(1204), + [sym_backslash_escape] = ACTIONS(1204), + [sym_entity_reference] = ACTIONS(1204), + [sym_numeric_character_reference] = ACTIONS(1204), + [sym_uri_autolink] = ACTIONS(1204), + [sym_email_autolink] = ACTIONS(1204), + [sym__whitespace_ge_2] = ACTIONS(1204), + [aux_sym__whitespace_token1] = ACTIONS(1206), + [sym__word_no_digit] = ACTIONS(1204), + [sym__digits] = ACTIONS(1204), + [aux_sym__newline_token1] = ACTIONS(1204), + [sym__block_close] = ACTIONS(1204), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1204), + [sym__indented_chunk_start] = ACTIONS(1204), + [sym_atx_h1_marker] = ACTIONS(1204), + [sym_atx_h2_marker] = ACTIONS(1204), + [sym_atx_h3_marker] = ACTIONS(1204), + [sym_atx_h4_marker] = ACTIONS(1204), + [sym_atx_h5_marker] = ACTIONS(1204), + [sym_atx_h6_marker] = ACTIONS(1204), + [sym__thematic_break] = ACTIONS(1204), + [sym__list_marker_minus] = ACTIONS(1204), + [sym__list_marker_plus] = ACTIONS(1204), + [sym__list_marker_star] = ACTIONS(1204), + [sym__list_marker_parenthesis] = ACTIONS(1204), + [sym__list_marker_dot] = ACTIONS(1204), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1204), + [sym__fenced_code_block_start_backtick] = ACTIONS(1204), + [sym__fenced_code_block_start_tilde] = ACTIONS(1204), + [sym__blank_line_start] = ACTIONS(1204), + [sym__code_span_start] = ACTIONS(1204), + [sym__emphasis_open_star] = ACTIONS(1204), + [sym__emphasis_open_underscore] = ACTIONS(1204), + [sym__last_token_whitespace] = ACTIONS(111), }, [287] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__emphasis_close_star] = ACTIONS(1389), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1240), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [aux_sym__html_block_1_token1] = ACTIONS(1240), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1242), + [anon_sym_LT_QMARK] = ACTIONS(1242), + [aux_sym__html_block_4_token1] = ACTIONS(1242), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1240), + [aux_sym__html_block_6_token1] = ACTIONS(1242), + [aux_sym__html_block_6_token2] = ACTIONS(1240), + [sym__open_tag_html_block] = ACTIONS(1240), + [sym__open_tag_html_block_newline] = ACTIONS(1240), + [sym__closing_tag_html_block] = ACTIONS(1240), + [sym__closing_tag_html_block_newline] = ACTIONS(1240), + [sym_backslash_escape] = ACTIONS(1240), + [sym_entity_reference] = ACTIONS(1240), + [sym_numeric_character_reference] = ACTIONS(1240), + [sym_uri_autolink] = ACTIONS(1240), + [sym_email_autolink] = ACTIONS(1240), + [sym__whitespace_ge_2] = ACTIONS(1240), + [aux_sym__whitespace_token1] = ACTIONS(1242), + [sym__word_no_digit] = ACTIONS(1240), + [sym__digits] = ACTIONS(1240), + [aux_sym__newline_token1] = ACTIONS(1240), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1240), + [sym__indented_chunk_start] = ACTIONS(1240), + [sym_atx_h1_marker] = ACTIONS(1240), + [sym_atx_h2_marker] = ACTIONS(1240), + [sym_atx_h3_marker] = ACTIONS(1240), + [sym_atx_h4_marker] = ACTIONS(1240), + [sym_atx_h5_marker] = ACTIONS(1240), + [sym_atx_h6_marker] = ACTIONS(1240), + [sym__thematic_break] = ACTIONS(1240), + [sym__list_marker_minus] = ACTIONS(1240), + [sym__list_marker_plus] = ACTIONS(1240), + [sym__list_marker_star] = ACTIONS(1240), + [sym__list_marker_parenthesis] = ACTIONS(1240), + [sym__list_marker_dot] = ACTIONS(1240), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1240), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1240), + [sym__fenced_code_block_start_backtick] = ACTIONS(1240), + [sym__fenced_code_block_start_tilde] = ACTIONS(1240), + [sym__blank_line_start] = ACTIONS(1240), + [sym__code_span_start] = ACTIONS(1240), + [sym__emphasis_open_star] = ACTIONS(1240), + [sym__emphasis_open_underscore] = ACTIONS(1240), + [sym__last_token_whitespace] = ACTIONS(93), }, [288] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [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(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(258), - [aux_sym__inline_no_star] = STATE(258), - [sym__text_inline_no_star] = STATE(258), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - [sym__emphasis_close_star] = ACTIONS(1391), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_SLASH] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_AT] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_BSLASH] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1305), + [anon_sym_CARET] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1305), + [anon_sym_BQUOTE] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [aux_sym__html_block_1_token1] = ACTIONS(1305), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1307), + [anon_sym_LT_QMARK] = ACTIONS(1307), + [aux_sym__html_block_4_token1] = ACTIONS(1307), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1305), + [aux_sym__html_block_6_token1] = ACTIONS(1307), + [aux_sym__html_block_6_token2] = ACTIONS(1305), + [sym__open_tag_html_block] = ACTIONS(1305), + [sym__open_tag_html_block_newline] = ACTIONS(1305), + [sym__closing_tag_html_block] = ACTIONS(1305), + [sym__closing_tag_html_block_newline] = ACTIONS(1305), + [sym_backslash_escape] = ACTIONS(1305), + [sym_entity_reference] = ACTIONS(1305), + [sym_numeric_character_reference] = ACTIONS(1305), + [sym_uri_autolink] = ACTIONS(1305), + [sym_email_autolink] = ACTIONS(1305), + [sym__whitespace_ge_2] = ACTIONS(1305), + [aux_sym__whitespace_token1] = ACTIONS(1307), + [sym__word_no_digit] = ACTIONS(1305), + [sym__digits] = ACTIONS(1305), + [aux_sym__newline_token1] = ACTIONS(1305), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1305), + [sym__indented_chunk_start] = ACTIONS(1305), + [sym_atx_h1_marker] = ACTIONS(1305), + [sym_atx_h2_marker] = ACTIONS(1305), + [sym_atx_h3_marker] = ACTIONS(1305), + [sym_atx_h4_marker] = ACTIONS(1305), + [sym_atx_h5_marker] = ACTIONS(1305), + [sym_atx_h6_marker] = ACTIONS(1305), + [sym__thematic_break] = ACTIONS(1305), + [sym__list_marker_minus] = ACTIONS(1305), + [sym__list_marker_plus] = ACTIONS(1305), + [sym__list_marker_star] = ACTIONS(1305), + [sym__list_marker_parenthesis] = ACTIONS(1305), + [sym__list_marker_dot] = ACTIONS(1305), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1305), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1305), + [sym__fenced_code_block_start_backtick] = ACTIONS(1305), + [sym__fenced_code_block_start_tilde] = ACTIONS(1305), + [sym__blank_line_start] = ACTIONS(1305), + [sym__code_span_start] = ACTIONS(1305), + [sym__emphasis_open_star] = ACTIONS(1305), + [sym__emphasis_open_underscore] = ACTIONS(1305), + [sym__last_token_whitespace] = ACTIONS(93), }, [289] = { - [aux_sym__ignore_matching_tokens] = STATE(159), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_PERCENT] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_COLON] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_BSLASH] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym__] = ACTIONS(1265), - [anon_sym_BQUOTE] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [aux_sym__html_block_1_token1] = ACTIONS(1265), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1267), - [anon_sym_LT_QMARK] = ACTIONS(1267), - [aux_sym__html_block_4_token1] = ACTIONS(1267), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1265), - [aux_sym__html_block_6_token1] = ACTIONS(1267), - [aux_sym__html_block_6_token2] = ACTIONS(1265), - [sym__open_tag_html_block] = ACTIONS(1265), - [sym__open_tag_html_block_newline] = ACTIONS(1265), - [sym__closing_tag_html_block] = ACTIONS(1265), - [sym__closing_tag_html_block_newline] = ACTIONS(1265), - [sym_backslash_escape] = ACTIONS(1265), - [sym_entity_reference] = ACTIONS(1265), - [sym_numeric_character_reference] = ACTIONS(1265), - [sym_uri_autolink] = ACTIONS(1265), - [sym_email_autolink] = ACTIONS(1265), - [sym__whitespace_ge_2] = ACTIONS(1265), - [aux_sym__whitespace_token1] = ACTIONS(1267), - [sym__word_no_digit] = ACTIONS(1265), - [sym__digits] = ACTIONS(1265), - [aux_sym__newline_token1] = ACTIONS(1265), - [sym__block_continuation] = ACTIONS(1393), - [sym__block_quote_continuation] = ACTIONS(1393), - [sym__block_quote_start] = ACTIONS(1265), - [sym__indented_chunk_start] = ACTIONS(1265), - [sym_atx_h1_marker] = ACTIONS(1265), - [sym_atx_h2_marker] = ACTIONS(1265), - [sym_atx_h3_marker] = ACTIONS(1265), - [sym_atx_h4_marker] = ACTIONS(1265), - [sym_atx_h5_marker] = ACTIONS(1265), - [sym_atx_h6_marker] = ACTIONS(1265), - [sym__thematic_break] = ACTIONS(1265), - [sym__list_marker_minus] = ACTIONS(1265), - [sym__list_marker_plus] = ACTIONS(1265), - [sym__list_marker_star] = ACTIONS(1265), - [sym__list_marker_parenthesis] = ACTIONS(1265), - [sym__list_marker_dot] = ACTIONS(1265), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1265), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1265), - [sym__fenced_code_block_start_backtick] = ACTIONS(1265), - [sym__fenced_code_block_start_tilde] = ACTIONS(1265), - [sym__blank_line_start] = ACTIONS(1265), - [sym__code_span_start] = ACTIONS(1265), - [sym__emphasis_open_star] = ACTIONS(1265), - [sym__emphasis_open_underscore] = ACTIONS(1265), - [sym__last_token_whitespace] = ACTIONS(1393), + [aux_sym__ignore_matching_tokens] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [aux_sym__html_block_1_token1] = ACTIONS(1366), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1368), + [anon_sym_LT_QMARK] = ACTIONS(1368), + [aux_sym__html_block_4_token1] = ACTIONS(1368), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1366), + [aux_sym__html_block_6_token1] = ACTIONS(1368), + [aux_sym__html_block_6_token2] = ACTIONS(1366), + [sym__open_tag_html_block] = ACTIONS(1366), + [sym__open_tag_html_block_newline] = ACTIONS(1366), + [sym__closing_tag_html_block] = ACTIONS(1366), + [sym__closing_tag_html_block_newline] = ACTIONS(1366), + [sym_backslash_escape] = ACTIONS(1366), + [sym_entity_reference] = ACTIONS(1366), + [sym_numeric_character_reference] = ACTIONS(1366), + [sym_uri_autolink] = ACTIONS(1366), + [sym_email_autolink] = ACTIONS(1366), + [sym__whitespace_ge_2] = ACTIONS(1366), + [aux_sym__whitespace_token1] = ACTIONS(1368), + [sym__word_no_digit] = ACTIONS(1366), + [sym__digits] = ACTIONS(1366), + [aux_sym__newline_token1] = ACTIONS(1366), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym__code_span_start] = ACTIONS(1366), + [sym__emphasis_open_star] = ACTIONS(1366), + [sym__emphasis_open_underscore] = ACTIONS(1366), + [sym__last_token_whitespace] = ACTIONS(93), }, [290] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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(873), - [anon_sym_BSLASH] = ACTIONS(15), + [sym_list_marker_minus] = STATE(16), + [sym__list_item_minus] = STATE(327), + [aux_sym__list_minus_repeat1] = STATE(327), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = 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(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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), - [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(35), - [sym__digits] = ACTIONS(35), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym__] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [anon_sym_PIPE] = 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), }, [291] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(305), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1397), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -57801,250 +57813,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [292] = { - [sym__soft_line_break] = STATE(288), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(288), - [sym_full_reference_link] = STATE(288), - [sym_collapsed_reference_link] = STATE(288), - [sym_inline_link] = STATE(288), - [sym_image] = STATE(288), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(288), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(288), - [sym__whitespace] = STATE(288), - [sym__word] = STATE(288), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(288), - [aux_sym__inline_no_star] = STATE(288), - [sym__text_inline_no_star] = STATE(288), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(288), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(288), - [sym__code_span] = STATE(288), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [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(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1399), - [sym__digits] = ACTIONS(1399), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - }, - [293] = { - [sym__soft_line_break] = STATE(260), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(260), - [sym_full_reference_link] = STATE(260), - [sym_collapsed_reference_link] = STATE(260), - [sym_inline_link] = STATE(260), - [sym_image] = STATE(260), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(260), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(260), - [sym__whitespace] = STATE(260), - [sym__word] = STATE(260), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore] = STATE(260), - [aux_sym__inline_no_underscore] = STATE(260), - [sym__text_inline_no_underscore] = STATE(260), - [sym__emphasis_star] = STATE(813), - [sym__strong_emphasis_star] = STATE(260), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(260), - [sym__code_span] = STATE(260), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), + [sym__soft_line_break] = STATE(203), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(203), + [sym_full_reference_link] = STATE(203), + [sym_collapsed_reference_link] = STATE(203), + [sym_inline_link] = STATE(203), + [sym_image] = STATE(203), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(203), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(203), + [sym__whitespace] = STATE(203), + [sym__word] = STATE(203), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(203), + [aux_sym__inline_no_star] = STATE(203), + [sym__text_inline_no_star] = STATE(203), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(203), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(203), + [sym__code_span] = STATE(203), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), [sym_backslash_escape] = ACTIONS(1401), [sym_entity_reference] = ACTIONS(1401), [sym_numeric_character_reference] = ACTIONS(1401), [sym_uri_autolink] = ACTIONS(1401), [sym_email_autolink] = ACTIONS(1401), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(1401), [sym__digits] = ACTIONS(1401), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + }, + [293] = { + [sym__soft_line_break] = STATE(175), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(175), + [sym_full_reference_link] = STATE(175), + [sym_collapsed_reference_link] = STATE(175), + [sym_inline_link] = STATE(175), + [sym_image] = STATE(175), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(175), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(175), + [sym__whitespace] = STATE(175), + [sym__word] = STATE(175), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(175), + [aux_sym__inline_no_underscore] = STATE(175), + [sym__text_inline_no_underscore] = STATE(175), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(175), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(175), + [sym__code_span] = STATE(175), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [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(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1403), + [sym__digits] = ACTIONS(1403), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), }, [294] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(296), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(321), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -58053,166 +58065,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [295] = { - [sym__indented_chunk] = STATE(295), - [sym__blank_line] = STATE(295), - [aux_sym_indented_code_block_repeat1] = STATE(295), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_AT] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_BSLASH] = ACTIONS(1407), - [anon_sym_RBRACK] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym__] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [aux_sym__html_block_1_token1] = ACTIONS(1405), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1407), - [anon_sym_LT_QMARK] = ACTIONS(1407), - [aux_sym__html_block_4_token1] = ACTIONS(1407), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1405), - [aux_sym__html_block_6_token1] = ACTIONS(1407), - [aux_sym__html_block_6_token2] = ACTIONS(1405), - [sym__open_tag_html_block] = ACTIONS(1405), - [sym__open_tag_html_block_newline] = ACTIONS(1405), - [sym__closing_tag_html_block] = ACTIONS(1405), - [sym__closing_tag_html_block_newline] = ACTIONS(1405), - [sym_backslash_escape] = ACTIONS(1405), - [sym_entity_reference] = ACTIONS(1405), - [sym_numeric_character_reference] = ACTIONS(1405), - [sym_uri_autolink] = ACTIONS(1405), - [sym_email_autolink] = ACTIONS(1405), - [sym__whitespace_ge_2] = ACTIONS(1405), - [aux_sym__whitespace_token1] = ACTIONS(1407), - [sym__word_no_digit] = ACTIONS(1405), - [sym__digits] = ACTIONS(1405), - [aux_sym__newline_token1] = ACTIONS(1405), - [sym__block_close] = ACTIONS(1405), - [sym__block_quote_start] = ACTIONS(1405), - [sym__indented_chunk_start] = ACTIONS(1409), - [sym_atx_h1_marker] = ACTIONS(1405), - [sym_atx_h2_marker] = ACTIONS(1405), - [sym_atx_h3_marker] = ACTIONS(1405), - [sym_atx_h4_marker] = ACTIONS(1405), - [sym_atx_h5_marker] = ACTIONS(1405), - [sym_atx_h6_marker] = ACTIONS(1405), - [sym__thematic_break] = ACTIONS(1405), - [sym__list_marker_minus] = ACTIONS(1405), - [sym__list_marker_plus] = ACTIONS(1405), - [sym__list_marker_star] = ACTIONS(1405), - [sym__list_marker_parenthesis] = ACTIONS(1405), - [sym__list_marker_dot] = ACTIONS(1405), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1405), - [sym__fenced_code_block_start_backtick] = ACTIONS(1405), - [sym__fenced_code_block_start_tilde] = ACTIONS(1405), - [sym__blank_line_start] = ACTIONS(1412), - [sym__code_span_start] = ACTIONS(1405), - [sym__emphasis_open_star] = ACTIONS(1405), - [sym__emphasis_open_underscore] = ACTIONS(1405), - }, - [296] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1415), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -58220,1259 +58148,503 @@ 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_list_marker_star] = STATE(24), + [sym__list_item_star] = STATE(296), + [aux_sym__list_star_repeat1] = STATE(296), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_COLON] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1409), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_QMARK] = ACTIONS(1407), + [anon_sym_AT] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_BSLASH] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym__] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [aux_sym__html_block_1_token1] = ACTIONS(1407), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1409), + [anon_sym_LT_QMARK] = ACTIONS(1409), + [aux_sym__html_block_4_token1] = ACTIONS(1409), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1407), + [aux_sym__html_block_6_token1] = ACTIONS(1409), + [aux_sym__html_block_6_token2] = ACTIONS(1407), + [sym__open_tag_html_block] = ACTIONS(1407), + [sym__open_tag_html_block_newline] = ACTIONS(1407), + [sym__closing_tag_html_block] = ACTIONS(1407), + [sym__closing_tag_html_block_newline] = ACTIONS(1407), + [sym_backslash_escape] = ACTIONS(1407), + [sym_entity_reference] = ACTIONS(1407), + [sym_numeric_character_reference] = ACTIONS(1407), + [sym_uri_autolink] = ACTIONS(1407), + [sym_email_autolink] = ACTIONS(1407), + [sym__whitespace_ge_2] = ACTIONS(1407), + [aux_sym__whitespace_token1] = ACTIONS(1409), + [sym__word_no_digit] = ACTIONS(1407), + [sym__digits] = ACTIONS(1407), + [aux_sym__newline_token1] = ACTIONS(1407), + [sym__block_close] = ACTIONS(1407), + [sym__block_quote_start] = ACTIONS(1407), + [sym__indented_chunk_start] = ACTIONS(1407), + [sym_atx_h1_marker] = ACTIONS(1407), + [sym_atx_h2_marker] = ACTIONS(1407), + [sym_atx_h3_marker] = ACTIONS(1407), + [sym_atx_h4_marker] = ACTIONS(1407), + [sym_atx_h5_marker] = ACTIONS(1407), + [sym_atx_h6_marker] = ACTIONS(1407), + [sym__thematic_break] = ACTIONS(1407), + [sym__list_marker_minus] = ACTIONS(1407), + [sym__list_marker_plus] = ACTIONS(1407), + [sym__list_marker_star] = ACTIONS(1411), + [sym__list_marker_parenthesis] = ACTIONS(1407), + [sym__list_marker_dot] = ACTIONS(1407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1407), + [sym__fenced_code_block_start_backtick] = ACTIONS(1407), + [sym__fenced_code_block_start_tilde] = ACTIONS(1407), + [sym__blank_line_start] = ACTIONS(1407), + [sym__code_span_start] = ACTIONS(1407), + [sym__emphasis_open_star] = ACTIONS(1407), + [sym__emphasis_open_underscore] = ACTIONS(1407), + }, [297] = { - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_parenthesis] = STATE(341), - [aux_sym__list_parenthesis_repeat1] = STATE(341), - [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(1417), - [sym__list_marker_plus] = ACTIONS(1417), - [sym__list_marker_star] = ACTIONS(1417), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(1417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1417), - [sym__fenced_code_block_start_backtick] = ACTIONS(1417), - [sym__fenced_code_block_start_tilde] = ACTIONS(1417), - [sym__blank_line_start] = ACTIONS(1417), - [sym__code_span_start] = ACTIONS(1417), - [sym__emphasis_open_star] = ACTIONS(1417), - [sym__emphasis_open_underscore] = ACTIONS(1417), + [sym_list_marker_dot] = STATE(14), + [sym__list_item_dot] = STATE(298), + [aux_sym__list_dot_repeat1] = STATE(298), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_COLON] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [aux_sym__html_block_1_token1] = ACTIONS(1414), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1416), + [anon_sym_LT_QMARK] = ACTIONS(1416), + [aux_sym__html_block_4_token1] = ACTIONS(1416), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1414), + [aux_sym__html_block_6_token1] = ACTIONS(1416), + [aux_sym__html_block_6_token2] = ACTIONS(1414), + [sym__open_tag_html_block] = ACTIONS(1414), + [sym__open_tag_html_block_newline] = ACTIONS(1414), + [sym__closing_tag_html_block] = ACTIONS(1414), + [sym__closing_tag_html_block_newline] = ACTIONS(1414), + [sym_backslash_escape] = ACTIONS(1414), + [sym_entity_reference] = ACTIONS(1414), + [sym_numeric_character_reference] = ACTIONS(1414), + [sym_uri_autolink] = ACTIONS(1414), + [sym_email_autolink] = ACTIONS(1414), + [sym__whitespace_ge_2] = ACTIONS(1414), + [aux_sym__whitespace_token1] = ACTIONS(1416), + [sym__word_no_digit] = ACTIONS(1414), + [sym__digits] = ACTIONS(1414), + [aux_sym__newline_token1] = ACTIONS(1414), + [sym__block_close] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym__code_span_start] = ACTIONS(1414), + [sym__emphasis_open_star] = ACTIONS(1414), + [sym__emphasis_open_underscore] = ACTIONS(1414), }, [298] = { - [sym_link_title] = STATE(2392), - [sym__whitespace] = STATE(2144), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_COLON] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_BSLASH] = ACTIONS(1426), - [anon_sym_RBRACK] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [aux_sym__html_block_1_token1] = ACTIONS(1421), - [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(1421), - [aux_sym__html_block_6_token1] = ACTIONS(1426), - [aux_sym__html_block_6_token2] = ACTIONS(1421), - [sym__open_tag_html_block] = ACTIONS(1421), - [sym__open_tag_html_block_newline] = ACTIONS(1421), - [sym__closing_tag_html_block] = ACTIONS(1421), - [sym__closing_tag_html_block_newline] = ACTIONS(1421), - [sym_backslash_escape] = ACTIONS(1421), - [sym_entity_reference] = ACTIONS(1421), - [sym_numeric_character_reference] = ACTIONS(1421), - [sym_uri_autolink] = ACTIONS(1421), - [sym_email_autolink] = ACTIONS(1421), - [sym__whitespace_ge_2] = ACTIONS(1434), - [aux_sym__whitespace_token1] = ACTIONS(1437), - [sym__word_no_digit] = ACTIONS(1421), - [sym__digits] = ACTIONS(1421), - [aux_sym__newline_token1] = ACTIONS(1421), - [sym__block_close] = ACTIONS(1421), - [sym__block_quote_start] = ACTIONS(1421), - [sym__indented_chunk_start] = ACTIONS(1421), - [sym_atx_h1_marker] = ACTIONS(1421), - [sym_atx_h2_marker] = ACTIONS(1421), - [sym_atx_h3_marker] = ACTIONS(1421), - [sym_atx_h4_marker] = ACTIONS(1421), - [sym_atx_h5_marker] = ACTIONS(1421), - [sym_atx_h6_marker] = ACTIONS(1421), - [sym__thematic_break] = ACTIONS(1421), - [sym__list_marker_minus] = ACTIONS(1421), - [sym__list_marker_plus] = ACTIONS(1421), - [sym__list_marker_star] = ACTIONS(1421), - [sym__list_marker_parenthesis] = ACTIONS(1421), - [sym__list_marker_dot] = ACTIONS(1421), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1421), - [sym__fenced_code_block_start_backtick] = ACTIONS(1421), - [sym__fenced_code_block_start_tilde] = ACTIONS(1421), - [sym__blank_line_start] = ACTIONS(1421), - [sym__no_indented_chunk] = ACTIONS(1440), - [sym__code_span_start] = ACTIONS(1421), - [sym__emphasis_open_star] = ACTIONS(1421), - [sym__emphasis_open_underscore] = ACTIONS(1421), + [sym_list_marker_dot] = STATE(14), + [sym__list_item_dot] = STATE(298), + [aux_sym__list_dot_repeat1] = STATE(298), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1418), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1418), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym__] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [aux_sym__html_block_1_token1] = ACTIONS(1418), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1420), + [anon_sym_LT_QMARK] = ACTIONS(1420), + [aux_sym__html_block_4_token1] = ACTIONS(1420), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1418), + [aux_sym__html_block_6_token1] = ACTIONS(1420), + [aux_sym__html_block_6_token2] = ACTIONS(1418), + [sym__open_tag_html_block] = ACTIONS(1418), + [sym__open_tag_html_block_newline] = ACTIONS(1418), + [sym__closing_tag_html_block] = ACTIONS(1418), + [sym__closing_tag_html_block_newline] = ACTIONS(1418), + [sym_backslash_escape] = ACTIONS(1418), + [sym_entity_reference] = ACTIONS(1418), + [sym_numeric_character_reference] = ACTIONS(1418), + [sym_uri_autolink] = ACTIONS(1418), + [sym_email_autolink] = ACTIONS(1418), + [sym__whitespace_ge_2] = ACTIONS(1418), + [aux_sym__whitespace_token1] = ACTIONS(1420), + [sym__word_no_digit] = ACTIONS(1418), + [sym__digits] = ACTIONS(1418), + [aux_sym__newline_token1] = ACTIONS(1418), + [sym__block_close] = ACTIONS(1418), + [sym__block_quote_start] = ACTIONS(1418), + [sym__indented_chunk_start] = ACTIONS(1418), + [sym_atx_h1_marker] = ACTIONS(1418), + [sym_atx_h2_marker] = ACTIONS(1418), + [sym_atx_h3_marker] = ACTIONS(1418), + [sym_atx_h4_marker] = ACTIONS(1418), + [sym_atx_h5_marker] = ACTIONS(1418), + [sym_atx_h6_marker] = ACTIONS(1418), + [sym__thematic_break] = ACTIONS(1418), + [sym__list_marker_minus] = ACTIONS(1418), + [sym__list_marker_plus] = ACTIONS(1418), + [sym__list_marker_star] = ACTIONS(1418), + [sym__list_marker_parenthesis] = ACTIONS(1418), + [sym__list_marker_dot] = ACTIONS(1422), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1422), + [sym__fenced_code_block_start_backtick] = ACTIONS(1418), + [sym__fenced_code_block_start_tilde] = ACTIONS(1418), + [sym__blank_line_start] = ACTIONS(1418), + [sym__code_span_start] = ACTIONS(1418), + [sym__emphasis_open_star] = ACTIONS(1418), + [sym__emphasis_open_underscore] = ACTIONS(1418), }, [299] = { - [sym_link_title] = STATE(2385), - [sym__whitespace] = STATE(2160), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_COLON] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_BSLASH] = ACTIONS(1447), - [anon_sym_RBRACK] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1442), - [anon_sym__] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [aux_sym__html_block_1_token1] = ACTIONS(1442), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1447), - [anon_sym_LT_QMARK] = ACTIONS(1447), - [aux_sym__html_block_4_token1] = ACTIONS(1447), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1442), - [aux_sym__html_block_6_token1] = ACTIONS(1447), - [aux_sym__html_block_6_token2] = ACTIONS(1442), - [sym__open_tag_html_block] = ACTIONS(1442), - [sym__open_tag_html_block_newline] = ACTIONS(1442), - [sym__closing_tag_html_block] = ACTIONS(1442), - [sym__closing_tag_html_block_newline] = ACTIONS(1442), - [sym_backslash_escape] = ACTIONS(1442), - [sym_entity_reference] = ACTIONS(1442), - [sym_numeric_character_reference] = ACTIONS(1442), - [sym_uri_autolink] = ACTIONS(1442), - [sym_email_autolink] = ACTIONS(1442), - [sym__whitespace_ge_2] = ACTIONS(1455), - [aux_sym__whitespace_token1] = ACTIONS(1458), - [sym__word_no_digit] = ACTIONS(1442), - [sym__digits] = ACTIONS(1442), - [aux_sym__newline_token1] = ACTIONS(1442), - [sym__block_close] = ACTIONS(1442), - [sym__block_quote_start] = ACTIONS(1442), - [sym__indented_chunk_start] = ACTIONS(1442), - [sym_atx_h1_marker] = ACTIONS(1442), - [sym_atx_h2_marker] = ACTIONS(1442), - [sym_atx_h3_marker] = ACTIONS(1442), - [sym_atx_h4_marker] = ACTIONS(1442), - [sym_atx_h5_marker] = ACTIONS(1442), - [sym_atx_h6_marker] = ACTIONS(1442), - [sym__thematic_break] = ACTIONS(1442), - [sym__list_marker_minus] = ACTIONS(1442), - [sym__list_marker_plus] = ACTIONS(1442), - [sym__list_marker_star] = ACTIONS(1442), - [sym__list_marker_parenthesis] = ACTIONS(1442), - [sym__list_marker_dot] = ACTIONS(1442), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), - [sym__fenced_code_block_start_backtick] = ACTIONS(1442), - [sym__fenced_code_block_start_tilde] = ACTIONS(1442), - [sym__blank_line_start] = ACTIONS(1442), - [sym__no_indented_chunk] = ACTIONS(1461), - [sym__code_span_start] = ACTIONS(1442), - [sym__emphasis_open_star] = ACTIONS(1442), - [sym__emphasis_open_underscore] = ACTIONS(1442), + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_parenthesis] = STATE(299), + [aux_sym__list_parenthesis_repeat1] = STATE(299), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_BSLASH] = ACTIONS(1427), + [anon_sym_RBRACK] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [aux_sym__html_block_1_token1] = ACTIONS(1425), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1427), + [anon_sym_LT_QMARK] = ACTIONS(1427), + [aux_sym__html_block_4_token1] = ACTIONS(1427), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1425), + [aux_sym__html_block_6_token1] = ACTIONS(1427), + [aux_sym__html_block_6_token2] = ACTIONS(1425), + [sym__open_tag_html_block] = ACTIONS(1425), + [sym__open_tag_html_block_newline] = ACTIONS(1425), + [sym__closing_tag_html_block] = ACTIONS(1425), + [sym__closing_tag_html_block_newline] = ACTIONS(1425), + [sym_backslash_escape] = ACTIONS(1425), + [sym_entity_reference] = ACTIONS(1425), + [sym_numeric_character_reference] = ACTIONS(1425), + [sym_uri_autolink] = ACTIONS(1425), + [sym_email_autolink] = ACTIONS(1425), + [sym__whitespace_ge_2] = ACTIONS(1425), + [aux_sym__whitespace_token1] = ACTIONS(1427), + [sym__word_no_digit] = ACTIONS(1425), + [sym__digits] = ACTIONS(1425), + [aux_sym__newline_token1] = ACTIONS(1425), + [sym__block_close] = ACTIONS(1425), + [sym__block_quote_start] = ACTIONS(1425), + [sym__indented_chunk_start] = ACTIONS(1425), + [sym_atx_h1_marker] = ACTIONS(1425), + [sym_atx_h2_marker] = ACTIONS(1425), + [sym_atx_h3_marker] = ACTIONS(1425), + [sym_atx_h4_marker] = ACTIONS(1425), + [sym_atx_h5_marker] = ACTIONS(1425), + [sym_atx_h6_marker] = ACTIONS(1425), + [sym__thematic_break] = ACTIONS(1425), + [sym__list_marker_minus] = ACTIONS(1425), + [sym__list_marker_plus] = ACTIONS(1425), + [sym__list_marker_star] = ACTIONS(1425), + [sym__list_marker_parenthesis] = ACTIONS(1429), + [sym__list_marker_dot] = ACTIONS(1425), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1425), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1425), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1425), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1429), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1425), + [sym__fenced_code_block_start_backtick] = ACTIONS(1425), + [sym__fenced_code_block_start_tilde] = ACTIONS(1425), + [sym__blank_line_start] = ACTIONS(1425), + [sym__code_span_start] = ACTIONS(1425), + [sym__emphasis_open_star] = ACTIONS(1425), + [sym__emphasis_open_underscore] = ACTIONS(1425), }, [300] = { - [sym_list_marker_parenthesis] = STATE(23), - [sym__list_item_parenthesis] = STATE(300), - [aux_sym__list_parenthesis_repeat1] = STATE(300), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_COLON] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_BSLASH] = ACTIONS(1465), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [aux_sym__html_block_1_token1] = ACTIONS(1463), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1465), - [anon_sym_LT_QMARK] = ACTIONS(1465), - [aux_sym__html_block_4_token1] = ACTIONS(1465), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1463), - [aux_sym__html_block_6_token1] = ACTIONS(1465), - [aux_sym__html_block_6_token2] = ACTIONS(1463), - [sym__open_tag_html_block] = ACTIONS(1463), - [sym__open_tag_html_block_newline] = ACTIONS(1463), - [sym__closing_tag_html_block] = ACTIONS(1463), - [sym__closing_tag_html_block_newline] = ACTIONS(1463), - [sym_backslash_escape] = ACTIONS(1463), - [sym_entity_reference] = ACTIONS(1463), - [sym_numeric_character_reference] = ACTIONS(1463), - [sym_uri_autolink] = ACTIONS(1463), - [sym_email_autolink] = ACTIONS(1463), - [sym__whitespace_ge_2] = ACTIONS(1463), - [aux_sym__whitespace_token1] = ACTIONS(1465), - [sym__word_no_digit] = ACTIONS(1463), - [sym__digits] = ACTIONS(1463), - [aux_sym__newline_token1] = ACTIONS(1463), - [sym__block_close] = ACTIONS(1463), - [sym__block_quote_start] = ACTIONS(1463), - [sym__indented_chunk_start] = ACTIONS(1463), - [sym_atx_h1_marker] = ACTIONS(1463), - [sym_atx_h2_marker] = ACTIONS(1463), - [sym_atx_h3_marker] = ACTIONS(1463), - [sym_atx_h4_marker] = ACTIONS(1463), - [sym_atx_h5_marker] = ACTIONS(1463), - [sym_atx_h6_marker] = ACTIONS(1463), - [sym__thematic_break] = ACTIONS(1463), - [sym__list_marker_minus] = ACTIONS(1463), - [sym__list_marker_plus] = ACTIONS(1463), - [sym__list_marker_star] = ACTIONS(1463), - [sym__list_marker_parenthesis] = ACTIONS(1467), - [sym__list_marker_dot] = ACTIONS(1463), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1467), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1463), - [sym__fenced_code_block_start_backtick] = ACTIONS(1463), - [sym__fenced_code_block_start_tilde] = ACTIONS(1463), - [sym__blank_line_start] = ACTIONS(1463), - [sym__code_span_start] = ACTIONS(1463), - [sym__emphasis_open_star] = ACTIONS(1463), - [sym__emphasis_open_underscore] = ACTIONS(1463), + [sym__soft_line_break] = STATE(264), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(264), + [sym_full_reference_link] = STATE(264), + [sym_collapsed_reference_link] = STATE(264), + [sym_inline_link] = STATE(264), + [sym_image] = STATE(264), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(264), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(264), + [sym__whitespace] = STATE(264), + [sym__word] = STATE(264), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(264), + [aux_sym__inline_no_underscore] = STATE(264), + [sym__text_inline_no_underscore] = STATE(264), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(264), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(264), + [sym__code_span] = STATE(264), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(1432), + [sym_entity_reference] = ACTIONS(1432), + [sym_numeric_character_reference] = ACTIONS(1432), + [sym_uri_autolink] = ACTIONS(1432), + [sym_email_autolink] = ACTIONS(1432), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1432), + [sym__digits] = ACTIONS(1432), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), }, [301] = { - [sym_list_marker_dot] = STATE(2), - [sym__list_item_dot] = STATE(301), - [aux_sym__list_dot_repeat1] = STATE(301), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1470), - [anon_sym_COLON] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_BSLASH] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [aux_sym__html_block_1_token1] = ACTIONS(1470), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1472), - [anon_sym_LT_QMARK] = ACTIONS(1472), - [aux_sym__html_block_4_token1] = ACTIONS(1472), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1470), - [aux_sym__html_block_6_token1] = ACTIONS(1472), - [aux_sym__html_block_6_token2] = ACTIONS(1470), - [sym__open_tag_html_block] = ACTIONS(1470), - [sym__open_tag_html_block_newline] = ACTIONS(1470), - [sym__closing_tag_html_block] = ACTIONS(1470), - [sym__closing_tag_html_block_newline] = ACTIONS(1470), - [sym_backslash_escape] = ACTIONS(1470), - [sym_entity_reference] = ACTIONS(1470), - [sym_numeric_character_reference] = ACTIONS(1470), - [sym_uri_autolink] = ACTIONS(1470), - [sym_email_autolink] = ACTIONS(1470), - [sym__whitespace_ge_2] = ACTIONS(1470), - [aux_sym__whitespace_token1] = ACTIONS(1472), - [sym__word_no_digit] = ACTIONS(1470), - [sym__digits] = ACTIONS(1470), - [aux_sym__newline_token1] = ACTIONS(1470), - [sym__block_close] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1470), - [sym__indented_chunk_start] = ACTIONS(1470), - [sym_atx_h1_marker] = ACTIONS(1470), - [sym_atx_h2_marker] = ACTIONS(1470), - [sym_atx_h3_marker] = ACTIONS(1470), - [sym_atx_h4_marker] = ACTIONS(1470), - [sym_atx_h5_marker] = ACTIONS(1470), - [sym_atx_h6_marker] = ACTIONS(1470), - [sym__thematic_break] = ACTIONS(1470), - [sym__list_marker_minus] = ACTIONS(1470), - [sym__list_marker_plus] = ACTIONS(1470), - [sym__list_marker_star] = ACTIONS(1470), - [sym__list_marker_parenthesis] = ACTIONS(1470), - [sym__list_marker_dot] = ACTIONS(1474), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), - [sym__fenced_code_block_start_backtick] = ACTIONS(1470), - [sym__fenced_code_block_start_tilde] = ACTIONS(1470), - [sym__blank_line_start] = ACTIONS(1470), - [sym__code_span_start] = ACTIONS(1470), - [sym__emphasis_open_star] = ACTIONS(1470), - [sym__emphasis_open_underscore] = ACTIONS(1470), - }, - [302] = { - [sym_list_marker_star] = STATE(24), - [sym__list_item_star] = STATE(302), - [aux_sym__list_star_repeat1] = STATE(302), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_RBRACK] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [aux_sym__html_block_1_token1] = ACTIONS(1477), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1479), - [anon_sym_LT_QMARK] = ACTIONS(1479), - [aux_sym__html_block_4_token1] = ACTIONS(1479), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1477), - [aux_sym__html_block_6_token1] = ACTIONS(1479), - [aux_sym__html_block_6_token2] = ACTIONS(1477), - [sym__open_tag_html_block] = ACTIONS(1477), - [sym__open_tag_html_block_newline] = ACTIONS(1477), - [sym__closing_tag_html_block] = ACTIONS(1477), - [sym__closing_tag_html_block_newline] = ACTIONS(1477), - [sym_backslash_escape] = ACTIONS(1477), - [sym_entity_reference] = ACTIONS(1477), - [sym_numeric_character_reference] = ACTIONS(1477), - [sym_uri_autolink] = ACTIONS(1477), - [sym_email_autolink] = ACTIONS(1477), - [sym__whitespace_ge_2] = ACTIONS(1477), - [aux_sym__whitespace_token1] = ACTIONS(1479), - [sym__word_no_digit] = ACTIONS(1477), - [sym__digits] = ACTIONS(1477), - [aux_sym__newline_token1] = ACTIONS(1477), - [sym__block_close] = ACTIONS(1477), - [sym__block_quote_start] = ACTIONS(1477), - [sym__indented_chunk_start] = ACTIONS(1477), - [sym_atx_h1_marker] = ACTIONS(1477), - [sym_atx_h2_marker] = ACTIONS(1477), - [sym_atx_h3_marker] = ACTIONS(1477), - [sym_atx_h4_marker] = ACTIONS(1477), - [sym_atx_h5_marker] = ACTIONS(1477), - [sym_atx_h6_marker] = ACTIONS(1477), - [sym__thematic_break] = ACTIONS(1477), - [sym__list_marker_minus] = ACTIONS(1477), - [sym__list_marker_plus] = ACTIONS(1477), - [sym__list_marker_star] = ACTIONS(1481), - [sym__list_marker_parenthesis] = ACTIONS(1477), - [sym__list_marker_dot] = ACTIONS(1477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1481), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1477), - [sym__fenced_code_block_start_backtick] = ACTIONS(1477), - [sym__fenced_code_block_start_tilde] = ACTIONS(1477), - [sym__blank_line_start] = ACTIONS(1477), - [sym__code_span_start] = ACTIONS(1477), - [sym__emphasis_open_star] = ACTIONS(1477), - [sym__emphasis_open_underscore] = ACTIONS(1477), - }, - [303] = { - [sym_list_marker_minus] = STATE(25), - [sym__list_item_minus] = STATE(303), - [aux_sym__list_minus_repeat1] = STATE(303), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_PERCENT] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_DOT] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_COLON] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_QMARK] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_BSLASH] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1484), - [anon_sym_CARET] = ACTIONS(1484), - [anon_sym__] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [aux_sym__html_block_1_token1] = ACTIONS(1484), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1486), - [anon_sym_LT_QMARK] = ACTIONS(1486), - [aux_sym__html_block_4_token1] = ACTIONS(1486), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1484), - [aux_sym__html_block_6_token1] = ACTIONS(1486), - [aux_sym__html_block_6_token2] = ACTIONS(1484), - [sym__open_tag_html_block] = ACTIONS(1484), - [sym__open_tag_html_block_newline] = ACTIONS(1484), - [sym__closing_tag_html_block] = ACTIONS(1484), - [sym__closing_tag_html_block_newline] = ACTIONS(1484), - [sym_backslash_escape] = ACTIONS(1484), - [sym_entity_reference] = ACTIONS(1484), - [sym_numeric_character_reference] = ACTIONS(1484), - [sym_uri_autolink] = ACTIONS(1484), - [sym_email_autolink] = ACTIONS(1484), - [sym__whitespace_ge_2] = ACTIONS(1484), - [aux_sym__whitespace_token1] = ACTIONS(1486), - [sym__word_no_digit] = ACTIONS(1484), - [sym__digits] = ACTIONS(1484), - [aux_sym__newline_token1] = ACTIONS(1484), - [sym__block_close] = ACTIONS(1484), - [sym__block_quote_start] = ACTIONS(1484), - [sym__indented_chunk_start] = ACTIONS(1484), - [sym_atx_h1_marker] = ACTIONS(1484), - [sym_atx_h2_marker] = ACTIONS(1484), - [sym_atx_h3_marker] = ACTIONS(1484), - [sym_atx_h4_marker] = ACTIONS(1484), - [sym_atx_h5_marker] = ACTIONS(1484), - [sym_atx_h6_marker] = ACTIONS(1484), - [sym__thematic_break] = ACTIONS(1484), - [sym__list_marker_minus] = ACTIONS(1488), - [sym__list_marker_plus] = ACTIONS(1484), - [sym__list_marker_star] = ACTIONS(1484), - [sym__list_marker_parenthesis] = ACTIONS(1484), - [sym__list_marker_dot] = ACTIONS(1484), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), - [sym__fenced_code_block_start_backtick] = ACTIONS(1484), - [sym__fenced_code_block_start_tilde] = ACTIONS(1484), - [sym__blank_line_start] = ACTIONS(1484), - [sym__code_span_start] = ACTIONS(1484), - [sym__emphasis_open_star] = ACTIONS(1484), - [sym__emphasis_open_underscore] = ACTIONS(1484), - }, - [304] = { - [sym_list_marker_plus] = STATE(29), - [sym__list_item_plus] = STATE(304), - [aux_sym__list_plus_repeat1] = STATE(304), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_COLON] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_BSLASH] = ACTIONS(1493), - [anon_sym_RBRACK] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym__] = ACTIONS(1491), - [anon_sym_BQUOTE] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [aux_sym__html_block_1_token1] = ACTIONS(1491), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1493), - [anon_sym_LT_QMARK] = ACTIONS(1493), - [aux_sym__html_block_4_token1] = ACTIONS(1493), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1491), - [aux_sym__html_block_6_token1] = ACTIONS(1493), - [aux_sym__html_block_6_token2] = ACTIONS(1491), - [sym__open_tag_html_block] = ACTIONS(1491), - [sym__open_tag_html_block_newline] = ACTIONS(1491), - [sym__closing_tag_html_block] = ACTIONS(1491), - [sym__closing_tag_html_block_newline] = ACTIONS(1491), - [sym_backslash_escape] = ACTIONS(1491), - [sym_entity_reference] = ACTIONS(1491), - [sym_numeric_character_reference] = ACTIONS(1491), - [sym_uri_autolink] = ACTIONS(1491), - [sym_email_autolink] = ACTIONS(1491), - [sym__whitespace_ge_2] = ACTIONS(1491), - [aux_sym__whitespace_token1] = ACTIONS(1493), - [sym__word_no_digit] = ACTIONS(1491), - [sym__digits] = ACTIONS(1491), - [aux_sym__newline_token1] = ACTIONS(1491), - [sym__block_close] = ACTIONS(1491), - [sym__block_quote_start] = ACTIONS(1491), - [sym__indented_chunk_start] = ACTIONS(1491), - [sym_atx_h1_marker] = ACTIONS(1491), - [sym_atx_h2_marker] = ACTIONS(1491), - [sym_atx_h3_marker] = ACTIONS(1491), - [sym_atx_h4_marker] = ACTIONS(1491), - [sym_atx_h5_marker] = ACTIONS(1491), - [sym_atx_h6_marker] = ACTIONS(1491), - [sym__thematic_break] = ACTIONS(1491), - [sym__list_marker_minus] = ACTIONS(1491), - [sym__list_marker_plus] = ACTIONS(1495), - [sym__list_marker_star] = ACTIONS(1491), - [sym__list_marker_parenthesis] = ACTIONS(1491), - [sym__list_marker_dot] = ACTIONS(1491), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1491), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1495), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1491), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1491), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1491), - [sym__fenced_code_block_start_backtick] = ACTIONS(1491), - [sym__fenced_code_block_start_tilde] = ACTIONS(1491), - [sym__blank_line_start] = ACTIONS(1491), - [sym__code_span_start] = ACTIONS(1491), - [sym__emphasis_open_star] = ACTIONS(1491), - [sym__emphasis_open_underscore] = ACTIONS(1491), - }, - [305] = { - [sym_list_marker_dot] = STATE(42), - [sym__list_item_dot] = STATE(340), - [aux_sym__list_dot_repeat1] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1498), - [anon_sym_COLON] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1498), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_BSLASH] = ACTIONS(1500), - [anon_sym_RBRACK] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym__] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [aux_sym__html_block_1_token1] = ACTIONS(1498), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1500), - [anon_sym_LT_QMARK] = ACTIONS(1500), - [aux_sym__html_block_4_token1] = ACTIONS(1500), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1498), - [aux_sym__html_block_6_token1] = ACTIONS(1500), - [aux_sym__html_block_6_token2] = ACTIONS(1498), - [sym__open_tag_html_block] = ACTIONS(1498), - [sym__open_tag_html_block_newline] = ACTIONS(1498), - [sym__closing_tag_html_block] = ACTIONS(1498), - [sym__closing_tag_html_block_newline] = ACTIONS(1498), - [sym_backslash_escape] = ACTIONS(1498), - [sym_entity_reference] = ACTIONS(1498), - [sym_numeric_character_reference] = ACTIONS(1498), - [sym_uri_autolink] = ACTIONS(1498), - [sym_email_autolink] = ACTIONS(1498), - [sym__whitespace_ge_2] = ACTIONS(1498), - [aux_sym__whitespace_token1] = ACTIONS(1500), - [sym__word_no_digit] = ACTIONS(1498), - [sym__digits] = ACTIONS(1498), - [aux_sym__newline_token1] = ACTIONS(1498), - [sym__block_quote_start] = ACTIONS(1498), - [sym__indented_chunk_start] = ACTIONS(1498), - [sym_atx_h1_marker] = ACTIONS(1498), - [sym_atx_h2_marker] = ACTIONS(1498), - [sym_atx_h3_marker] = ACTIONS(1498), - [sym_atx_h4_marker] = ACTIONS(1498), - [sym_atx_h5_marker] = ACTIONS(1498), - [sym_atx_h6_marker] = ACTIONS(1498), - [sym__thematic_break] = ACTIONS(1498), - [sym__list_marker_minus] = ACTIONS(1498), - [sym__list_marker_plus] = ACTIONS(1498), - [sym__list_marker_star] = ACTIONS(1498), - [sym__list_marker_parenthesis] = ACTIONS(1498), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(1498), - [sym__fenced_code_block_start_tilde] = ACTIONS(1498), - [sym__blank_line_start] = ACTIONS(1498), - [sym__code_span_start] = ACTIONS(1498), - [sym__emphasis_open_star] = ACTIONS(1498), - [sym__emphasis_open_underscore] = ACTIONS(1498), - }, - [306] = { - [sym_list_marker_star] = STATE(41), - [sym__list_item_star] = STATE(338), - [aux_sym__list_star_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_DOLLAR] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_DOT] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_QMARK] = ACTIONS(1502), - [anon_sym_AT] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_BSLASH] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym__] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [aux_sym__html_block_1_token1] = ACTIONS(1502), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1504), - [anon_sym_LT_QMARK] = ACTIONS(1504), - [aux_sym__html_block_4_token1] = ACTIONS(1504), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1502), - [aux_sym__html_block_6_token1] = ACTIONS(1504), - [aux_sym__html_block_6_token2] = ACTIONS(1502), - [sym__open_tag_html_block] = ACTIONS(1502), - [sym__open_tag_html_block_newline] = ACTIONS(1502), - [sym__closing_tag_html_block] = ACTIONS(1502), - [sym__closing_tag_html_block_newline] = ACTIONS(1502), - [sym_backslash_escape] = ACTIONS(1502), - [sym_entity_reference] = ACTIONS(1502), - [sym_numeric_character_reference] = ACTIONS(1502), - [sym_uri_autolink] = ACTIONS(1502), - [sym_email_autolink] = ACTIONS(1502), - [sym__whitespace_ge_2] = ACTIONS(1502), - [aux_sym__whitespace_token1] = ACTIONS(1504), - [sym__word_no_digit] = ACTIONS(1502), - [sym__digits] = ACTIONS(1502), - [aux_sym__newline_token1] = ACTIONS(1502), - [sym__block_quote_start] = ACTIONS(1502), - [sym__indented_chunk_start] = ACTIONS(1502), - [sym_atx_h1_marker] = ACTIONS(1502), - [sym_atx_h2_marker] = ACTIONS(1502), - [sym_atx_h3_marker] = ACTIONS(1502), - [sym_atx_h4_marker] = ACTIONS(1502), - [sym_atx_h5_marker] = ACTIONS(1502), - [sym_atx_h6_marker] = ACTIONS(1502), - [sym__thematic_break] = ACTIONS(1502), - [sym__list_marker_minus] = ACTIONS(1502), - [sym__list_marker_plus] = ACTIONS(1502), - [sym__list_marker_star] = ACTIONS(57), - [sym__list_marker_parenthesis] = ACTIONS(1502), - [sym__list_marker_dot] = ACTIONS(1502), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1502), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1502), - [sym__list_marker_star_dont_interrupt] = ACTIONS(57), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1502), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1502), - [sym__fenced_code_block_start_backtick] = ACTIONS(1502), - [sym__fenced_code_block_start_tilde] = ACTIONS(1502), - [sym__blank_line_start] = ACTIONS(1502), - [sym__code_span_start] = ACTIONS(1502), - [sym__emphasis_open_star] = ACTIONS(1502), - [sym__emphasis_open_underscore] = ACTIONS(1502), - }, - [307] = { - [sym_list_marker_minus] = STATE(40), - [sym__list_item_minus] = STATE(337), - [aux_sym__list_minus_repeat1] = STATE(337), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [aux_sym__html_block_1_token1] = ACTIONS(1506), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1508), - [anon_sym_LT_QMARK] = ACTIONS(1508), - [aux_sym__html_block_4_token1] = ACTIONS(1508), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1506), - [aux_sym__html_block_6_token1] = ACTIONS(1508), - [aux_sym__html_block_6_token2] = ACTIONS(1506), - [sym__open_tag_html_block] = ACTIONS(1506), - [sym__open_tag_html_block_newline] = ACTIONS(1506), - [sym__closing_tag_html_block] = ACTIONS(1506), - [sym__closing_tag_html_block_newline] = ACTIONS(1506), - [sym_backslash_escape] = ACTIONS(1506), - [sym_entity_reference] = ACTIONS(1506), - [sym_numeric_character_reference] = ACTIONS(1506), - [sym_uri_autolink] = ACTIONS(1506), - [sym_email_autolink] = ACTIONS(1506), - [sym__whitespace_ge_2] = ACTIONS(1506), - [aux_sym__whitespace_token1] = ACTIONS(1508), - [sym__word_no_digit] = ACTIONS(1506), - [sym__digits] = ACTIONS(1506), - [aux_sym__newline_token1] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__emphasis_open_star] = ACTIONS(1506), - [sym__emphasis_open_underscore] = ACTIONS(1506), - }, - [308] = { - [sym_list_marker_plus] = STATE(39), - [sym__list_item_plus] = STATE(336), - [aux_sym__list_plus_repeat1] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [aux_sym__html_block_1_token1] = ACTIONS(1510), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1512), - [anon_sym_LT_QMARK] = ACTIONS(1512), - [aux_sym__html_block_4_token1] = ACTIONS(1512), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1510), - [aux_sym__html_block_6_token1] = ACTIONS(1512), - [aux_sym__html_block_6_token2] = ACTIONS(1510), - [sym__open_tag_html_block] = ACTIONS(1510), - [sym__open_tag_html_block_newline] = ACTIONS(1510), - [sym__closing_tag_html_block] = ACTIONS(1510), - [sym__closing_tag_html_block_newline] = ACTIONS(1510), - [sym_backslash_escape] = ACTIONS(1510), - [sym_entity_reference] = ACTIONS(1510), - [sym_numeric_character_reference] = ACTIONS(1510), - [sym_uri_autolink] = ACTIONS(1510), - [sym_email_autolink] = ACTIONS(1510), - [sym__whitespace_ge_2] = ACTIONS(1510), - [aux_sym__whitespace_token1] = ACTIONS(1512), - [sym__word_no_digit] = ACTIONS(1510), - [sym__digits] = ACTIONS(1510), - [aux_sym__newline_token1] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__emphasis_open_star] = ACTIONS(1510), - [sym__emphasis_open_underscore] = ACTIONS(1510), - }, - [309] = { - [sym__indented_chunk] = STATE(295), - [sym__blank_line] = STATE(295), - [aux_sym_indented_code_block_repeat1] = STATE(295), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_COLON] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1514), - [anon_sym_AT] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_BSLASH] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym__] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [aux_sym__html_block_1_token1] = ACTIONS(1514), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1516), - [anon_sym_LT_QMARK] = ACTIONS(1516), - [aux_sym__html_block_4_token1] = ACTIONS(1516), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1514), - [aux_sym__html_block_6_token1] = ACTIONS(1516), - [aux_sym__html_block_6_token2] = ACTIONS(1514), - [sym__open_tag_html_block] = ACTIONS(1514), - [sym__open_tag_html_block_newline] = ACTIONS(1514), - [sym__closing_tag_html_block] = ACTIONS(1514), - [sym__closing_tag_html_block_newline] = ACTIONS(1514), - [sym_backslash_escape] = ACTIONS(1514), - [sym_entity_reference] = ACTIONS(1514), - [sym_numeric_character_reference] = ACTIONS(1514), - [sym_uri_autolink] = ACTIONS(1514), - [sym_email_autolink] = ACTIONS(1514), - [sym__whitespace_ge_2] = ACTIONS(1514), - [aux_sym__whitespace_token1] = ACTIONS(1516), - [sym__word_no_digit] = ACTIONS(1514), - [sym__digits] = ACTIONS(1514), - [aux_sym__newline_token1] = ACTIONS(1514), - [sym__block_close] = ACTIONS(1514), - [sym__block_quote_start] = ACTIONS(1514), - [sym__indented_chunk_start] = ACTIONS(97), - [sym_atx_h1_marker] = ACTIONS(1514), - [sym_atx_h2_marker] = ACTIONS(1514), - [sym_atx_h3_marker] = ACTIONS(1514), - [sym_atx_h4_marker] = ACTIONS(1514), - [sym_atx_h5_marker] = ACTIONS(1514), - [sym_atx_h6_marker] = ACTIONS(1514), - [sym__thematic_break] = ACTIONS(1514), - [sym__list_marker_minus] = ACTIONS(1514), - [sym__list_marker_plus] = ACTIONS(1514), - [sym__list_marker_star] = ACTIONS(1514), - [sym__list_marker_parenthesis] = ACTIONS(1514), - [sym__list_marker_dot] = ACTIONS(1514), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1514), - [sym__fenced_code_block_start_backtick] = ACTIONS(1514), - [sym__fenced_code_block_start_tilde] = ACTIONS(1514), - [sym__blank_line_start] = ACTIONS(107), - [sym__code_span_start] = ACTIONS(1514), - [sym__emphasis_open_star] = ACTIONS(1514), - [sym__emphasis_open_underscore] = ACTIONS(1514), - }, - [310] = { - [sym_link_title] = STATE(2374), - [sym__whitespace] = STATE(2162), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_COLON] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(1523), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym__] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [aux_sym__html_block_1_token1] = ACTIONS(1518), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1523), - [anon_sym_LT_QMARK] = ACTIONS(1523), - [aux_sym__html_block_4_token1] = ACTIONS(1523), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1518), - [aux_sym__html_block_6_token1] = ACTIONS(1523), - [aux_sym__html_block_6_token2] = ACTIONS(1518), - [sym__open_tag_html_block] = ACTIONS(1518), - [sym__open_tag_html_block_newline] = ACTIONS(1518), - [sym__closing_tag_html_block] = ACTIONS(1518), - [sym__closing_tag_html_block_newline] = ACTIONS(1518), - [sym_backslash_escape] = ACTIONS(1518), - [sym_entity_reference] = ACTIONS(1518), - [sym_numeric_character_reference] = ACTIONS(1518), - [sym_uri_autolink] = ACTIONS(1518), - [sym_email_autolink] = ACTIONS(1518), - [sym__whitespace_ge_2] = ACTIONS(1531), - [aux_sym__whitespace_token1] = ACTIONS(1534), - [sym__word_no_digit] = ACTIONS(1518), - [sym__digits] = ACTIONS(1518), - [aux_sym__newline_token1] = ACTIONS(1518), - [sym__block_close] = ACTIONS(1518), - [sym__block_quote_start] = ACTIONS(1518), - [sym__indented_chunk_start] = ACTIONS(1518), - [sym_atx_h1_marker] = ACTIONS(1518), - [sym_atx_h2_marker] = ACTIONS(1518), - [sym_atx_h3_marker] = ACTIONS(1518), - [sym_atx_h4_marker] = ACTIONS(1518), - [sym_atx_h5_marker] = ACTIONS(1518), - [sym_atx_h6_marker] = ACTIONS(1518), - [sym__thematic_break] = ACTIONS(1518), - [sym__list_marker_minus] = ACTIONS(1518), - [sym__list_marker_plus] = ACTIONS(1518), - [sym__list_marker_star] = ACTIONS(1518), - [sym__list_marker_parenthesis] = ACTIONS(1518), - [sym__list_marker_dot] = ACTIONS(1518), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), - [sym__fenced_code_block_start_backtick] = ACTIONS(1518), - [sym__fenced_code_block_start_tilde] = ACTIONS(1518), - [sym__blank_line_start] = ACTIONS(1518), - [sym__no_indented_chunk] = ACTIONS(1537), - [sym__code_span_start] = ACTIONS(1518), - [sym__emphasis_open_star] = ACTIONS(1518), - [sym__emphasis_open_underscore] = ACTIONS(1518), - }, - [311] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(331), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -59480,83 +58652,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [312] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [302] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(348), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1539), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -59564,167 +58736,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [313] = { - [sym_link_title] = STATE(2307), - [sym__whitespace] = STATE(2168), - [ts_builtin_sym_end] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_COLON] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_RBRACK] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym__] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [aux_sym__html_block_1_token1] = ACTIONS(1541), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1546), - [anon_sym_LT_QMARK] = ACTIONS(1546), - [aux_sym__html_block_4_token1] = ACTIONS(1546), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1541), - [aux_sym__html_block_6_token1] = ACTIONS(1546), - [aux_sym__html_block_6_token2] = ACTIONS(1541), - [sym__open_tag_html_block] = ACTIONS(1541), - [sym__open_tag_html_block_newline] = ACTIONS(1541), - [sym__closing_tag_html_block] = ACTIONS(1541), - [sym__closing_tag_html_block_newline] = ACTIONS(1541), - [sym_backslash_escape] = ACTIONS(1541), - [sym_entity_reference] = ACTIONS(1541), - [sym_numeric_character_reference] = ACTIONS(1541), - [sym_uri_autolink] = ACTIONS(1541), - [sym_email_autolink] = ACTIONS(1541), - [sym__whitespace_ge_2] = ACTIONS(1554), - [aux_sym__whitespace_token1] = ACTIONS(1557), - [sym__word_no_digit] = ACTIONS(1541), - [sym__digits] = ACTIONS(1541), - [aux_sym__newline_token1] = ACTIONS(1541), - [sym__block_quote_start] = ACTIONS(1541), - [sym__indented_chunk_start] = ACTIONS(1541), - [sym_atx_h1_marker] = ACTIONS(1541), - [sym_atx_h2_marker] = ACTIONS(1541), - [sym_atx_h3_marker] = ACTIONS(1541), - [sym_atx_h4_marker] = ACTIONS(1541), - [sym_atx_h5_marker] = ACTIONS(1541), - [sym_atx_h6_marker] = ACTIONS(1541), - [sym__thematic_break] = ACTIONS(1541), - [sym__list_marker_minus] = ACTIONS(1541), - [sym__list_marker_plus] = ACTIONS(1541), - [sym__list_marker_star] = ACTIONS(1541), - [sym__list_marker_parenthesis] = ACTIONS(1541), - [sym__list_marker_dot] = ACTIONS(1541), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1541), - [sym__fenced_code_block_start_backtick] = ACTIONS(1541), - [sym__fenced_code_block_start_tilde] = ACTIONS(1541), - [sym__blank_line_start] = ACTIONS(1541), - [sym__no_indented_chunk] = ACTIONS(1560), - [sym__code_span_start] = ACTIONS(1541), - [sym__emphasis_open_star] = ACTIONS(1541), - [sym__emphasis_open_underscore] = ACTIONS(1541), + [303] = { + [sym_list_marker_parenthesis] = STATE(11), + [sym__list_item_parenthesis] = STATE(299), + [aux_sym__list_parenthesis_repeat1] = STATE(299), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [aux_sym__html_block_1_token1] = ACTIONS(1436), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1438), + [anon_sym_LT_QMARK] = ACTIONS(1438), + [aux_sym__html_block_4_token1] = ACTIONS(1438), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1436), + [aux_sym__html_block_6_token1] = ACTIONS(1438), + [aux_sym__html_block_6_token2] = ACTIONS(1436), + [sym__open_tag_html_block] = ACTIONS(1436), + [sym__open_tag_html_block_newline] = ACTIONS(1436), + [sym__closing_tag_html_block] = ACTIONS(1436), + [sym__closing_tag_html_block_newline] = ACTIONS(1436), + [sym_backslash_escape] = ACTIONS(1436), + [sym_entity_reference] = ACTIONS(1436), + [sym_numeric_character_reference] = ACTIONS(1436), + [sym_uri_autolink] = ACTIONS(1436), + [sym_email_autolink] = ACTIONS(1436), + [sym__whitespace_ge_2] = ACTIONS(1436), + [aux_sym__whitespace_token1] = ACTIONS(1438), + [sym__word_no_digit] = ACTIONS(1436), + [sym__digits] = ACTIONS(1436), + [aux_sym__newline_token1] = ACTIONS(1436), + [sym__block_close] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym__code_span_start] = ACTIONS(1436), + [sym__emphasis_open_star] = ACTIONS(1436), + [sym__emphasis_open_underscore] = ACTIONS(1436), }, - [314] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [304] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(315), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1562), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -59732,923 +58904,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [315] = { - [sym_list_marker_parenthesis] = STATE(23), - [sym__list_item_parenthesis] = STATE(300), - [aux_sym__list_parenthesis_repeat1] = STATE(300), - [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(1417), - [sym__list_marker_plus] = ACTIONS(1417), - [sym__list_marker_star] = ACTIONS(1417), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(1417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1417), - [sym__fenced_code_block_start_backtick] = ACTIONS(1417), - [sym__fenced_code_block_start_tilde] = ACTIONS(1417), - [sym__blank_line_start] = ACTIONS(1417), - [sym__code_span_start] = ACTIONS(1417), - [sym__emphasis_open_star] = ACTIONS(1417), - [sym__emphasis_open_underscore] = ACTIONS(1417), - }, - [316] = { - [sym_list_marker_dot] = STATE(2), - [sym__list_item_dot] = STATE(301), - [aux_sym__list_dot_repeat1] = STATE(301), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1498), - [anon_sym_COLON] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1498), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_BSLASH] = ACTIONS(1500), - [anon_sym_RBRACK] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym__] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [aux_sym__html_block_1_token1] = ACTIONS(1498), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1500), - [anon_sym_LT_QMARK] = ACTIONS(1500), - [aux_sym__html_block_4_token1] = ACTIONS(1500), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1498), - [aux_sym__html_block_6_token1] = ACTIONS(1500), - [aux_sym__html_block_6_token2] = ACTIONS(1498), - [sym__open_tag_html_block] = ACTIONS(1498), - [sym__open_tag_html_block_newline] = ACTIONS(1498), - [sym__closing_tag_html_block] = ACTIONS(1498), - [sym__closing_tag_html_block_newline] = ACTIONS(1498), - [sym_backslash_escape] = ACTIONS(1498), - [sym_entity_reference] = ACTIONS(1498), - [sym_numeric_character_reference] = ACTIONS(1498), - [sym_uri_autolink] = ACTIONS(1498), - [sym_email_autolink] = ACTIONS(1498), - [sym__whitespace_ge_2] = ACTIONS(1498), - [aux_sym__whitespace_token1] = ACTIONS(1500), - [sym__word_no_digit] = ACTIONS(1498), - [sym__digits] = ACTIONS(1498), - [aux_sym__newline_token1] = ACTIONS(1498), - [sym__block_close] = ACTIONS(1498), - [sym__block_quote_start] = ACTIONS(1498), - [sym__indented_chunk_start] = ACTIONS(1498), - [sym_atx_h1_marker] = ACTIONS(1498), - [sym_atx_h2_marker] = ACTIONS(1498), - [sym_atx_h3_marker] = ACTIONS(1498), - [sym_atx_h4_marker] = ACTIONS(1498), - [sym_atx_h5_marker] = ACTIONS(1498), - [sym_atx_h6_marker] = ACTIONS(1498), - [sym__thematic_break] = ACTIONS(1498), - [sym__list_marker_minus] = ACTIONS(1498), - [sym__list_marker_plus] = ACTIONS(1498), - [sym__list_marker_star] = ACTIONS(1498), - [sym__list_marker_parenthesis] = ACTIONS(1498), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(1498), - [sym__fenced_code_block_start_tilde] = ACTIONS(1498), - [sym__blank_line_start] = ACTIONS(1498), - [sym__code_span_start] = ACTIONS(1498), - [sym__emphasis_open_star] = ACTIONS(1498), - [sym__emphasis_open_underscore] = ACTIONS(1498), - }, - [317] = { - [sym_list_marker_star] = STATE(24), - [sym__list_item_star] = STATE(302), - [aux_sym__list_star_repeat1] = STATE(302), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_DOLLAR] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_DOT] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_QMARK] = ACTIONS(1502), - [anon_sym_AT] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_BSLASH] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym__] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [aux_sym__html_block_1_token1] = ACTIONS(1502), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1504), - [anon_sym_LT_QMARK] = ACTIONS(1504), - [aux_sym__html_block_4_token1] = ACTIONS(1504), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1502), - [aux_sym__html_block_6_token1] = ACTIONS(1504), - [aux_sym__html_block_6_token2] = ACTIONS(1502), - [sym__open_tag_html_block] = ACTIONS(1502), - [sym__open_tag_html_block_newline] = ACTIONS(1502), - [sym__closing_tag_html_block] = ACTIONS(1502), - [sym__closing_tag_html_block_newline] = ACTIONS(1502), - [sym_backslash_escape] = ACTIONS(1502), - [sym_entity_reference] = ACTIONS(1502), - [sym_numeric_character_reference] = ACTIONS(1502), - [sym_uri_autolink] = ACTIONS(1502), - [sym_email_autolink] = ACTIONS(1502), - [sym__whitespace_ge_2] = ACTIONS(1502), - [aux_sym__whitespace_token1] = ACTIONS(1504), - [sym__word_no_digit] = ACTIONS(1502), - [sym__digits] = ACTIONS(1502), - [aux_sym__newline_token1] = ACTIONS(1502), - [sym__block_close] = ACTIONS(1502), - [sym__block_quote_start] = ACTIONS(1502), - [sym__indented_chunk_start] = ACTIONS(1502), - [sym_atx_h1_marker] = ACTIONS(1502), - [sym_atx_h2_marker] = ACTIONS(1502), - [sym_atx_h3_marker] = ACTIONS(1502), - [sym_atx_h4_marker] = ACTIONS(1502), - [sym_atx_h5_marker] = ACTIONS(1502), - [sym_atx_h6_marker] = ACTIONS(1502), - [sym__thematic_break] = ACTIONS(1502), - [sym__list_marker_minus] = ACTIONS(1502), - [sym__list_marker_plus] = ACTIONS(1502), - [sym__list_marker_star] = ACTIONS(57), - [sym__list_marker_parenthesis] = ACTIONS(1502), - [sym__list_marker_dot] = ACTIONS(1502), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1502), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1502), - [sym__list_marker_star_dont_interrupt] = ACTIONS(57), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1502), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1502), - [sym__fenced_code_block_start_backtick] = ACTIONS(1502), - [sym__fenced_code_block_start_tilde] = ACTIONS(1502), - [sym__blank_line_start] = ACTIONS(1502), - [sym__code_span_start] = ACTIONS(1502), - [sym__emphasis_open_star] = ACTIONS(1502), - [sym__emphasis_open_underscore] = ACTIONS(1502), - }, - [318] = { - [sym_list_marker_minus] = STATE(25), - [sym__list_item_minus] = STATE(303), - [aux_sym__list_minus_repeat1] = STATE(303), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [aux_sym__html_block_1_token1] = ACTIONS(1506), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1508), - [anon_sym_LT_QMARK] = ACTIONS(1508), - [aux_sym__html_block_4_token1] = ACTIONS(1508), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1506), - [aux_sym__html_block_6_token1] = ACTIONS(1508), - [aux_sym__html_block_6_token2] = ACTIONS(1506), - [sym__open_tag_html_block] = ACTIONS(1506), - [sym__open_tag_html_block_newline] = ACTIONS(1506), - [sym__closing_tag_html_block] = ACTIONS(1506), - [sym__closing_tag_html_block_newline] = ACTIONS(1506), - [sym_backslash_escape] = ACTIONS(1506), - [sym_entity_reference] = ACTIONS(1506), - [sym_numeric_character_reference] = ACTIONS(1506), - [sym_uri_autolink] = ACTIONS(1506), - [sym_email_autolink] = ACTIONS(1506), - [sym__whitespace_ge_2] = ACTIONS(1506), - [aux_sym__whitespace_token1] = ACTIONS(1508), - [sym__word_no_digit] = ACTIONS(1506), - [sym__digits] = ACTIONS(1506), - [aux_sym__newline_token1] = ACTIONS(1506), - [sym__block_close] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__emphasis_open_star] = ACTIONS(1506), - [sym__emphasis_open_underscore] = ACTIONS(1506), - }, - [319] = { - [sym_list_marker_plus] = STATE(29), - [sym__list_item_plus] = STATE(304), - [aux_sym__list_plus_repeat1] = STATE(304), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [aux_sym__html_block_1_token1] = ACTIONS(1510), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1512), - [anon_sym_LT_QMARK] = ACTIONS(1512), - [aux_sym__html_block_4_token1] = ACTIONS(1512), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1510), - [aux_sym__html_block_6_token1] = ACTIONS(1512), - [aux_sym__html_block_6_token2] = ACTIONS(1510), - [sym__open_tag_html_block] = ACTIONS(1510), - [sym__open_tag_html_block_newline] = ACTIONS(1510), - [sym__closing_tag_html_block] = ACTIONS(1510), - [sym__closing_tag_html_block_newline] = ACTIONS(1510), - [sym_backslash_escape] = ACTIONS(1510), - [sym_entity_reference] = ACTIONS(1510), - [sym_numeric_character_reference] = ACTIONS(1510), - [sym_uri_autolink] = ACTIONS(1510), - [sym_email_autolink] = ACTIONS(1510), - [sym__whitespace_ge_2] = ACTIONS(1510), - [aux_sym__whitespace_token1] = ACTIONS(1512), - [sym__word_no_digit] = ACTIONS(1510), - [sym__digits] = ACTIONS(1510), - [aux_sym__newline_token1] = ACTIONS(1510), - [sym__block_close] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__emphasis_open_star] = ACTIONS(1510), - [sym__emphasis_open_underscore] = ACTIONS(1510), - }, - [320] = { - [sym__block_interrupt_paragraph] = STATE(902), - [sym_thematic_break] = STATE(902), - [sym_atx_heading] = STATE(902), - [sym_fenced_code_block] = STATE(902), - [sym__html_block_1] = STATE(902), - [sym__html_block_2] = STATE(902), - [sym__html_block_3] = STATE(902), - [sym__html_block_4] = STATE(902), - [sym__html_block_5] = STATE(902), - [sym__html_block_6] = STATE(902), - [sym__blank_line] = STATE(902), - [sym_block_quote] = STATE(902), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_BSLASH] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [aux_sym__html_block_1_token1] = ACTIONS(493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(495), - [anon_sym_LT_QMARK] = ACTIONS(497), - [aux_sym__html_block_4_token1] = ACTIONS(499), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(501), - [aux_sym__html_block_6_token1] = ACTIONS(503), - [aux_sym__html_block_6_token2] = ACTIONS(505), - [sym_backslash_escape] = ACTIONS(689), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [sym_uri_autolink] = ACTIONS(689), - [sym_email_autolink] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(689), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(689), - [sym__digits] = ACTIONS(689), - [aux_sym__newline_token1] = ACTIONS(689), - [sym__block_quote_start] = ACTIONS(507), - [sym_atx_h1_marker] = ACTIONS(509), - [sym_atx_h2_marker] = ACTIONS(509), - [sym_atx_h3_marker] = ACTIONS(509), - [sym_atx_h4_marker] = ACTIONS(509), - [sym_atx_h5_marker] = ACTIONS(509), - [sym_atx_h6_marker] = ACTIONS(509), - [sym_setext_h1_underline] = ACTIONS(1564), - [sym_setext_h2_underline] = ACTIONS(1564), - [sym__thematic_break] = ACTIONS(513), - [sym__list_marker_minus] = ACTIONS(1564), - [sym__list_marker_plus] = ACTIONS(1564), - [sym__list_marker_star] = ACTIONS(1564), - [sym__list_marker_parenthesis] = ACTIONS(1564), - [sym__list_marker_dot] = ACTIONS(1564), - [sym__fenced_code_block_start_backtick] = ACTIONS(515), - [sym__fenced_code_block_start_tilde] = ACTIONS(517), - [sym__blank_line_start] = ACTIONS(519), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(689), - [sym__emphasis_open_underscore] = ACTIONS(689), - }, - [321] = { - [sym_link_title] = STATE(2323), - [sym__whitespace] = STATE(2164), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_DOLLAR] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_BSLASH] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym__] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [aux_sym__html_block_1_token1] = ACTIONS(1566), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1571), - [anon_sym_LT_QMARK] = ACTIONS(1571), - [aux_sym__html_block_4_token1] = ACTIONS(1571), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1566), - [aux_sym__html_block_6_token1] = ACTIONS(1571), - [aux_sym__html_block_6_token2] = ACTIONS(1566), - [sym__open_tag_html_block] = ACTIONS(1566), - [sym__open_tag_html_block_newline] = ACTIONS(1566), - [sym__closing_tag_html_block] = ACTIONS(1566), - [sym__closing_tag_html_block_newline] = ACTIONS(1566), - [sym_backslash_escape] = ACTIONS(1566), - [sym_entity_reference] = ACTIONS(1566), - [sym_numeric_character_reference] = ACTIONS(1566), - [sym_uri_autolink] = ACTIONS(1566), - [sym_email_autolink] = ACTIONS(1566), - [sym__whitespace_ge_2] = ACTIONS(1579), - [aux_sym__whitespace_token1] = ACTIONS(1582), - [sym__word_no_digit] = ACTIONS(1566), - [sym__digits] = ACTIONS(1566), - [aux_sym__newline_token1] = ACTIONS(1566), - [sym__block_close] = ACTIONS(1566), - [sym__block_quote_start] = ACTIONS(1566), - [sym__indented_chunk_start] = ACTIONS(1566), - [sym_atx_h1_marker] = ACTIONS(1566), - [sym_atx_h2_marker] = ACTIONS(1566), - [sym_atx_h3_marker] = ACTIONS(1566), - [sym_atx_h4_marker] = ACTIONS(1566), - [sym_atx_h5_marker] = ACTIONS(1566), - [sym_atx_h6_marker] = ACTIONS(1566), - [sym__thematic_break] = ACTIONS(1566), - [sym__list_marker_minus] = ACTIONS(1566), - [sym__list_marker_plus] = ACTIONS(1566), - [sym__list_marker_star] = ACTIONS(1566), - [sym__list_marker_parenthesis] = ACTIONS(1566), - [sym__list_marker_dot] = ACTIONS(1566), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), - [sym__fenced_code_block_start_backtick] = ACTIONS(1566), - [sym__fenced_code_block_start_tilde] = ACTIONS(1566), - [sym__blank_line_start] = ACTIONS(1566), - [sym__no_indented_chunk] = ACTIONS(1585), - [sym__code_span_start] = ACTIONS(1566), - [sym__emphasis_open_star] = ACTIONS(1566), - [sym__emphasis_open_underscore] = ACTIONS(1566), - }, - [322] = { - [sym__indented_chunk] = STATE(344), - [sym__blank_line] = STATE(344), - [aux_sym_indented_code_block_repeat1] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_COLON] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1514), - [anon_sym_AT] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_BSLASH] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym__] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [aux_sym__html_block_1_token1] = ACTIONS(1514), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1516), - [anon_sym_LT_QMARK] = ACTIONS(1516), - [aux_sym__html_block_4_token1] = ACTIONS(1516), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1514), - [aux_sym__html_block_6_token1] = ACTIONS(1516), - [aux_sym__html_block_6_token2] = ACTIONS(1514), - [sym__open_tag_html_block] = ACTIONS(1514), - [sym__open_tag_html_block_newline] = ACTIONS(1514), - [sym__closing_tag_html_block] = ACTIONS(1514), - [sym__closing_tag_html_block_newline] = ACTIONS(1514), - [sym_backslash_escape] = ACTIONS(1514), - [sym_entity_reference] = ACTIONS(1514), - [sym_numeric_character_reference] = ACTIONS(1514), - [sym_uri_autolink] = ACTIONS(1514), - [sym_email_autolink] = ACTIONS(1514), - [sym__whitespace_ge_2] = ACTIONS(1514), - [aux_sym__whitespace_token1] = ACTIONS(1516), - [sym__word_no_digit] = ACTIONS(1514), - [sym__digits] = ACTIONS(1514), - [aux_sym__newline_token1] = ACTIONS(1514), - [sym__block_quote_start] = ACTIONS(1514), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(1514), - [sym_atx_h2_marker] = ACTIONS(1514), - [sym_atx_h3_marker] = ACTIONS(1514), - [sym_atx_h4_marker] = ACTIONS(1514), - [sym_atx_h5_marker] = ACTIONS(1514), - [sym_atx_h6_marker] = ACTIONS(1514), - [sym__thematic_break] = ACTIONS(1514), - [sym__list_marker_minus] = ACTIONS(1514), - [sym__list_marker_plus] = ACTIONS(1514), - [sym__list_marker_star] = ACTIONS(1514), - [sym__list_marker_parenthesis] = ACTIONS(1514), - [sym__list_marker_dot] = ACTIONS(1514), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1514), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1514), - [sym__fenced_code_block_start_backtick] = ACTIONS(1514), - [sym__fenced_code_block_start_tilde] = ACTIONS(1514), - [sym__blank_line_start] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(1514), - [sym__emphasis_open_star] = ACTIONS(1514), - [sym__emphasis_open_underscore] = ACTIONS(1514), + [305] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [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(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), }, - [323] = { - [sym__indented_chunk] = STATE(309), - [sym__blank_line] = STATE(309), - [aux_sym_indented_code_block_repeat1] = STATE(309), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_PERCENT] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_BSLASH] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym__] = ACTIONS(1587), - [anon_sym_BQUOTE] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [aux_sym__html_block_1_token1] = ACTIONS(1587), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1589), - [anon_sym_LT_QMARK] = ACTIONS(1589), - [aux_sym__html_block_4_token1] = ACTIONS(1589), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1587), - [aux_sym__html_block_6_token1] = ACTIONS(1589), - [aux_sym__html_block_6_token2] = ACTIONS(1587), - [sym__open_tag_html_block] = ACTIONS(1587), - [sym__open_tag_html_block_newline] = ACTIONS(1587), - [sym__closing_tag_html_block] = ACTIONS(1587), - [sym__closing_tag_html_block_newline] = ACTIONS(1587), - [sym_backslash_escape] = ACTIONS(1587), - [sym_entity_reference] = ACTIONS(1587), - [sym_numeric_character_reference] = ACTIONS(1587), - [sym_uri_autolink] = ACTIONS(1587), - [sym_email_autolink] = ACTIONS(1587), - [sym__whitespace_ge_2] = ACTIONS(1587), - [aux_sym__whitespace_token1] = ACTIONS(1589), - [sym__word_no_digit] = ACTIONS(1587), - [sym__digits] = ACTIONS(1587), - [aux_sym__newline_token1] = ACTIONS(1587), - [sym__block_close] = ACTIONS(1587), - [sym__block_quote_start] = ACTIONS(1587), - [sym__indented_chunk_start] = ACTIONS(97), - [sym_atx_h1_marker] = ACTIONS(1587), - [sym_atx_h2_marker] = ACTIONS(1587), - [sym_atx_h3_marker] = ACTIONS(1587), - [sym_atx_h4_marker] = ACTIONS(1587), - [sym_atx_h5_marker] = ACTIONS(1587), - [sym_atx_h6_marker] = ACTIONS(1587), - [sym__thematic_break] = ACTIONS(1587), - [sym__list_marker_minus] = ACTIONS(1587), - [sym__list_marker_plus] = ACTIONS(1587), - [sym__list_marker_star] = ACTIONS(1587), - [sym__list_marker_parenthesis] = ACTIONS(1587), - [sym__list_marker_dot] = ACTIONS(1587), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1587), - [sym__fenced_code_block_start_backtick] = ACTIONS(1587), - [sym__fenced_code_block_start_tilde] = ACTIONS(1587), - [sym__blank_line_start] = ACTIONS(107), - [sym__code_span_start] = ACTIONS(1587), - [sym__emphasis_open_star] = ACTIONS(1587), - [sym__emphasis_open_underscore] = ACTIONS(1587), + [306] = { + [sym__soft_line_break] = STATE(149), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(149), + [sym_full_reference_link] = STATE(149), + [sym_collapsed_reference_link] = STATE(149), + [sym_inline_link] = STATE(149), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(149), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore] = STATE(149), + [aux_sym__inline_no_underscore] = STATE(149), + [sym__text_inline_no_underscore] = STATE(149), + [sym__emphasis_star] = STATE(755), + [sym__strong_emphasis_star] = STATE(149), + [sym__emphasis_underscore] = STATE(755), + [sym__strong_emphasis_underscore] = STATE(149), + [sym__code_span] = STATE(149), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), + [anon_sym_LT_QMARK] = ACTIONS(814), + [aux_sym__html_block_4_token1] = ACTIONS(816), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(818), + [sym_backslash_escape] = ACTIONS(1442), + [sym_entity_reference] = ACTIONS(1442), + [sym_numeric_character_reference] = ACTIONS(1442), + [sym_uri_autolink] = ACTIONS(1442), + [sym_email_autolink] = ACTIONS(1442), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1442), + [sym__digits] = ACTIONS(1442), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(828), + [sym__emphasis_open_underscore] = ACTIONS(830), }, - [324] = { - [sym__indented_chunk] = STATE(322), - [sym__blank_line] = STATE(322), - [aux_sym_indented_code_block_repeat1] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_PERCENT] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_BSLASH] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym__] = ACTIONS(1587), - [anon_sym_BQUOTE] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [aux_sym__html_block_1_token1] = ACTIONS(1587), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1589), - [anon_sym_LT_QMARK] = ACTIONS(1589), - [aux_sym__html_block_4_token1] = ACTIONS(1589), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1587), - [aux_sym__html_block_6_token1] = ACTIONS(1589), - [aux_sym__html_block_6_token2] = ACTIONS(1587), - [sym__open_tag_html_block] = ACTIONS(1587), - [sym__open_tag_html_block_newline] = ACTIONS(1587), - [sym__closing_tag_html_block] = ACTIONS(1587), - [sym__closing_tag_html_block_newline] = ACTIONS(1587), - [sym_backslash_escape] = ACTIONS(1587), - [sym_entity_reference] = ACTIONS(1587), - [sym_numeric_character_reference] = ACTIONS(1587), - [sym_uri_autolink] = ACTIONS(1587), - [sym_email_autolink] = ACTIONS(1587), - [sym__whitespace_ge_2] = ACTIONS(1587), - [aux_sym__whitespace_token1] = ACTIONS(1589), - [sym__word_no_digit] = ACTIONS(1587), - [sym__digits] = ACTIONS(1587), - [aux_sym__newline_token1] = ACTIONS(1587), - [sym__block_quote_start] = ACTIONS(1587), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(1587), - [sym_atx_h2_marker] = ACTIONS(1587), - [sym_atx_h3_marker] = ACTIONS(1587), - [sym_atx_h4_marker] = ACTIONS(1587), - [sym_atx_h5_marker] = ACTIONS(1587), - [sym_atx_h6_marker] = ACTIONS(1587), - [sym__thematic_break] = ACTIONS(1587), - [sym__list_marker_minus] = ACTIONS(1587), - [sym__list_marker_plus] = ACTIONS(1587), - [sym__list_marker_star] = ACTIONS(1587), - [sym__list_marker_parenthesis] = ACTIONS(1587), - [sym__list_marker_dot] = ACTIONS(1587), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1587), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1587), - [sym__fenced_code_block_start_backtick] = ACTIONS(1587), - [sym__fenced_code_block_start_tilde] = ACTIONS(1587), - [sym__blank_line_start] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(1587), - [sym__emphasis_open_star] = ACTIONS(1587), - [sym__emphasis_open_underscore] = ACTIONS(1587), + [307] = { + [sym_link_title] = STATE(2399), + [sym__whitespace] = STATE(2167), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym__] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [aux_sym__html_block_1_token1] = ACTIONS(1444), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1449), + [anon_sym_LT_QMARK] = ACTIONS(1449), + [aux_sym__html_block_4_token1] = ACTIONS(1449), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1444), + [aux_sym__html_block_6_token1] = ACTIONS(1449), + [aux_sym__html_block_6_token2] = ACTIONS(1444), + [sym__open_tag_html_block] = ACTIONS(1444), + [sym__open_tag_html_block_newline] = ACTIONS(1444), + [sym__closing_tag_html_block] = ACTIONS(1444), + [sym__closing_tag_html_block_newline] = ACTIONS(1444), + [sym_backslash_escape] = ACTIONS(1444), + [sym_entity_reference] = ACTIONS(1444), + [sym_numeric_character_reference] = ACTIONS(1444), + [sym_uri_autolink] = ACTIONS(1444), + [sym_email_autolink] = ACTIONS(1444), + [sym__whitespace_ge_2] = ACTIONS(1457), + [aux_sym__whitespace_token1] = ACTIONS(1460), + [sym__word_no_digit] = ACTIONS(1444), + [sym__digits] = ACTIONS(1444), + [aux_sym__newline_token1] = ACTIONS(1444), + [sym__block_close] = ACTIONS(1444), + [sym__block_quote_start] = ACTIONS(1444), + [sym__indented_chunk_start] = ACTIONS(1444), + [sym_atx_h1_marker] = ACTIONS(1444), + [sym_atx_h2_marker] = ACTIONS(1444), + [sym_atx_h3_marker] = ACTIONS(1444), + [sym_atx_h4_marker] = ACTIONS(1444), + [sym_atx_h5_marker] = ACTIONS(1444), + [sym_atx_h6_marker] = ACTIONS(1444), + [sym__thematic_break] = ACTIONS(1444), + [sym__list_marker_minus] = ACTIONS(1444), + [sym__list_marker_plus] = ACTIONS(1444), + [sym__list_marker_star] = ACTIONS(1444), + [sym__list_marker_parenthesis] = ACTIONS(1444), + [sym__list_marker_dot] = ACTIONS(1444), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), + [sym__fenced_code_block_start_backtick] = ACTIONS(1444), + [sym__fenced_code_block_start_tilde] = ACTIONS(1444), + [sym__blank_line_start] = ACTIONS(1444), + [sym__no_indented_chunk] = ACTIONS(1463), + [sym__code_span_start] = ACTIONS(1444), + [sym__emphasis_open_star] = ACTIONS(1444), + [sym__emphasis_open_underscore] = ACTIONS(1444), }, - [325] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(314), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [308] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(295), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -60656,167 +59240,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [326] = { - [sym_link_title] = STATE(2261), - [sym__whitespace] = STATE(2169), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_COLON] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_RBRACK] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym__] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [aux_sym__html_block_1_token1] = ACTIONS(1541), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1546), - [anon_sym_LT_QMARK] = ACTIONS(1546), - [aux_sym__html_block_4_token1] = ACTIONS(1546), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1541), - [aux_sym__html_block_6_token1] = ACTIONS(1546), - [aux_sym__html_block_6_token2] = ACTIONS(1541), - [sym__open_tag_html_block] = ACTIONS(1541), - [sym__open_tag_html_block_newline] = ACTIONS(1541), - [sym__closing_tag_html_block] = ACTIONS(1541), - [sym__closing_tag_html_block_newline] = ACTIONS(1541), - [sym_backslash_escape] = ACTIONS(1541), - [sym_entity_reference] = ACTIONS(1541), - [sym_numeric_character_reference] = ACTIONS(1541), - [sym_uri_autolink] = ACTIONS(1541), - [sym_email_autolink] = ACTIONS(1541), - [sym__whitespace_ge_2] = ACTIONS(1554), - [aux_sym__whitespace_token1] = ACTIONS(1557), - [sym__word_no_digit] = ACTIONS(1541), - [sym__digits] = ACTIONS(1541), - [aux_sym__newline_token1] = ACTIONS(1541), - [sym__block_close] = ACTIONS(1541), - [sym__block_quote_start] = ACTIONS(1541), - [sym__indented_chunk_start] = ACTIONS(1541), - [sym_atx_h1_marker] = ACTIONS(1541), - [sym_atx_h2_marker] = ACTIONS(1541), - [sym_atx_h3_marker] = ACTIONS(1541), - [sym_atx_h4_marker] = ACTIONS(1541), - [sym_atx_h5_marker] = ACTIONS(1541), - [sym_atx_h6_marker] = ACTIONS(1541), - [sym__thematic_break] = ACTIONS(1541), - [sym__list_marker_minus] = ACTIONS(1541), - [sym__list_marker_plus] = ACTIONS(1541), - [sym__list_marker_star] = ACTIONS(1541), - [sym__list_marker_parenthesis] = ACTIONS(1541), - [sym__list_marker_dot] = ACTIONS(1541), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1541), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1541), - [sym__fenced_code_block_start_backtick] = ACTIONS(1541), - [sym__fenced_code_block_start_tilde] = ACTIONS(1541), - [sym__blank_line_start] = ACTIONS(1541), - [sym__no_indented_chunk] = ACTIONS(1591), - [sym__code_span_start] = ACTIONS(1541), - [sym__emphasis_open_star] = ACTIONS(1541), - [sym__emphasis_open_underscore] = ACTIONS(1541), + [309] = { + [sym__indented_chunk] = STATE(326), + [sym__blank_line] = STATE(326), + [aux_sym_indented_code_block_repeat1] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = 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_PIPE] = 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(47), + [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(1465), + [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(1465), + [sym__fenced_code_block_start_backtick] = ACTIONS(1465), + [sym__fenced_code_block_start_tilde] = ACTIONS(1465), + [sym__blank_line_start] = ACTIONS(67), + [sym__code_span_start] = ACTIONS(1465), + [sym__emphasis_open_star] = ACTIONS(1465), + [sym__emphasis_open_underscore] = ACTIONS(1465), }, - [327] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(312), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [310] = { + [sym__indented_chunk] = STATE(310), + [sym__blank_line] = STATE(310), + [aux_sym_indented_code_block_repeat1] = STATE(310), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = 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_PIPE] = 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(1473), + [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(1469), + [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(1469), + [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(1476), + [sym__code_span_start] = ACTIONS(1469), + [sym__emphasis_open_star] = ACTIONS(1469), + [sym__emphasis_open_underscore] = ACTIONS(1469), + }, + [311] = { + [sym_list_marker_plus] = STATE(17), + [sym__list_item_plus] = STATE(311), + [aux_sym__list_plus_repeat1] = STATE(311), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_BSLASH] = ACTIONS(1481), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [aux_sym__html_block_1_token1] = ACTIONS(1479), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1481), + [anon_sym_LT_QMARK] = ACTIONS(1481), + [aux_sym__html_block_4_token1] = ACTIONS(1481), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1479), + [aux_sym__html_block_6_token1] = ACTIONS(1481), + [aux_sym__html_block_6_token2] = ACTIONS(1479), + [sym__open_tag_html_block] = ACTIONS(1479), + [sym__open_tag_html_block_newline] = ACTIONS(1479), + [sym__closing_tag_html_block] = ACTIONS(1479), + [sym__closing_tag_html_block_newline] = ACTIONS(1479), + [sym_backslash_escape] = ACTIONS(1479), + [sym_entity_reference] = ACTIONS(1479), + [sym_numeric_character_reference] = ACTIONS(1479), + [sym_uri_autolink] = ACTIONS(1479), + [sym_email_autolink] = ACTIONS(1479), + [sym__whitespace_ge_2] = ACTIONS(1479), + [aux_sym__whitespace_token1] = ACTIONS(1481), + [sym__word_no_digit] = ACTIONS(1479), + [sym__digits] = ACTIONS(1479), + [aux_sym__newline_token1] = ACTIONS(1479), + [sym__block_close] = ACTIONS(1479), + [sym__block_quote_start] = ACTIONS(1479), + [sym__indented_chunk_start] = ACTIONS(1479), + [sym_atx_h1_marker] = ACTIONS(1479), + [sym_atx_h2_marker] = ACTIONS(1479), + [sym_atx_h3_marker] = ACTIONS(1479), + [sym_atx_h4_marker] = ACTIONS(1479), + [sym_atx_h5_marker] = ACTIONS(1479), + [sym_atx_h6_marker] = ACTIONS(1479), + [sym__thematic_break] = ACTIONS(1479), + [sym__list_marker_minus] = ACTIONS(1479), + [sym__list_marker_plus] = ACTIONS(1483), + [sym__list_marker_star] = ACTIONS(1479), + [sym__list_marker_parenthesis] = ACTIONS(1479), + [sym__list_marker_dot] = ACTIONS(1479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1483), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1479), + [sym__fenced_code_block_start_backtick] = ACTIONS(1479), + [sym__fenced_code_block_start_tilde] = ACTIONS(1479), + [sym__blank_line_start] = ACTIONS(1479), + [sym__code_span_start] = ACTIONS(1479), + [sym__emphasis_open_star] = ACTIONS(1479), + [sym__emphasis_open_underscore] = ACTIONS(1479), + }, + [312] = { + [sym__soft_line_break] = STATE(259), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(259), + [sym_full_reference_link] = STATE(259), + [sym_collapsed_reference_link] = STATE(259), + [sym_inline_link] = STATE(259), + [sym_image] = STATE(259), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(259), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(259), + [sym__whitespace] = STATE(259), + [sym__word] = STATE(259), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(259), + [aux_sym__inline_no_star] = STATE(259), + [sym__text_inline_no_star] = STATE(259), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(259), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(259), + [sym__code_span] = STATE(259), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(1486), + [sym_entity_reference] = ACTIONS(1486), + [sym_numeric_character_reference] = ACTIONS(1486), + [sym_uri_autolink] = ACTIONS(1486), + [sym_email_autolink] = ACTIONS(1486), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1486), + [sym__digits] = ACTIONS(1486), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), + }, + [313] = { + [sym__block_interrupt_paragraph] = STATE(933), + [sym_thematic_break] = STATE(933), + [sym_atx_heading] = STATE(933), + [sym_fenced_code_block] = STATE(933), + [sym__html_block_1] = STATE(933), + [sym__html_block_2] = STATE(933), + [sym__html_block_3] = STATE(933), + [sym__html_block_4] = STATE(933), + [sym__html_block_5] = STATE(933), + [sym__html_block_6] = STATE(933), + [sym__blank_line] = STATE(933), + [sym_block_quote] = STATE(933), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_BSLASH] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [aux_sym__html_block_1_token1] = ACTIONS(509), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(511), + [anon_sym_LT_QMARK] = ACTIONS(513), + [aux_sym__html_block_4_token1] = ACTIONS(515), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(517), + [aux_sym__html_block_6_token1] = ACTIONS(519), + [aux_sym__html_block_6_token2] = ACTIONS(521), + [sym_backslash_escape] = ACTIONS(734), + [sym_entity_reference] = ACTIONS(734), + [sym_numeric_character_reference] = ACTIONS(734), + [sym_uri_autolink] = ACTIONS(734), + [sym_email_autolink] = ACTIONS(734), + [sym__whitespace_ge_2] = ACTIONS(734), + [aux_sym__whitespace_token1] = ACTIONS(736), + [sym__word_no_digit] = ACTIONS(734), + [sym__digits] = ACTIONS(734), + [aux_sym__newline_token1] = ACTIONS(734), + [sym__block_quote_start] = ACTIONS(523), + [sym_atx_h1_marker] = ACTIONS(525), + [sym_atx_h2_marker] = ACTIONS(525), + [sym_atx_h3_marker] = ACTIONS(525), + [sym_atx_h4_marker] = ACTIONS(525), + [sym_atx_h5_marker] = ACTIONS(525), + [sym_atx_h6_marker] = ACTIONS(525), + [sym_setext_h1_underline] = ACTIONS(1488), + [sym_setext_h2_underline] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(529), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(531), + [sym__fenced_code_block_start_tilde] = ACTIONS(533), + [sym__blank_line_start] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(734), + [sym__emphasis_open_star] = ACTIONS(734), + [sym__emphasis_open_underscore] = ACTIONS(734), + }, + [314] = { + [sym_link_title] = STATE(2400), + [sym__whitespace] = STATE(2157), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1495), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [aux_sym__html_block_1_token1] = ACTIONS(1490), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1495), + [anon_sym_LT_QMARK] = ACTIONS(1495), + [aux_sym__html_block_4_token1] = ACTIONS(1495), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1490), + [aux_sym__html_block_6_token1] = ACTIONS(1495), + [aux_sym__html_block_6_token2] = ACTIONS(1490), + [sym__open_tag_html_block] = ACTIONS(1490), + [sym__open_tag_html_block_newline] = ACTIONS(1490), + [sym__closing_tag_html_block] = ACTIONS(1490), + [sym__closing_tag_html_block_newline] = ACTIONS(1490), + [sym_backslash_escape] = ACTIONS(1490), + [sym_entity_reference] = ACTIONS(1490), + [sym_numeric_character_reference] = ACTIONS(1490), + [sym_uri_autolink] = ACTIONS(1490), + [sym_email_autolink] = ACTIONS(1490), + [sym__whitespace_ge_2] = ACTIONS(1503), + [aux_sym__whitespace_token1] = ACTIONS(1506), + [sym__word_no_digit] = ACTIONS(1490), + [sym__digits] = ACTIONS(1490), + [aux_sym__newline_token1] = ACTIONS(1490), + [sym__block_close] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym__no_indented_chunk] = ACTIONS(1509), + [sym__code_span_start] = ACTIONS(1490), + [sym__emphasis_open_star] = ACTIONS(1490), + [sym__emphasis_open_underscore] = ACTIONS(1490), + }, + [315] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -60824,251 +59828,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [328] = { - [sym__soft_line_break] = STATE(247), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(247), - [sym_full_reference_link] = STATE(247), - [sym_collapsed_reference_link] = STATE(247), - [sym_inline_link] = STATE(247), - [sym_image] = STATE(247), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(247), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(247), - [sym__whitespace] = STATE(247), - [sym__word] = STATE(247), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(247), - [aux_sym__inline_no_star] = STATE(247), - [sym__text_inline_no_star] = STATE(247), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(247), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(247), - [sym__code_span] = STATE(247), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [sym_backslash_escape] = ACTIONS(1593), - [sym_entity_reference] = ACTIONS(1593), - [sym_numeric_character_reference] = ACTIONS(1593), - [sym_uri_autolink] = ACTIONS(1593), - [sym_email_autolink] = ACTIONS(1593), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1593), - [sym__digits] = ACTIONS(1593), + [316] = { + [sym__soft_line_break] = STATE(138), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(138), + [sym_full_reference_link] = STATE(138), + [sym_collapsed_reference_link] = STATE(138), + [sym_inline_link] = STATE(138), + [sym_image] = STATE(138), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(138), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(138), + [sym__whitespace] = STATE(138), + [sym__word] = STATE(138), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star] = STATE(138), + [aux_sym__inline_no_star] = STATE(138), + [sym__text_inline_no_star] = STATE(138), + [sym__emphasis_star] = STATE(773), + [sym__strong_emphasis_star] = STATE(138), + [sym__emphasis_underscore] = STATE(773), + [sym__strong_emphasis_underscore] = STATE(138), + [sym__code_span] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(772), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(1513), + [sym_entity_reference] = ACTIONS(1513), + [sym_numeric_character_reference] = ACTIONS(1513), + [sym_uri_autolink] = ACTIONS(1513), + [sym_email_autolink] = ACTIONS(1513), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1513), + [sym__digits] = ACTIONS(1513), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(788), }, - [329] = { - [sym__soft_line_break] = STATE(246), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(246), - [sym_full_reference_link] = STATE(246), - [sym_collapsed_reference_link] = STATE(246), - [sym_inline_link] = STATE(246), - [sym_image] = STATE(246), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(246), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(246), - [sym__whitespace] = STATE(246), - [sym__word] = STATE(246), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore] = STATE(246), - [aux_sym__inline_no_underscore] = STATE(246), - [sym__text_inline_no_underscore] = STATE(246), - [sym__emphasis_star] = STATE(813), - [sym__strong_emphasis_star] = STATE(246), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(246), - [sym__code_span] = STATE(246), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [sym_backslash_escape] = ACTIONS(1595), - [sym_entity_reference] = ACTIONS(1595), - [sym_numeric_character_reference] = ACTIONS(1595), - [sym_uri_autolink] = ACTIONS(1595), - [sym_email_autolink] = ACTIONS(1595), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1595), - [sym__digits] = ACTIONS(1595), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), + [317] = { + [sym_link_title] = STATE(2392), + [sym__whitespace] = STATE(2170), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_COLON] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_BSLASH] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym__] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [aux_sym__html_block_1_token1] = ACTIONS(1515), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1520), + [anon_sym_LT_QMARK] = ACTIONS(1520), + [aux_sym__html_block_4_token1] = ACTIONS(1520), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1515), + [aux_sym__html_block_6_token1] = ACTIONS(1520), + [aux_sym__html_block_6_token2] = ACTIONS(1515), + [sym__open_tag_html_block] = ACTIONS(1515), + [sym__open_tag_html_block_newline] = ACTIONS(1515), + [sym__closing_tag_html_block] = ACTIONS(1515), + [sym__closing_tag_html_block_newline] = ACTIONS(1515), + [sym_backslash_escape] = ACTIONS(1515), + [sym_entity_reference] = ACTIONS(1515), + [sym_numeric_character_reference] = ACTIONS(1515), + [sym_uri_autolink] = ACTIONS(1515), + [sym_email_autolink] = ACTIONS(1515), + [sym__whitespace_ge_2] = ACTIONS(1528), + [aux_sym__whitespace_token1] = ACTIONS(1531), + [sym__word_no_digit] = ACTIONS(1515), + [sym__digits] = ACTIONS(1515), + [aux_sym__newline_token1] = ACTIONS(1515), + [sym__block_close] = ACTIONS(1515), + [sym__block_quote_start] = ACTIONS(1515), + [sym__indented_chunk_start] = ACTIONS(1515), + [sym_atx_h1_marker] = ACTIONS(1515), + [sym_atx_h2_marker] = ACTIONS(1515), + [sym_atx_h3_marker] = ACTIONS(1515), + [sym_atx_h4_marker] = ACTIONS(1515), + [sym_atx_h5_marker] = ACTIONS(1515), + [sym_atx_h6_marker] = ACTIONS(1515), + [sym__thematic_break] = ACTIONS(1515), + [sym__list_marker_minus] = ACTIONS(1515), + [sym__list_marker_plus] = ACTIONS(1515), + [sym__list_marker_star] = ACTIONS(1515), + [sym__list_marker_parenthesis] = ACTIONS(1515), + [sym__list_marker_dot] = ACTIONS(1515), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1515), + [sym__fenced_code_block_start_backtick] = ACTIONS(1515), + [sym__fenced_code_block_start_tilde] = ACTIONS(1515), + [sym__blank_line_start] = ACTIONS(1515), + [sym__no_indented_chunk] = ACTIONS(1534), + [sym__code_span_start] = ACTIONS(1515), + [sym__emphasis_open_star] = ACTIONS(1515), + [sym__emphasis_open_underscore] = ACTIONS(1515), }, - [330] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(291), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [318] = { + [sym_list_marker_plus] = STATE(17), + [sym__list_item_plus] = STATE(311), + [aux_sym__list_plus_repeat1] = STATE(311), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_COLON] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [aux_sym__html_block_1_token1] = ACTIONS(1536), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1538), + [anon_sym_LT_QMARK] = ACTIONS(1538), + [aux_sym__html_block_4_token1] = ACTIONS(1538), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1536), + [aux_sym__html_block_6_token1] = ACTIONS(1538), + [aux_sym__html_block_6_token2] = ACTIONS(1536), + [sym__open_tag_html_block] = ACTIONS(1536), + [sym__open_tag_html_block_newline] = ACTIONS(1536), + [sym__closing_tag_html_block] = ACTIONS(1536), + [sym__closing_tag_html_block_newline] = ACTIONS(1536), + [sym_backslash_escape] = ACTIONS(1536), + [sym_entity_reference] = ACTIONS(1536), + [sym_numeric_character_reference] = ACTIONS(1536), + [sym_uri_autolink] = ACTIONS(1536), + [sym_email_autolink] = ACTIONS(1536), + [sym__whitespace_ge_2] = ACTIONS(1536), + [aux_sym__whitespace_token1] = ACTIONS(1538), + [sym__word_no_digit] = ACTIONS(1536), + [sym__digits] = ACTIONS(1536), + [aux_sym__newline_token1] = ACTIONS(1536), + [sym__block_close] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym__code_span_start] = ACTIONS(1536), + [sym__emphasis_open_star] = ACTIONS(1536), + [sym__emphasis_open_underscore] = ACTIONS(1536), + }, + [319] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -61076,83 +60164,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [331] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [320] = { + [sym_link_title] = STATE(2346), + [sym__whitespace] = STATE(2150), + [ts_builtin_sym_end] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1495), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [aux_sym__html_block_1_token1] = ACTIONS(1490), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1495), + [anon_sym_LT_QMARK] = ACTIONS(1495), + [aux_sym__html_block_4_token1] = ACTIONS(1495), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1490), + [aux_sym__html_block_6_token1] = ACTIONS(1495), + [aux_sym__html_block_6_token2] = ACTIONS(1490), + [sym__open_tag_html_block] = ACTIONS(1490), + [sym__open_tag_html_block_newline] = ACTIONS(1490), + [sym__closing_tag_html_block] = ACTIONS(1490), + [sym__closing_tag_html_block_newline] = ACTIONS(1490), + [sym_backslash_escape] = ACTIONS(1490), + [sym_entity_reference] = ACTIONS(1490), + [sym_numeric_character_reference] = ACTIONS(1490), + [sym_uri_autolink] = ACTIONS(1490), + [sym_email_autolink] = ACTIONS(1490), + [sym__whitespace_ge_2] = ACTIONS(1503), + [aux_sym__whitespace_token1] = ACTIONS(1506), + [sym__word_no_digit] = ACTIONS(1490), + [sym__digits] = ACTIONS(1490), + [aux_sym__newline_token1] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym__no_indented_chunk] = ACTIONS(1542), + [sym__code_span_start] = ACTIONS(1490), + [sym__emphasis_open_star] = ACTIONS(1490), + [sym__emphasis_open_underscore] = ACTIONS(1490), + }, + [321] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1597), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -61160,335 +60332,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [332] = { - [sym__soft_line_break] = STATE(255), - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(255), - [sym_full_reference_link] = STATE(255), - [sym_collapsed_reference_link] = STATE(255), - [sym_inline_link] = STATE(255), - [sym_image] = STATE(255), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(255), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(255), - [sym__whitespace] = STATE(255), - [sym__word] = STATE(255), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star] = STATE(255), - [aux_sym__inline_no_star] = STATE(255), - [sym__text_inline_no_star] = STATE(255), - [sym__emphasis_star] = STATE(719), - [sym__strong_emphasis_star] = STATE(255), - [sym__emphasis_underscore] = STATE(719), - [sym__strong_emphasis_underscore] = STATE(255), - [sym__code_span] = STATE(255), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(709), - [aux_sym__html_block_4_token1] = ACTIONS(711), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(713), - [sym_backslash_escape] = ACTIONS(1599), - [sym_entity_reference] = ACTIONS(1599), - [sym_numeric_character_reference] = ACTIONS(1599), - [sym_uri_autolink] = ACTIONS(1599), - [sym_email_autolink] = ACTIONS(1599), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1599), - [sym__digits] = ACTIONS(1599), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(721), - [sym__emphasis_open_star] = ACTIONS(723), - [sym__emphasis_open_underscore] = ACTIONS(725), - }, - [333] = { - [sym_link_title] = STATE(2249), - [sym__whitespace] = STATE(2153), - [ts_builtin_sym_end] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_COLON] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_BSLASH] = ACTIONS(1426), - [anon_sym_RBRACK] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [aux_sym__html_block_1_token1] = ACTIONS(1421), - [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(1421), - [aux_sym__html_block_6_token1] = ACTIONS(1426), - [aux_sym__html_block_6_token2] = ACTIONS(1421), - [sym__open_tag_html_block] = ACTIONS(1421), - [sym__open_tag_html_block_newline] = ACTIONS(1421), - [sym__closing_tag_html_block] = ACTIONS(1421), - [sym__closing_tag_html_block_newline] = ACTIONS(1421), - [sym_backslash_escape] = ACTIONS(1421), - [sym_entity_reference] = ACTIONS(1421), - [sym_numeric_character_reference] = ACTIONS(1421), - [sym_uri_autolink] = ACTIONS(1421), - [sym_email_autolink] = ACTIONS(1421), - [sym__whitespace_ge_2] = ACTIONS(1434), - [aux_sym__whitespace_token1] = ACTIONS(1437), - [sym__word_no_digit] = ACTIONS(1421), - [sym__digits] = ACTIONS(1421), - [aux_sym__newline_token1] = ACTIONS(1421), - [sym__block_quote_start] = ACTIONS(1421), - [sym__indented_chunk_start] = ACTIONS(1421), - [sym_atx_h1_marker] = ACTIONS(1421), - [sym_atx_h2_marker] = ACTIONS(1421), - [sym_atx_h3_marker] = ACTIONS(1421), - [sym_atx_h4_marker] = ACTIONS(1421), - [sym_atx_h5_marker] = ACTIONS(1421), - [sym_atx_h6_marker] = ACTIONS(1421), - [sym__thematic_break] = ACTIONS(1421), - [sym__list_marker_minus] = ACTIONS(1421), - [sym__list_marker_plus] = ACTIONS(1421), - [sym__list_marker_star] = ACTIONS(1421), - [sym__list_marker_parenthesis] = ACTIONS(1421), - [sym__list_marker_dot] = ACTIONS(1421), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1421), - [sym__fenced_code_block_start_backtick] = ACTIONS(1421), - [sym__fenced_code_block_start_tilde] = ACTIONS(1421), - [sym__blank_line_start] = ACTIONS(1421), - [sym__no_indented_chunk] = ACTIONS(1601), - [sym__code_span_start] = ACTIONS(1421), - [sym__emphasis_open_star] = ACTIONS(1421), - [sym__emphasis_open_underscore] = ACTIONS(1421), + [322] = { + [sym_link_title] = STATE(2293), + [sym__whitespace] = STATE(2172), + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_COLON] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [aux_sym__html_block_1_token1] = ACTIONS(1546), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1551), + [anon_sym_LT_QMARK] = ACTIONS(1551), + [aux_sym__html_block_4_token1] = ACTIONS(1551), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1546), + [aux_sym__html_block_6_token1] = ACTIONS(1551), + [aux_sym__html_block_6_token2] = ACTIONS(1546), + [sym__open_tag_html_block] = ACTIONS(1546), + [sym__open_tag_html_block_newline] = ACTIONS(1546), + [sym__closing_tag_html_block] = ACTIONS(1546), + [sym__closing_tag_html_block_newline] = ACTIONS(1546), + [sym_backslash_escape] = ACTIONS(1546), + [sym_entity_reference] = ACTIONS(1546), + [sym_numeric_character_reference] = ACTIONS(1546), + [sym_uri_autolink] = ACTIONS(1546), + [sym_email_autolink] = ACTIONS(1546), + [sym__whitespace_ge_2] = ACTIONS(1559), + [aux_sym__whitespace_token1] = ACTIONS(1562), + [sym__word_no_digit] = ACTIONS(1546), + [sym__digits] = ACTIONS(1546), + [aux_sym__newline_token1] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym__no_indented_chunk] = ACTIONS(1565), + [sym__code_span_start] = ACTIONS(1546), + [sym__emphasis_open_star] = ACTIONS(1546), + [sym__emphasis_open_underscore] = ACTIONS(1546), }, - [334] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PERCENT] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(1606), - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_SLASH] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1606), - [anon_sym_GT] = ACTIONS(1606), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_AT] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_BSLASH] = ACTIONS(1618), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_CARET] = ACTIONS(1606), - [anon_sym__] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1621), - [anon_sym_LT_QMARK] = ACTIONS(1624), - [aux_sym__html_block_4_token1] = ACTIONS(1627), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1630), - [sym_backslash_escape] = ACTIONS(1633), - [sym_entity_reference] = ACTIONS(1633), - [sym_numeric_character_reference] = ACTIONS(1633), - [sym_uri_autolink] = ACTIONS(1633), - [sym_email_autolink] = ACTIONS(1633), - [sym__whitespace_ge_2] = ACTIONS(1636), - [aux_sym__whitespace_token1] = ACTIONS(1639), - [sym__word_no_digit] = ACTIONS(1633), - [sym__digits] = ACTIONS(1633), - [aux_sym__newline_token1] = ACTIONS(1642), - [sym__code_span_start] = ACTIONS(1645), - [sym__emphasis_open_star] = ACTIONS(1648), - [sym__emphasis_open_underscore] = ACTIONS(1651), + [323] = { + [sym_link_title] = STATE(2323), + [sym__whitespace] = STATE(2180), + [ts_builtin_sym_end] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1449), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym__] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [aux_sym__html_block_1_token1] = ACTIONS(1444), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1449), + [anon_sym_LT_QMARK] = ACTIONS(1449), + [aux_sym__html_block_4_token1] = ACTIONS(1449), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1444), + [aux_sym__html_block_6_token1] = ACTIONS(1449), + [aux_sym__html_block_6_token2] = ACTIONS(1444), + [sym__open_tag_html_block] = ACTIONS(1444), + [sym__open_tag_html_block_newline] = ACTIONS(1444), + [sym__closing_tag_html_block] = ACTIONS(1444), + [sym__closing_tag_html_block_newline] = ACTIONS(1444), + [sym_backslash_escape] = ACTIONS(1444), + [sym_entity_reference] = ACTIONS(1444), + [sym_numeric_character_reference] = ACTIONS(1444), + [sym_uri_autolink] = ACTIONS(1444), + [sym_email_autolink] = ACTIONS(1444), + [sym__whitespace_ge_2] = ACTIONS(1457), + [aux_sym__whitespace_token1] = ACTIONS(1460), + [sym__word_no_digit] = ACTIONS(1444), + [sym__digits] = ACTIONS(1444), + [aux_sym__newline_token1] = ACTIONS(1444), + [sym__block_quote_start] = ACTIONS(1444), + [sym__indented_chunk_start] = ACTIONS(1444), + [sym_atx_h1_marker] = ACTIONS(1444), + [sym_atx_h2_marker] = ACTIONS(1444), + [sym_atx_h3_marker] = ACTIONS(1444), + [sym_atx_h4_marker] = ACTIONS(1444), + [sym_atx_h5_marker] = ACTIONS(1444), + [sym_atx_h6_marker] = ACTIONS(1444), + [sym__thematic_break] = ACTIONS(1444), + [sym__list_marker_minus] = ACTIONS(1444), + [sym__list_marker_plus] = ACTIONS(1444), + [sym__list_marker_star] = ACTIONS(1444), + [sym__list_marker_parenthesis] = ACTIONS(1444), + [sym__list_marker_dot] = ACTIONS(1444), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), + [sym__fenced_code_block_start_backtick] = ACTIONS(1444), + [sym__fenced_code_block_start_tilde] = ACTIONS(1444), + [sym__blank_line_start] = ACTIONS(1444), + [sym__no_indented_chunk] = ACTIONS(1567), + [sym__code_span_start] = ACTIONS(1444), + [sym__emphasis_open_star] = ACTIONS(1444), + [sym__emphasis_open_underscore] = ACTIONS(1444), }, - [335] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(334), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [324] = { + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(319), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1654), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -61496,671 +60584,1343 @@ 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_link_title] = STATE(2388), + [sym__whitespace] = STATE(2184), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_COLON] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [aux_sym__html_block_1_token1] = ACTIONS(1546), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1551), + [anon_sym_LT_QMARK] = ACTIONS(1551), + [aux_sym__html_block_4_token1] = ACTIONS(1551), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1546), + [aux_sym__html_block_6_token1] = ACTIONS(1551), + [aux_sym__html_block_6_token2] = ACTIONS(1546), + [sym__open_tag_html_block] = ACTIONS(1546), + [sym__open_tag_html_block_newline] = ACTIONS(1546), + [sym__closing_tag_html_block] = ACTIONS(1546), + [sym__closing_tag_html_block_newline] = ACTIONS(1546), + [sym_backslash_escape] = ACTIONS(1546), + [sym_entity_reference] = ACTIONS(1546), + [sym_numeric_character_reference] = ACTIONS(1546), + [sym_uri_autolink] = ACTIONS(1546), + [sym_email_autolink] = ACTIONS(1546), + [sym__whitespace_ge_2] = ACTIONS(1559), + [aux_sym__whitespace_token1] = ACTIONS(1562), + [sym__word_no_digit] = ACTIONS(1546), + [sym__digits] = ACTIONS(1546), + [aux_sym__newline_token1] = ACTIONS(1546), + [sym__block_close] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym__no_indented_chunk] = ACTIONS(1569), + [sym__code_span_start] = ACTIONS(1546), + [sym__emphasis_open_star] = ACTIONS(1546), + [sym__emphasis_open_underscore] = ACTIONS(1546), + }, + [326] = { + [sym__indented_chunk] = STATE(341), + [sym__blank_line] = STATE(341), + [aux_sym_indented_code_block_repeat1] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_POUND] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_PERCENT] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_BSLASH] = ACTIONS(1573), + [anon_sym_RBRACK] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym__] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [aux_sym__html_block_1_token1] = ACTIONS(1571), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1573), + [anon_sym_LT_QMARK] = ACTIONS(1573), + [aux_sym__html_block_4_token1] = ACTIONS(1573), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1571), + [aux_sym__html_block_6_token1] = ACTIONS(1573), + [aux_sym__html_block_6_token2] = ACTIONS(1571), + [sym__open_tag_html_block] = ACTIONS(1571), + [sym__open_tag_html_block_newline] = ACTIONS(1571), + [sym__closing_tag_html_block] = ACTIONS(1571), + [sym__closing_tag_html_block_newline] = ACTIONS(1571), + [sym_backslash_escape] = ACTIONS(1571), + [sym_entity_reference] = ACTIONS(1571), + [sym_numeric_character_reference] = ACTIONS(1571), + [sym_uri_autolink] = ACTIONS(1571), + [sym_email_autolink] = ACTIONS(1571), + [sym__whitespace_ge_2] = ACTIONS(1571), + [aux_sym__whitespace_token1] = ACTIONS(1573), + [sym__word_no_digit] = ACTIONS(1571), + [sym__digits] = ACTIONS(1571), + [aux_sym__newline_token1] = ACTIONS(1571), + [sym__block_quote_start] = ACTIONS(1571), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(1571), + [sym_atx_h2_marker] = ACTIONS(1571), + [sym_atx_h3_marker] = ACTIONS(1571), + [sym_atx_h4_marker] = ACTIONS(1571), + [sym_atx_h5_marker] = ACTIONS(1571), + [sym_atx_h6_marker] = ACTIONS(1571), + [sym__thematic_break] = ACTIONS(1571), + [sym__list_marker_minus] = ACTIONS(1571), + [sym__list_marker_plus] = ACTIONS(1571), + [sym__list_marker_star] = ACTIONS(1571), + [sym__list_marker_parenthesis] = ACTIONS(1571), + [sym__list_marker_dot] = ACTIONS(1571), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1571), + [sym__fenced_code_block_start_backtick] = ACTIONS(1571), + [sym__fenced_code_block_start_tilde] = ACTIONS(1571), + [sym__blank_line_start] = ACTIONS(67), + [sym__code_span_start] = ACTIONS(1571), + [sym__emphasis_open_star] = ACTIONS(1571), + [sym__emphasis_open_underscore] = ACTIONS(1571), + }, + [327] = { + [sym_list_marker_minus] = STATE(16), + [sym__list_item_minus] = STATE(327), + [aux_sym__list_minus_repeat1] = STATE(327), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [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(1577), + [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(1577), + [anon_sym_RBRACK] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym__] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [aux_sym__html_block_1_token1] = ACTIONS(1575), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1577), + [anon_sym_LT_QMARK] = ACTIONS(1577), + [aux_sym__html_block_4_token1] = ACTIONS(1577), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1575), + [aux_sym__html_block_6_token1] = ACTIONS(1577), + [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(1575), + [aux_sym__whitespace_token1] = ACTIONS(1577), + [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(1579), + [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(1579), + [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__code_span_start] = ACTIONS(1575), + [sym__emphasis_open_star] = ACTIONS(1575), + [sym__emphasis_open_underscore] = ACTIONS(1575), + }, + [328] = { + [sym__indented_chunk] = STATE(329), + [sym__blank_line] = STATE(329), + [aux_sym_indented_code_block_repeat1] = STATE(329), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = 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_PIPE] = 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(97), + [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(1465), + [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(1465), + [sym__fenced_code_block_start_backtick] = ACTIONS(1465), + [sym__fenced_code_block_start_tilde] = ACTIONS(1465), + [sym__blank_line_start] = ACTIONS(107), + [sym__code_span_start] = ACTIONS(1465), + [sym__emphasis_open_star] = ACTIONS(1465), + [sym__emphasis_open_underscore] = ACTIONS(1465), + }, + [329] = { + [sym__indented_chunk] = STATE(310), + [sym__blank_line] = STATE(310), + [aux_sym_indented_code_block_repeat1] = STATE(310), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_POUND] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_PERCENT] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_BSLASH] = ACTIONS(1573), + [anon_sym_RBRACK] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym__] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [aux_sym__html_block_1_token1] = ACTIONS(1571), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1573), + [anon_sym_LT_QMARK] = ACTIONS(1573), + [aux_sym__html_block_4_token1] = ACTIONS(1573), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1571), + [aux_sym__html_block_6_token1] = ACTIONS(1573), + [aux_sym__html_block_6_token2] = ACTIONS(1571), + [sym__open_tag_html_block] = ACTIONS(1571), + [sym__open_tag_html_block_newline] = ACTIONS(1571), + [sym__closing_tag_html_block] = ACTIONS(1571), + [sym__closing_tag_html_block_newline] = ACTIONS(1571), + [sym_backslash_escape] = ACTIONS(1571), + [sym_entity_reference] = ACTIONS(1571), + [sym_numeric_character_reference] = ACTIONS(1571), + [sym_uri_autolink] = ACTIONS(1571), + [sym_email_autolink] = ACTIONS(1571), + [sym__whitespace_ge_2] = ACTIONS(1571), + [aux_sym__whitespace_token1] = ACTIONS(1573), + [sym__word_no_digit] = ACTIONS(1571), + [sym__digits] = ACTIONS(1571), + [aux_sym__newline_token1] = ACTIONS(1571), + [sym__block_close] = ACTIONS(1571), + [sym__block_quote_start] = ACTIONS(1571), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1571), + [sym_atx_h2_marker] = ACTIONS(1571), + [sym_atx_h3_marker] = ACTIONS(1571), + [sym_atx_h4_marker] = ACTIONS(1571), + [sym_atx_h5_marker] = ACTIONS(1571), + [sym_atx_h6_marker] = ACTIONS(1571), + [sym__thematic_break] = ACTIONS(1571), + [sym__list_marker_minus] = ACTIONS(1571), + [sym__list_marker_plus] = ACTIONS(1571), + [sym__list_marker_star] = ACTIONS(1571), + [sym__list_marker_parenthesis] = ACTIONS(1571), + [sym__list_marker_dot] = ACTIONS(1571), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1571), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1571), + [sym__fenced_code_block_start_backtick] = ACTIONS(1571), + [sym__fenced_code_block_start_tilde] = ACTIONS(1571), + [sym__blank_line_start] = ACTIONS(107), + [sym__code_span_start] = ACTIONS(1571), + [sym__emphasis_open_star] = ACTIONS(1571), + [sym__emphasis_open_underscore] = ACTIONS(1571), + }, + [330] = { + [sym_link_title] = STATE(2285), + [sym__whitespace] = STATE(2177), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [aux_sym__html_block_1_token1] = ACTIONS(1582), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1587), + [anon_sym_LT_QMARK] = ACTIONS(1587), + [aux_sym__html_block_4_token1] = ACTIONS(1587), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1582), + [aux_sym__html_block_6_token1] = ACTIONS(1587), + [aux_sym__html_block_6_token2] = ACTIONS(1582), + [sym__open_tag_html_block] = ACTIONS(1582), + [sym__open_tag_html_block_newline] = ACTIONS(1582), + [sym__closing_tag_html_block] = ACTIONS(1582), + [sym__closing_tag_html_block_newline] = ACTIONS(1582), + [sym_backslash_escape] = ACTIONS(1582), + [sym_entity_reference] = ACTIONS(1582), + [sym_numeric_character_reference] = ACTIONS(1582), + [sym_uri_autolink] = ACTIONS(1582), + [sym_email_autolink] = ACTIONS(1582), + [sym__whitespace_ge_2] = ACTIONS(1595), + [aux_sym__whitespace_token1] = ACTIONS(1598), + [sym__word_no_digit] = ACTIONS(1582), + [sym__digits] = ACTIONS(1582), + [aux_sym__newline_token1] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym__no_indented_chunk] = ACTIONS(1601), + [sym__code_span_start] = ACTIONS(1582), + [sym__emphasis_open_star] = ACTIONS(1582), + [sym__emphasis_open_underscore] = ACTIONS(1582), + }, + [331] = { + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_parenthesis] = STATE(331), + [aux_sym__list_parenthesis_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_BSLASH] = ACTIONS(1427), + [anon_sym_RBRACK] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [aux_sym__html_block_1_token1] = ACTIONS(1425), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1427), + [anon_sym_LT_QMARK] = ACTIONS(1427), + [aux_sym__html_block_4_token1] = ACTIONS(1427), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1425), + [aux_sym__html_block_6_token1] = ACTIONS(1427), + [aux_sym__html_block_6_token2] = ACTIONS(1425), + [sym__open_tag_html_block] = ACTIONS(1425), + [sym__open_tag_html_block_newline] = ACTIONS(1425), + [sym__closing_tag_html_block] = ACTIONS(1425), + [sym__closing_tag_html_block_newline] = ACTIONS(1425), + [sym_backslash_escape] = ACTIONS(1425), + [sym_entity_reference] = ACTIONS(1425), + [sym_numeric_character_reference] = ACTIONS(1425), + [sym_uri_autolink] = ACTIONS(1425), + [sym_email_autolink] = ACTIONS(1425), + [sym__whitespace_ge_2] = ACTIONS(1425), + [aux_sym__whitespace_token1] = ACTIONS(1427), + [sym__word_no_digit] = ACTIONS(1425), + [sym__digits] = ACTIONS(1425), + [aux_sym__newline_token1] = ACTIONS(1425), + [sym__block_quote_start] = ACTIONS(1425), + [sym__indented_chunk_start] = ACTIONS(1425), + [sym_atx_h1_marker] = ACTIONS(1425), + [sym_atx_h2_marker] = ACTIONS(1425), + [sym_atx_h3_marker] = ACTIONS(1425), + [sym_atx_h4_marker] = ACTIONS(1425), + [sym_atx_h5_marker] = ACTIONS(1425), + [sym_atx_h6_marker] = ACTIONS(1425), + [sym__thematic_break] = ACTIONS(1425), + [sym__list_marker_minus] = ACTIONS(1425), + [sym__list_marker_plus] = ACTIONS(1425), + [sym__list_marker_star] = ACTIONS(1425), + [sym__list_marker_parenthesis] = ACTIONS(1429), + [sym__list_marker_dot] = ACTIONS(1425), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1425), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1425), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1425), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1429), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1425), + [sym__fenced_code_block_start_backtick] = ACTIONS(1425), + [sym__fenced_code_block_start_tilde] = ACTIONS(1425), + [sym__blank_line_start] = ACTIONS(1425), + [sym__code_span_start] = ACTIONS(1425), + [sym__emphasis_open_star] = ACTIONS(1425), + [sym__emphasis_open_underscore] = ACTIONS(1425), + }, + [332] = { + [sym_list_marker_dot] = STATE(42), + [sym__list_item_dot] = STATE(332), + [aux_sym__list_dot_repeat1] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1418), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1418), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym__] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [aux_sym__html_block_1_token1] = ACTIONS(1418), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1420), + [anon_sym_LT_QMARK] = ACTIONS(1420), + [aux_sym__html_block_4_token1] = ACTIONS(1420), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1418), + [aux_sym__html_block_6_token1] = ACTIONS(1420), + [aux_sym__html_block_6_token2] = ACTIONS(1418), + [sym__open_tag_html_block] = ACTIONS(1418), + [sym__open_tag_html_block_newline] = ACTIONS(1418), + [sym__closing_tag_html_block] = ACTIONS(1418), + [sym__closing_tag_html_block_newline] = ACTIONS(1418), + [sym_backslash_escape] = ACTIONS(1418), + [sym_entity_reference] = ACTIONS(1418), + [sym_numeric_character_reference] = ACTIONS(1418), + [sym_uri_autolink] = ACTIONS(1418), + [sym_email_autolink] = ACTIONS(1418), + [sym__whitespace_ge_2] = ACTIONS(1418), + [aux_sym__whitespace_token1] = ACTIONS(1420), + [sym__word_no_digit] = ACTIONS(1418), + [sym__digits] = ACTIONS(1418), + [aux_sym__newline_token1] = ACTIONS(1418), + [sym__block_quote_start] = ACTIONS(1418), + [sym__indented_chunk_start] = ACTIONS(1418), + [sym_atx_h1_marker] = ACTIONS(1418), + [sym_atx_h2_marker] = ACTIONS(1418), + [sym_atx_h3_marker] = ACTIONS(1418), + [sym_atx_h4_marker] = ACTIONS(1418), + [sym_atx_h5_marker] = ACTIONS(1418), + [sym_atx_h6_marker] = ACTIONS(1418), + [sym__thematic_break] = ACTIONS(1418), + [sym__list_marker_minus] = ACTIONS(1418), + [sym__list_marker_plus] = ACTIONS(1418), + [sym__list_marker_star] = ACTIONS(1418), + [sym__list_marker_parenthesis] = ACTIONS(1418), + [sym__list_marker_dot] = ACTIONS(1422), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1418), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1422), + [sym__fenced_code_block_start_backtick] = ACTIONS(1418), + [sym__fenced_code_block_start_tilde] = ACTIONS(1418), + [sym__blank_line_start] = ACTIONS(1418), + [sym__code_span_start] = ACTIONS(1418), + [sym__emphasis_open_star] = ACTIONS(1418), + [sym__emphasis_open_underscore] = ACTIONS(1418), + }, + [333] = { + [sym_list_marker_star] = STATE(41), + [sym__list_item_star] = STATE(333), + [aux_sym__list_star_repeat1] = STATE(333), + [ts_builtin_sym_end] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_COLON] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1409), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_QMARK] = ACTIONS(1407), + [anon_sym_AT] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_BSLASH] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym__] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [aux_sym__html_block_1_token1] = ACTIONS(1407), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1409), + [anon_sym_LT_QMARK] = ACTIONS(1409), + [aux_sym__html_block_4_token1] = ACTIONS(1409), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1407), + [aux_sym__html_block_6_token1] = ACTIONS(1409), + [aux_sym__html_block_6_token2] = ACTIONS(1407), + [sym__open_tag_html_block] = ACTIONS(1407), + [sym__open_tag_html_block_newline] = ACTIONS(1407), + [sym__closing_tag_html_block] = ACTIONS(1407), + [sym__closing_tag_html_block_newline] = ACTIONS(1407), + [sym_backslash_escape] = ACTIONS(1407), + [sym_entity_reference] = ACTIONS(1407), + [sym_numeric_character_reference] = ACTIONS(1407), + [sym_uri_autolink] = ACTIONS(1407), + [sym_email_autolink] = ACTIONS(1407), + [sym__whitespace_ge_2] = ACTIONS(1407), + [aux_sym__whitespace_token1] = ACTIONS(1409), + [sym__word_no_digit] = ACTIONS(1407), + [sym__digits] = ACTIONS(1407), + [aux_sym__newline_token1] = ACTIONS(1407), + [sym__block_quote_start] = ACTIONS(1407), + [sym__indented_chunk_start] = ACTIONS(1407), + [sym_atx_h1_marker] = ACTIONS(1407), + [sym_atx_h2_marker] = ACTIONS(1407), + [sym_atx_h3_marker] = ACTIONS(1407), + [sym_atx_h4_marker] = ACTIONS(1407), + [sym_atx_h5_marker] = ACTIONS(1407), + [sym_atx_h6_marker] = ACTIONS(1407), + [sym__thematic_break] = ACTIONS(1407), + [sym__list_marker_minus] = ACTIONS(1407), + [sym__list_marker_plus] = ACTIONS(1407), + [sym__list_marker_star] = ACTIONS(1411), + [sym__list_marker_parenthesis] = ACTIONS(1407), + [sym__list_marker_dot] = ACTIONS(1407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1407), + [sym__fenced_code_block_start_backtick] = ACTIONS(1407), + [sym__fenced_code_block_start_tilde] = ACTIONS(1407), + [sym__blank_line_start] = ACTIONS(1407), + [sym__code_span_start] = ACTIONS(1407), + [sym__emphasis_open_star] = ACTIONS(1407), + [sym__emphasis_open_underscore] = ACTIONS(1407), + }, + [334] = { + [sym_list_marker_minus] = STATE(40), + [sym__list_item_minus] = STATE(334), + [aux_sym__list_minus_repeat1] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [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(1577), + [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(1577), + [anon_sym_RBRACK] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym__] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [aux_sym__html_block_1_token1] = ACTIONS(1575), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1577), + [anon_sym_LT_QMARK] = ACTIONS(1577), + [aux_sym__html_block_4_token1] = ACTIONS(1577), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1575), + [aux_sym__html_block_6_token1] = ACTIONS(1577), + [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(1575), + [aux_sym__whitespace_token1] = ACTIONS(1577), + [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(1579), + [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(1579), + [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__code_span_start] = ACTIONS(1575), + [sym__emphasis_open_star] = ACTIONS(1575), + [sym__emphasis_open_underscore] = ACTIONS(1575), + }, + [335] = { + [sym_link_title] = STATE(2387), + [sym__whitespace] = STATE(2185), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [aux_sym__html_block_1_token1] = ACTIONS(1582), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1587), + [anon_sym_LT_QMARK] = ACTIONS(1587), + [aux_sym__html_block_4_token1] = ACTIONS(1587), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1582), + [aux_sym__html_block_6_token1] = ACTIONS(1587), + [aux_sym__html_block_6_token2] = ACTIONS(1582), + [sym__open_tag_html_block] = ACTIONS(1582), + [sym__open_tag_html_block_newline] = ACTIONS(1582), + [sym__closing_tag_html_block] = ACTIONS(1582), + [sym__closing_tag_html_block_newline] = ACTIONS(1582), + [sym_backslash_escape] = ACTIONS(1582), + [sym_entity_reference] = ACTIONS(1582), + [sym_numeric_character_reference] = ACTIONS(1582), + [sym_uri_autolink] = ACTIONS(1582), + [sym_email_autolink] = ACTIONS(1582), + [sym__whitespace_ge_2] = ACTIONS(1595), + [aux_sym__whitespace_token1] = ACTIONS(1598), + [sym__word_no_digit] = ACTIONS(1582), + [sym__digits] = ACTIONS(1582), + [aux_sym__newline_token1] = ACTIONS(1582), + [sym__block_close] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym__no_indented_chunk] = ACTIONS(1603), + [sym__code_span_start] = ACTIONS(1582), + [sym__emphasis_open_star] = ACTIONS(1582), + [sym__emphasis_open_underscore] = ACTIONS(1582), + }, [336] = { [sym_list_marker_plus] = STATE(39), [sym__list_item_plus] = STATE(336), [aux_sym__list_plus_repeat1] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_COLON] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_BSLASH] = ACTIONS(1493), - [anon_sym_RBRACK] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym__] = ACTIONS(1491), - [anon_sym_BQUOTE] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [aux_sym__html_block_1_token1] = ACTIONS(1491), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1493), - [anon_sym_LT_QMARK] = ACTIONS(1493), - [aux_sym__html_block_4_token1] = ACTIONS(1493), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1491), - [aux_sym__html_block_6_token1] = ACTIONS(1493), - [aux_sym__html_block_6_token2] = ACTIONS(1491), - [sym__open_tag_html_block] = ACTIONS(1491), - [sym__open_tag_html_block_newline] = ACTIONS(1491), - [sym__closing_tag_html_block] = ACTIONS(1491), - [sym__closing_tag_html_block_newline] = ACTIONS(1491), - [sym_backslash_escape] = ACTIONS(1491), - [sym_entity_reference] = ACTIONS(1491), - [sym_numeric_character_reference] = ACTIONS(1491), - [sym_uri_autolink] = ACTIONS(1491), - [sym_email_autolink] = ACTIONS(1491), - [sym__whitespace_ge_2] = ACTIONS(1491), - [aux_sym__whitespace_token1] = ACTIONS(1493), - [sym__word_no_digit] = ACTIONS(1491), - [sym__digits] = ACTIONS(1491), - [aux_sym__newline_token1] = ACTIONS(1491), - [sym__block_quote_start] = ACTIONS(1491), - [sym__indented_chunk_start] = ACTIONS(1491), - [sym_atx_h1_marker] = ACTIONS(1491), - [sym_atx_h2_marker] = ACTIONS(1491), - [sym_atx_h3_marker] = ACTIONS(1491), - [sym_atx_h4_marker] = ACTIONS(1491), - [sym_atx_h5_marker] = ACTIONS(1491), - [sym_atx_h6_marker] = ACTIONS(1491), - [sym__thematic_break] = ACTIONS(1491), - [sym__list_marker_minus] = ACTIONS(1491), - [sym__list_marker_plus] = ACTIONS(1495), - [sym__list_marker_star] = ACTIONS(1491), - [sym__list_marker_parenthesis] = ACTIONS(1491), - [sym__list_marker_dot] = ACTIONS(1491), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1491), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1495), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1491), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1491), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1491), - [sym__fenced_code_block_start_backtick] = ACTIONS(1491), - [sym__fenced_code_block_start_tilde] = ACTIONS(1491), - [sym__blank_line_start] = ACTIONS(1491), - [sym__code_span_start] = ACTIONS(1491), - [sym__emphasis_open_star] = ACTIONS(1491), - [sym__emphasis_open_underscore] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_BSLASH] = ACTIONS(1481), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [aux_sym__html_block_1_token1] = ACTIONS(1479), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1481), + [anon_sym_LT_QMARK] = ACTIONS(1481), + [aux_sym__html_block_4_token1] = ACTIONS(1481), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1479), + [aux_sym__html_block_6_token1] = ACTIONS(1481), + [aux_sym__html_block_6_token2] = ACTIONS(1479), + [sym__open_tag_html_block] = ACTIONS(1479), + [sym__open_tag_html_block_newline] = ACTIONS(1479), + [sym__closing_tag_html_block] = ACTIONS(1479), + [sym__closing_tag_html_block_newline] = ACTIONS(1479), + [sym_backslash_escape] = ACTIONS(1479), + [sym_entity_reference] = ACTIONS(1479), + [sym_numeric_character_reference] = ACTIONS(1479), + [sym_uri_autolink] = ACTIONS(1479), + [sym_email_autolink] = ACTIONS(1479), + [sym__whitespace_ge_2] = ACTIONS(1479), + [aux_sym__whitespace_token1] = ACTIONS(1481), + [sym__word_no_digit] = ACTIONS(1479), + [sym__digits] = ACTIONS(1479), + [aux_sym__newline_token1] = ACTIONS(1479), + [sym__block_quote_start] = ACTIONS(1479), + [sym__indented_chunk_start] = ACTIONS(1479), + [sym_atx_h1_marker] = ACTIONS(1479), + [sym_atx_h2_marker] = ACTIONS(1479), + [sym_atx_h3_marker] = ACTIONS(1479), + [sym_atx_h4_marker] = ACTIONS(1479), + [sym_atx_h5_marker] = ACTIONS(1479), + [sym_atx_h6_marker] = ACTIONS(1479), + [sym__thematic_break] = ACTIONS(1479), + [sym__list_marker_minus] = ACTIONS(1479), + [sym__list_marker_plus] = ACTIONS(1483), + [sym__list_marker_star] = ACTIONS(1479), + [sym__list_marker_parenthesis] = ACTIONS(1479), + [sym__list_marker_dot] = ACTIONS(1479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1483), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1479), + [sym__fenced_code_block_start_backtick] = ACTIONS(1479), + [sym__fenced_code_block_start_tilde] = ACTIONS(1479), + [sym__blank_line_start] = ACTIONS(1479), + [sym__code_span_start] = ACTIONS(1479), + [sym__emphasis_open_star] = ACTIONS(1479), + [sym__emphasis_open_underscore] = ACTIONS(1479), }, [337] = { - [sym_list_marker_minus] = STATE(40), - [sym__list_item_minus] = STATE(337), - [aux_sym__list_minus_repeat1] = STATE(337), - [ts_builtin_sym_end] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_PERCENT] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_DOT] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_COLON] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_QMARK] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_BSLASH] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1484), - [anon_sym_CARET] = ACTIONS(1484), - [anon_sym__] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [aux_sym__html_block_1_token1] = ACTIONS(1484), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1486), - [anon_sym_LT_QMARK] = ACTIONS(1486), - [aux_sym__html_block_4_token1] = ACTIONS(1486), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1484), - [aux_sym__html_block_6_token1] = ACTIONS(1486), - [aux_sym__html_block_6_token2] = ACTIONS(1484), - [sym__open_tag_html_block] = ACTIONS(1484), - [sym__open_tag_html_block_newline] = ACTIONS(1484), - [sym__closing_tag_html_block] = ACTIONS(1484), - [sym__closing_tag_html_block_newline] = ACTIONS(1484), - [sym_backslash_escape] = ACTIONS(1484), - [sym_entity_reference] = ACTIONS(1484), - [sym_numeric_character_reference] = ACTIONS(1484), - [sym_uri_autolink] = ACTIONS(1484), - [sym_email_autolink] = ACTIONS(1484), - [sym__whitespace_ge_2] = ACTIONS(1484), - [aux_sym__whitespace_token1] = ACTIONS(1486), - [sym__word_no_digit] = ACTIONS(1484), - [sym__digits] = ACTIONS(1484), - [aux_sym__newline_token1] = ACTIONS(1484), - [sym__block_quote_start] = ACTIONS(1484), - [sym__indented_chunk_start] = ACTIONS(1484), - [sym_atx_h1_marker] = ACTIONS(1484), - [sym_atx_h2_marker] = ACTIONS(1484), - [sym_atx_h3_marker] = ACTIONS(1484), - [sym_atx_h4_marker] = ACTIONS(1484), - [sym_atx_h5_marker] = ACTIONS(1484), - [sym_atx_h6_marker] = ACTIONS(1484), - [sym__thematic_break] = ACTIONS(1484), - [sym__list_marker_minus] = ACTIONS(1488), - [sym__list_marker_plus] = ACTIONS(1484), - [sym__list_marker_star] = ACTIONS(1484), - [sym__list_marker_parenthesis] = ACTIONS(1484), - [sym__list_marker_dot] = ACTIONS(1484), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), - [sym__fenced_code_block_start_backtick] = ACTIONS(1484), - [sym__fenced_code_block_start_tilde] = ACTIONS(1484), - [sym__blank_line_start] = ACTIONS(1484), - [sym__code_span_start] = ACTIONS(1484), - [sym__emphasis_open_star] = ACTIONS(1484), - [sym__emphasis_open_underscore] = ACTIONS(1484), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_PERCENT] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_COLON] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1605), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1605), + [anon_sym_AT] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1617), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1605), + [anon_sym__] = ACTIONS(1605), + [anon_sym_BQUOTE] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1623), + [anon_sym_LT_QMARK] = ACTIONS(1626), + [aux_sym__html_block_4_token1] = ACTIONS(1629), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1632), + [sym_backslash_escape] = ACTIONS(1635), + [sym_entity_reference] = ACTIONS(1635), + [sym_numeric_character_reference] = ACTIONS(1635), + [sym_uri_autolink] = ACTIONS(1635), + [sym_email_autolink] = ACTIONS(1635), + [sym__whitespace_ge_2] = ACTIONS(1638), + [aux_sym__whitespace_token1] = ACTIONS(1641), + [sym__word_no_digit] = ACTIONS(1635), + [sym__digits] = ACTIONS(1635), + [aux_sym__newline_token1] = ACTIONS(1644), + [sym__code_span_start] = ACTIONS(1647), + [sym__emphasis_open_star] = ACTIONS(1650), + [sym__emphasis_open_underscore] = ACTIONS(1653), }, [338] = { - [sym_list_marker_star] = STATE(41), - [sym__list_item_star] = STATE(338), - [aux_sym__list_star_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_RBRACK] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [aux_sym__html_block_1_token1] = ACTIONS(1477), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1479), - [anon_sym_LT_QMARK] = ACTIONS(1479), - [aux_sym__html_block_4_token1] = ACTIONS(1479), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1477), - [aux_sym__html_block_6_token1] = ACTIONS(1479), - [aux_sym__html_block_6_token2] = ACTIONS(1477), - [sym__open_tag_html_block] = ACTIONS(1477), - [sym__open_tag_html_block_newline] = ACTIONS(1477), - [sym__closing_tag_html_block] = ACTIONS(1477), - [sym__closing_tag_html_block_newline] = ACTIONS(1477), - [sym_backslash_escape] = ACTIONS(1477), - [sym_entity_reference] = ACTIONS(1477), - [sym_numeric_character_reference] = ACTIONS(1477), - [sym_uri_autolink] = ACTIONS(1477), - [sym_email_autolink] = ACTIONS(1477), - [sym__whitespace_ge_2] = ACTIONS(1477), - [aux_sym__whitespace_token1] = ACTIONS(1479), - [sym__word_no_digit] = ACTIONS(1477), - [sym__digits] = ACTIONS(1477), - [aux_sym__newline_token1] = ACTIONS(1477), - [sym__block_quote_start] = ACTIONS(1477), - [sym__indented_chunk_start] = ACTIONS(1477), - [sym_atx_h1_marker] = ACTIONS(1477), - [sym_atx_h2_marker] = ACTIONS(1477), - [sym_atx_h3_marker] = ACTIONS(1477), - [sym_atx_h4_marker] = ACTIONS(1477), - [sym_atx_h5_marker] = ACTIONS(1477), - [sym_atx_h6_marker] = ACTIONS(1477), - [sym__thematic_break] = ACTIONS(1477), - [sym__list_marker_minus] = ACTIONS(1477), - [sym__list_marker_plus] = ACTIONS(1477), - [sym__list_marker_star] = ACTIONS(1481), - [sym__list_marker_parenthesis] = ACTIONS(1477), - [sym__list_marker_dot] = ACTIONS(1477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1481), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1477), - [sym__fenced_code_block_start_backtick] = ACTIONS(1477), - [sym__fenced_code_block_start_tilde] = ACTIONS(1477), - [sym__blank_line_start] = ACTIONS(1477), - [sym__code_span_start] = ACTIONS(1477), - [sym__emphasis_open_star] = ACTIONS(1477), - [sym__emphasis_open_underscore] = ACTIONS(1477), + [sym_list_marker_star] = STATE(24), + [sym__list_item_star] = STATE(296), + [aux_sym__list_star_repeat1] = STATE(296), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_PERCENT] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_RPAREN] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_SLASH] = ACTIONS(1656), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_EQ] = ACTIONS(1656), + [anon_sym_GT] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1656), + [anon_sym_AT] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1658), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1656), + [anon_sym__] = ACTIONS(1656), + [anon_sym_BQUOTE] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [aux_sym__html_block_1_token1] = ACTIONS(1656), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1658), + [anon_sym_LT_QMARK] = ACTIONS(1658), + [aux_sym__html_block_4_token1] = ACTIONS(1658), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1656), + [aux_sym__html_block_6_token1] = ACTIONS(1658), + [aux_sym__html_block_6_token2] = ACTIONS(1656), + [sym__open_tag_html_block] = ACTIONS(1656), + [sym__open_tag_html_block_newline] = ACTIONS(1656), + [sym__closing_tag_html_block] = ACTIONS(1656), + [sym__closing_tag_html_block_newline] = ACTIONS(1656), + [sym_backslash_escape] = ACTIONS(1656), + [sym_entity_reference] = ACTIONS(1656), + [sym_numeric_character_reference] = ACTIONS(1656), + [sym_uri_autolink] = ACTIONS(1656), + [sym_email_autolink] = ACTIONS(1656), + [sym__whitespace_ge_2] = ACTIONS(1656), + [aux_sym__whitespace_token1] = ACTIONS(1658), + [sym__word_no_digit] = ACTIONS(1656), + [sym__digits] = ACTIONS(1656), + [aux_sym__newline_token1] = ACTIONS(1656), + [sym__block_close] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1656), + [sym__indented_chunk_start] = ACTIONS(1656), + [sym_atx_h1_marker] = ACTIONS(1656), + [sym_atx_h2_marker] = ACTIONS(1656), + [sym_atx_h3_marker] = ACTIONS(1656), + [sym_atx_h4_marker] = ACTIONS(1656), + [sym_atx_h5_marker] = ACTIONS(1656), + [sym_atx_h6_marker] = ACTIONS(1656), + [sym__thematic_break] = ACTIONS(1656), + [sym__list_marker_minus] = ACTIONS(1656), + [sym__list_marker_plus] = ACTIONS(1656), + [sym__list_marker_star] = ACTIONS(57), + [sym__list_marker_parenthesis] = ACTIONS(1656), + [sym__list_marker_dot] = ACTIONS(1656), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_star_dont_interrupt] = ACTIONS(57), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), + [sym__fenced_code_block_start_backtick] = ACTIONS(1656), + [sym__fenced_code_block_start_tilde] = ACTIONS(1656), + [sym__blank_line_start] = ACTIONS(1656), + [sym__code_span_start] = ACTIONS(1656), + [sym__emphasis_open_star] = ACTIONS(1656), + [sym__emphasis_open_underscore] = ACTIONS(1656), }, [339] = { - [sym_link_title] = STATE(2255), - [sym__whitespace] = STATE(2147), - [ts_builtin_sym_end] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_COLON] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_BSLASH] = ACTIONS(1447), - [anon_sym_RBRACK] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1442), - [anon_sym__] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [aux_sym__html_block_1_token1] = ACTIONS(1442), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1447), - [anon_sym_LT_QMARK] = ACTIONS(1447), - [aux_sym__html_block_4_token1] = ACTIONS(1447), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1442), - [aux_sym__html_block_6_token1] = ACTIONS(1447), - [aux_sym__html_block_6_token2] = ACTIONS(1442), - [sym__open_tag_html_block] = ACTIONS(1442), - [sym__open_tag_html_block_newline] = ACTIONS(1442), - [sym__closing_tag_html_block] = ACTIONS(1442), - [sym__closing_tag_html_block_newline] = ACTIONS(1442), - [sym_backslash_escape] = ACTIONS(1442), - [sym_entity_reference] = ACTIONS(1442), - [sym_numeric_character_reference] = ACTIONS(1442), - [sym_uri_autolink] = ACTIONS(1442), - [sym_email_autolink] = ACTIONS(1442), - [sym__whitespace_ge_2] = ACTIONS(1455), - [aux_sym__whitespace_token1] = ACTIONS(1458), - [sym__word_no_digit] = ACTIONS(1442), - [sym__digits] = ACTIONS(1442), - [aux_sym__newline_token1] = ACTIONS(1442), - [sym__block_quote_start] = ACTIONS(1442), - [sym__indented_chunk_start] = ACTIONS(1442), - [sym_atx_h1_marker] = ACTIONS(1442), - [sym_atx_h2_marker] = ACTIONS(1442), - [sym_atx_h3_marker] = ACTIONS(1442), - [sym_atx_h4_marker] = ACTIONS(1442), - [sym_atx_h5_marker] = ACTIONS(1442), - [sym_atx_h6_marker] = ACTIONS(1442), - [sym__thematic_break] = ACTIONS(1442), - [sym__list_marker_minus] = ACTIONS(1442), - [sym__list_marker_plus] = ACTIONS(1442), - [sym__list_marker_star] = ACTIONS(1442), - [sym__list_marker_parenthesis] = ACTIONS(1442), - [sym__list_marker_dot] = ACTIONS(1442), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), - [sym__fenced_code_block_start_backtick] = ACTIONS(1442), - [sym__fenced_code_block_start_tilde] = ACTIONS(1442), - [sym__blank_line_start] = ACTIONS(1442), - [sym__no_indented_chunk] = ACTIONS(1656), - [sym__code_span_start] = ACTIONS(1442), - [sym__emphasis_open_star] = ACTIONS(1442), - [sym__emphasis_open_underscore] = ACTIONS(1442), + [sym_link_title] = STATE(2305), + [sym__whitespace] = STATE(2164), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_COLON] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_BSLASH] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym__] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [aux_sym__html_block_1_token1] = ACTIONS(1515), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1520), + [anon_sym_LT_QMARK] = ACTIONS(1520), + [aux_sym__html_block_4_token1] = ACTIONS(1520), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1515), + [aux_sym__html_block_6_token1] = ACTIONS(1520), + [aux_sym__html_block_6_token2] = ACTIONS(1515), + [sym__open_tag_html_block] = ACTIONS(1515), + [sym__open_tag_html_block_newline] = ACTIONS(1515), + [sym__closing_tag_html_block] = ACTIONS(1515), + [sym__closing_tag_html_block_newline] = ACTIONS(1515), + [sym_backslash_escape] = ACTIONS(1515), + [sym_entity_reference] = ACTIONS(1515), + [sym_numeric_character_reference] = ACTIONS(1515), + [sym_uri_autolink] = ACTIONS(1515), + [sym_email_autolink] = ACTIONS(1515), + [sym__whitespace_ge_2] = ACTIONS(1528), + [aux_sym__whitespace_token1] = ACTIONS(1531), + [sym__word_no_digit] = ACTIONS(1515), + [sym__digits] = ACTIONS(1515), + [aux_sym__newline_token1] = ACTIONS(1515), + [sym__block_quote_start] = ACTIONS(1515), + [sym__indented_chunk_start] = ACTIONS(1515), + [sym_atx_h1_marker] = ACTIONS(1515), + [sym_atx_h2_marker] = ACTIONS(1515), + [sym_atx_h3_marker] = ACTIONS(1515), + [sym_atx_h4_marker] = ACTIONS(1515), + [sym_atx_h5_marker] = ACTIONS(1515), + [sym_atx_h6_marker] = ACTIONS(1515), + [sym__thematic_break] = ACTIONS(1515), + [sym__list_marker_minus] = ACTIONS(1515), + [sym__list_marker_plus] = ACTIONS(1515), + [sym__list_marker_star] = ACTIONS(1515), + [sym__list_marker_parenthesis] = ACTIONS(1515), + [sym__list_marker_dot] = ACTIONS(1515), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1515), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1515), + [sym__fenced_code_block_start_backtick] = ACTIONS(1515), + [sym__fenced_code_block_start_tilde] = ACTIONS(1515), + [sym__blank_line_start] = ACTIONS(1515), + [sym__no_indented_chunk] = ACTIONS(1660), + [sym__code_span_start] = ACTIONS(1515), + [sym__emphasis_open_star] = ACTIONS(1515), + [sym__emphasis_open_underscore] = ACTIONS(1515), }, [340] = { - [sym_list_marker_dot] = STATE(42), - [sym__list_item_dot] = STATE(340), - [aux_sym__list_dot_repeat1] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1470), - [anon_sym_COLON] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_BSLASH] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [aux_sym__html_block_1_token1] = ACTIONS(1470), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1472), - [anon_sym_LT_QMARK] = ACTIONS(1472), - [aux_sym__html_block_4_token1] = ACTIONS(1472), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1470), - [aux_sym__html_block_6_token1] = ACTIONS(1472), - [aux_sym__html_block_6_token2] = ACTIONS(1470), - [sym__open_tag_html_block] = ACTIONS(1470), - [sym__open_tag_html_block_newline] = ACTIONS(1470), - [sym__closing_tag_html_block] = ACTIONS(1470), - [sym__closing_tag_html_block_newline] = ACTIONS(1470), - [sym_backslash_escape] = ACTIONS(1470), - [sym_entity_reference] = ACTIONS(1470), - [sym_numeric_character_reference] = ACTIONS(1470), - [sym_uri_autolink] = ACTIONS(1470), - [sym_email_autolink] = ACTIONS(1470), - [sym__whitespace_ge_2] = ACTIONS(1470), - [aux_sym__whitespace_token1] = ACTIONS(1472), - [sym__word_no_digit] = ACTIONS(1470), - [sym__digits] = ACTIONS(1470), - [aux_sym__newline_token1] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1470), - [sym__indented_chunk_start] = ACTIONS(1470), - [sym_atx_h1_marker] = ACTIONS(1470), - [sym_atx_h2_marker] = ACTIONS(1470), - [sym_atx_h3_marker] = ACTIONS(1470), - [sym_atx_h4_marker] = ACTIONS(1470), - [sym_atx_h5_marker] = ACTIONS(1470), - [sym_atx_h6_marker] = ACTIONS(1470), - [sym__thematic_break] = ACTIONS(1470), - [sym__list_marker_minus] = ACTIONS(1470), - [sym__list_marker_plus] = ACTIONS(1470), - [sym__list_marker_star] = ACTIONS(1470), - [sym__list_marker_parenthesis] = ACTIONS(1470), - [sym__list_marker_dot] = ACTIONS(1474), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), - [sym__fenced_code_block_start_backtick] = ACTIONS(1470), - [sym__fenced_code_block_start_tilde] = ACTIONS(1470), - [sym__blank_line_start] = ACTIONS(1470), - [sym__code_span_start] = ACTIONS(1470), - [sym__emphasis_open_star] = ACTIONS(1470), - [sym__emphasis_open_underscore] = ACTIONS(1470), - }, - [341] = { - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_parenthesis] = STATE(341), - [aux_sym__list_parenthesis_repeat1] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_COLON] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_BSLASH] = ACTIONS(1465), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [aux_sym__html_block_1_token1] = ACTIONS(1463), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1465), - [anon_sym_LT_QMARK] = ACTIONS(1465), - [aux_sym__html_block_4_token1] = ACTIONS(1465), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1463), - [aux_sym__html_block_6_token1] = ACTIONS(1465), - [aux_sym__html_block_6_token2] = ACTIONS(1463), - [sym__open_tag_html_block] = ACTIONS(1463), - [sym__open_tag_html_block_newline] = ACTIONS(1463), - [sym__closing_tag_html_block] = ACTIONS(1463), - [sym__closing_tag_html_block_newline] = ACTIONS(1463), - [sym_backslash_escape] = ACTIONS(1463), - [sym_entity_reference] = ACTIONS(1463), - [sym_numeric_character_reference] = ACTIONS(1463), - [sym_uri_autolink] = ACTIONS(1463), - [sym_email_autolink] = ACTIONS(1463), - [sym__whitespace_ge_2] = ACTIONS(1463), - [aux_sym__whitespace_token1] = ACTIONS(1465), - [sym__word_no_digit] = ACTIONS(1463), - [sym__digits] = ACTIONS(1463), - [aux_sym__newline_token1] = ACTIONS(1463), - [sym__block_quote_start] = ACTIONS(1463), - [sym__indented_chunk_start] = ACTIONS(1463), - [sym_atx_h1_marker] = ACTIONS(1463), - [sym_atx_h2_marker] = ACTIONS(1463), - [sym_atx_h3_marker] = ACTIONS(1463), - [sym_atx_h4_marker] = ACTIONS(1463), - [sym_atx_h5_marker] = ACTIONS(1463), - [sym_atx_h6_marker] = ACTIONS(1463), - [sym__thematic_break] = ACTIONS(1463), - [sym__list_marker_minus] = ACTIONS(1463), - [sym__list_marker_plus] = ACTIONS(1463), - [sym__list_marker_star] = ACTIONS(1463), - [sym__list_marker_parenthesis] = ACTIONS(1467), - [sym__list_marker_dot] = ACTIONS(1463), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1467), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1463), - [sym__fenced_code_block_start_backtick] = ACTIONS(1463), - [sym__fenced_code_block_start_tilde] = ACTIONS(1463), - [sym__blank_line_start] = ACTIONS(1463), - [sym__code_span_start] = ACTIONS(1463), - [sym__emphasis_open_star] = ACTIONS(1463), - [sym__emphasis_open_underscore] = ACTIONS(1463), - }, - [342] = { - [sym__block_interrupt_paragraph] = STATE(925), - [sym_thematic_break] = STATE(925), - [sym_atx_heading] = STATE(925), - [sym_fenced_code_block] = STATE(925), - [sym__html_block_1] = STATE(925), - [sym__html_block_2] = STATE(925), - [sym__html_block_3] = STATE(925), - [sym__html_block_4] = STATE(925), - [sym__html_block_5] = STATE(925), - [sym__html_block_6] = STATE(925), - [sym__blank_line] = STATE(925), - [sym_block_quote] = STATE(925), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(495), - [anon_sym_LT_QMARK] = ACTIONS(497), - [aux_sym__html_block_4_token1] = ACTIONS(499), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(501), - [aux_sym__html_block_6_token1] = ACTIONS(503), - [aux_sym__html_block_6_token2] = ACTIONS(505), - [sym_backslash_escape] = ACTIONS(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym_uri_autolink] = ACTIONS(481), - [sym_email_autolink] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(507), - [sym_atx_h1_marker] = ACTIONS(509), - [sym_atx_h2_marker] = ACTIONS(509), - [sym_atx_h3_marker] = ACTIONS(509), - [sym_atx_h4_marker] = ACTIONS(509), - [sym_atx_h5_marker] = ACTIONS(509), - [sym_atx_h6_marker] = ACTIONS(509), - [sym_setext_h1_underline] = ACTIONS(535), - [sym_setext_h2_underline] = ACTIONS(535), - [sym__thematic_break] = ACTIONS(513), - [sym__list_marker_minus] = ACTIONS(535), - [sym__list_marker_plus] = ACTIONS(535), - [sym__list_marker_star] = ACTIONS(535), - [sym__list_marker_parenthesis] = ACTIONS(535), - [sym__list_marker_dot] = ACTIONS(535), - [sym__fenced_code_block_start_backtick] = ACTIONS(515), - [sym__fenced_code_block_start_tilde] = ACTIONS(517), - [sym__blank_line_start] = ACTIONS(519), - [sym__code_span_start] = ACTIONS(481), - [sym__emphasis_open_star] = ACTIONS(481), - [sym__emphasis_open_underscore] = ACTIONS(481), - }, - [343] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(290), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(301), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -62168,419 +61928,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, + [341] = { + [sym__indented_chunk] = STATE(341), + [sym__blank_line] = STATE(341), + [aux_sym_indented_code_block_repeat1] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = 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_PIPE] = 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(1662), + [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(1469), + [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(1469), + [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(1665), + [sym__code_span_start] = ACTIONS(1469), + [sym__emphasis_open_star] = ACTIONS(1469), + [sym__emphasis_open_underscore] = ACTIONS(1469), + }, + [342] = { + [sym_list_marker_plus] = STATE(39), + [sym__list_item_plus] = STATE(336), + [aux_sym__list_plus_repeat1] = STATE(336), + [ts_builtin_sym_end] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_COLON] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [aux_sym__html_block_1_token1] = ACTIONS(1536), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1538), + [anon_sym_LT_QMARK] = ACTIONS(1538), + [aux_sym__html_block_4_token1] = ACTIONS(1538), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1536), + [aux_sym__html_block_6_token1] = ACTIONS(1538), + [aux_sym__html_block_6_token2] = ACTIONS(1536), + [sym__open_tag_html_block] = ACTIONS(1536), + [sym__open_tag_html_block_newline] = ACTIONS(1536), + [sym__closing_tag_html_block] = ACTIONS(1536), + [sym__closing_tag_html_block_newline] = ACTIONS(1536), + [sym_backslash_escape] = ACTIONS(1536), + [sym_entity_reference] = ACTIONS(1536), + [sym_numeric_character_reference] = ACTIONS(1536), + [sym_uri_autolink] = ACTIONS(1536), + [sym_email_autolink] = ACTIONS(1536), + [sym__whitespace_ge_2] = ACTIONS(1536), + [aux_sym__whitespace_token1] = ACTIONS(1538), + [sym__word_no_digit] = ACTIONS(1536), + [sym__digits] = ACTIONS(1536), + [aux_sym__newline_token1] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym__code_span_start] = ACTIONS(1536), + [sym__emphasis_open_star] = ACTIONS(1536), + [sym__emphasis_open_underscore] = ACTIONS(1536), + }, + [343] = { + [sym_list_marker_minus] = STATE(40), + [sym__list_item_minus] = STATE(334), + [aux_sym__list_minus_repeat1] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = 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_PIPE] = 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), + }, [344] = { - [sym__indented_chunk] = STATE(344), - [sym__blank_line] = STATE(344), - [aux_sym_indented_code_block_repeat1] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_AT] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_BSLASH] = ACTIONS(1407), - [anon_sym_RBRACK] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym__] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [aux_sym__html_block_1_token1] = ACTIONS(1405), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1407), - [anon_sym_LT_QMARK] = ACTIONS(1407), - [aux_sym__html_block_4_token1] = ACTIONS(1407), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1405), - [aux_sym__html_block_6_token1] = ACTIONS(1407), - [aux_sym__html_block_6_token2] = ACTIONS(1405), - [sym__open_tag_html_block] = ACTIONS(1405), - [sym__open_tag_html_block_newline] = ACTIONS(1405), - [sym__closing_tag_html_block] = ACTIONS(1405), - [sym__closing_tag_html_block_newline] = ACTIONS(1405), - [sym_backslash_escape] = ACTIONS(1405), - [sym_entity_reference] = ACTIONS(1405), - [sym_numeric_character_reference] = ACTIONS(1405), - [sym_uri_autolink] = ACTIONS(1405), - [sym_email_autolink] = ACTIONS(1405), - [sym__whitespace_ge_2] = ACTIONS(1405), - [aux_sym__whitespace_token1] = ACTIONS(1407), - [sym__word_no_digit] = ACTIONS(1405), - [sym__digits] = ACTIONS(1405), - [aux_sym__newline_token1] = ACTIONS(1405), - [sym__block_quote_start] = ACTIONS(1405), - [sym__indented_chunk_start] = ACTIONS(1658), - [sym_atx_h1_marker] = ACTIONS(1405), - [sym_atx_h2_marker] = ACTIONS(1405), - [sym_atx_h3_marker] = ACTIONS(1405), - [sym_atx_h4_marker] = ACTIONS(1405), - [sym_atx_h5_marker] = ACTIONS(1405), - [sym_atx_h6_marker] = ACTIONS(1405), - [sym__thematic_break] = ACTIONS(1405), - [sym__list_marker_minus] = ACTIONS(1405), - [sym__list_marker_plus] = ACTIONS(1405), - [sym__list_marker_star] = ACTIONS(1405), - [sym__list_marker_parenthesis] = ACTIONS(1405), - [sym__list_marker_dot] = ACTIONS(1405), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1405), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1405), - [sym__fenced_code_block_start_backtick] = ACTIONS(1405), - [sym__fenced_code_block_start_tilde] = ACTIONS(1405), - [sym__blank_line_start] = ACTIONS(1661), - [sym__code_span_start] = ACTIONS(1405), - [sym__emphasis_open_star] = ACTIONS(1405), - [sym__emphasis_open_underscore] = ACTIONS(1405), + [sym_list_marker_star] = STATE(41), + [sym__list_item_star] = STATE(333), + [aux_sym__list_star_repeat1] = STATE(333), + [ts_builtin_sym_end] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_PERCENT] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_RPAREN] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_SLASH] = ACTIONS(1656), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_EQ] = ACTIONS(1656), + [anon_sym_GT] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1656), + [anon_sym_AT] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1658), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1656), + [anon_sym__] = ACTIONS(1656), + [anon_sym_BQUOTE] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [aux_sym__html_block_1_token1] = ACTIONS(1656), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1658), + [anon_sym_LT_QMARK] = ACTIONS(1658), + [aux_sym__html_block_4_token1] = ACTIONS(1658), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1656), + [aux_sym__html_block_6_token1] = ACTIONS(1658), + [aux_sym__html_block_6_token2] = ACTIONS(1656), + [sym__open_tag_html_block] = ACTIONS(1656), + [sym__open_tag_html_block_newline] = ACTIONS(1656), + [sym__closing_tag_html_block] = ACTIONS(1656), + [sym__closing_tag_html_block_newline] = ACTIONS(1656), + [sym_backslash_escape] = ACTIONS(1656), + [sym_entity_reference] = ACTIONS(1656), + [sym_numeric_character_reference] = ACTIONS(1656), + [sym_uri_autolink] = ACTIONS(1656), + [sym_email_autolink] = ACTIONS(1656), + [sym__whitespace_ge_2] = ACTIONS(1656), + [aux_sym__whitespace_token1] = ACTIONS(1658), + [sym__word_no_digit] = ACTIONS(1656), + [sym__digits] = ACTIONS(1656), + [aux_sym__newline_token1] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1656), + [sym__indented_chunk_start] = ACTIONS(1656), + [sym_atx_h1_marker] = ACTIONS(1656), + [sym_atx_h2_marker] = ACTIONS(1656), + [sym_atx_h3_marker] = ACTIONS(1656), + [sym_atx_h4_marker] = ACTIONS(1656), + [sym_atx_h5_marker] = ACTIONS(1656), + [sym_atx_h6_marker] = ACTIONS(1656), + [sym__thematic_break] = ACTIONS(1656), + [sym__list_marker_minus] = ACTIONS(1656), + [sym__list_marker_plus] = ACTIONS(1656), + [sym__list_marker_star] = ACTIONS(57), + [sym__list_marker_parenthesis] = ACTIONS(1656), + [sym__list_marker_dot] = ACTIONS(1656), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_star_dont_interrupt] = ACTIONS(57), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), + [sym__fenced_code_block_start_backtick] = ACTIONS(1656), + [sym__fenced_code_block_start_tilde] = ACTIONS(1656), + [sym__blank_line_start] = ACTIONS(1656), + [sym__code_span_start] = ACTIONS(1656), + [sym__emphasis_open_star] = ACTIONS(1656), + [sym__emphasis_open_underscore] = ACTIONS(1656), }, [345] = { - [sym_link_title] = STATE(2265), - [sym__whitespace] = STATE(2159), - [ts_builtin_sym_end] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_COLON] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(1523), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym__] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [aux_sym__html_block_1_token1] = ACTIONS(1518), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1523), - [anon_sym_LT_QMARK] = ACTIONS(1523), - [aux_sym__html_block_4_token1] = ACTIONS(1523), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1518), - [aux_sym__html_block_6_token1] = ACTIONS(1523), - [aux_sym__html_block_6_token2] = ACTIONS(1518), - [sym__open_tag_html_block] = ACTIONS(1518), - [sym__open_tag_html_block_newline] = ACTIONS(1518), - [sym__closing_tag_html_block] = ACTIONS(1518), - [sym__closing_tag_html_block_newline] = ACTIONS(1518), - [sym_backslash_escape] = ACTIONS(1518), - [sym_entity_reference] = ACTIONS(1518), - [sym_numeric_character_reference] = ACTIONS(1518), - [sym_uri_autolink] = ACTIONS(1518), - [sym_email_autolink] = ACTIONS(1518), - [sym__whitespace_ge_2] = ACTIONS(1531), - [aux_sym__whitespace_token1] = ACTIONS(1534), - [sym__word_no_digit] = ACTIONS(1518), - [sym__digits] = ACTIONS(1518), - [aux_sym__newline_token1] = ACTIONS(1518), - [sym__block_quote_start] = ACTIONS(1518), - [sym__indented_chunk_start] = ACTIONS(1518), - [sym_atx_h1_marker] = ACTIONS(1518), - [sym_atx_h2_marker] = ACTIONS(1518), - [sym_atx_h3_marker] = ACTIONS(1518), - [sym_atx_h4_marker] = ACTIONS(1518), - [sym_atx_h5_marker] = ACTIONS(1518), - [sym_atx_h6_marker] = ACTIONS(1518), - [sym__thematic_break] = ACTIONS(1518), - [sym__list_marker_minus] = ACTIONS(1518), - [sym__list_marker_plus] = ACTIONS(1518), - [sym__list_marker_star] = ACTIONS(1518), - [sym__list_marker_parenthesis] = ACTIONS(1518), - [sym__list_marker_dot] = ACTIONS(1518), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), - [sym__fenced_code_block_start_backtick] = ACTIONS(1518), - [sym__fenced_code_block_start_tilde] = ACTIONS(1518), - [sym__blank_line_start] = ACTIONS(1518), - [sym__no_indented_chunk] = ACTIONS(1664), - [sym__code_span_start] = ACTIONS(1518), - [sym__emphasis_open_star] = ACTIONS(1518), - [sym__emphasis_open_underscore] = ACTIONS(1518), + [sym_list_marker_dot] = STATE(42), + [sym__list_item_dot] = STATE(332), + [aux_sym__list_dot_repeat1] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_COLON] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [aux_sym__html_block_1_token1] = ACTIONS(1414), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1416), + [anon_sym_LT_QMARK] = ACTIONS(1416), + [aux_sym__html_block_4_token1] = ACTIONS(1416), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1414), + [aux_sym__html_block_6_token1] = ACTIONS(1416), + [aux_sym__html_block_6_token2] = ACTIONS(1414), + [sym__open_tag_html_block] = ACTIONS(1414), + [sym__open_tag_html_block_newline] = ACTIONS(1414), + [sym__closing_tag_html_block] = ACTIONS(1414), + [sym__closing_tag_html_block_newline] = ACTIONS(1414), + [sym_backslash_escape] = ACTIONS(1414), + [sym_entity_reference] = ACTIONS(1414), + [sym_numeric_character_reference] = ACTIONS(1414), + [sym_uri_autolink] = ACTIONS(1414), + [sym_email_autolink] = ACTIONS(1414), + [sym__whitespace_ge_2] = ACTIONS(1414), + [aux_sym__whitespace_token1] = ACTIONS(1416), + [sym__word_no_digit] = ACTIONS(1414), + [sym__digits] = ACTIONS(1414), + [aux_sym__newline_token1] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym__code_span_start] = ACTIONS(1414), + [sym__emphasis_open_star] = ACTIONS(1414), + [sym__emphasis_open_underscore] = ACTIONS(1414), }, [346] = { - [sym_link_title] = STATE(2281), - [sym__whitespace] = STATE(2163), - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_DOLLAR] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_EQ] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_BSLASH] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym__] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [aux_sym__html_block_1_token1] = ACTIONS(1566), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1571), - [anon_sym_LT_QMARK] = ACTIONS(1571), - [aux_sym__html_block_4_token1] = ACTIONS(1571), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1566), - [aux_sym__html_block_6_token1] = ACTIONS(1571), - [aux_sym__html_block_6_token2] = ACTIONS(1566), - [sym__open_tag_html_block] = ACTIONS(1566), - [sym__open_tag_html_block_newline] = ACTIONS(1566), - [sym__closing_tag_html_block] = ACTIONS(1566), - [sym__closing_tag_html_block_newline] = ACTIONS(1566), - [sym_backslash_escape] = ACTIONS(1566), - [sym_entity_reference] = ACTIONS(1566), - [sym_numeric_character_reference] = ACTIONS(1566), - [sym_uri_autolink] = ACTIONS(1566), - [sym_email_autolink] = ACTIONS(1566), - [sym__whitespace_ge_2] = ACTIONS(1579), - [aux_sym__whitespace_token1] = ACTIONS(1582), - [sym__word_no_digit] = ACTIONS(1566), - [sym__digits] = ACTIONS(1566), - [aux_sym__newline_token1] = ACTIONS(1566), - [sym__block_quote_start] = ACTIONS(1566), - [sym__indented_chunk_start] = ACTIONS(1566), - [sym_atx_h1_marker] = ACTIONS(1566), - [sym_atx_h2_marker] = ACTIONS(1566), - [sym_atx_h3_marker] = ACTIONS(1566), - [sym_atx_h4_marker] = ACTIONS(1566), - [sym_atx_h5_marker] = ACTIONS(1566), - [sym_atx_h6_marker] = ACTIONS(1566), - [sym__thematic_break] = ACTIONS(1566), - [sym__list_marker_minus] = ACTIONS(1566), - [sym__list_marker_plus] = ACTIONS(1566), - [sym__list_marker_star] = ACTIONS(1566), - [sym__list_marker_parenthesis] = ACTIONS(1566), - [sym__list_marker_dot] = ACTIONS(1566), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), - [sym__fenced_code_block_start_backtick] = ACTIONS(1566), - [sym__fenced_code_block_start_tilde] = ACTIONS(1566), - [sym__blank_line_start] = ACTIONS(1566), - [sym__no_indented_chunk] = ACTIONS(1666), - [sym__code_span_start] = ACTIONS(1566), - [sym__emphasis_open_star] = ACTIONS(1566), - [sym__emphasis_open_underscore] = ACTIONS(1566), + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_parenthesis] = STATE(331), + [aux_sym__list_parenthesis_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [aux_sym__html_block_1_token1] = ACTIONS(1436), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1438), + [anon_sym_LT_QMARK] = ACTIONS(1438), + [aux_sym__html_block_4_token1] = ACTIONS(1438), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1436), + [aux_sym__html_block_6_token1] = ACTIONS(1438), + [aux_sym__html_block_6_token2] = ACTIONS(1436), + [sym__open_tag_html_block] = ACTIONS(1436), + [sym__open_tag_html_block_newline] = ACTIONS(1436), + [sym__closing_tag_html_block] = ACTIONS(1436), + [sym__closing_tag_html_block_newline] = ACTIONS(1436), + [sym_backslash_escape] = ACTIONS(1436), + [sym_entity_reference] = ACTIONS(1436), + [sym_numeric_character_reference] = ACTIONS(1436), + [sym_uri_autolink] = ACTIONS(1436), + [sym_email_autolink] = ACTIONS(1436), + [sym__whitespace_ge_2] = ACTIONS(1436), + [aux_sym__whitespace_token1] = ACTIONS(1438), + [sym__word_no_digit] = ACTIONS(1436), + [sym__digits] = ACTIONS(1436), + [aux_sym__newline_token1] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym__code_span_start] = ACTIONS(1436), + [sym__emphasis_open_star] = ACTIONS(1436), + [sym__emphasis_open_underscore] = ACTIONS(1436), }, [347] = { - [sym__soft_line_break] = STATE(197), - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(197), - [sym_full_reference_link] = STATE(197), - [sym_collapsed_reference_link] = STATE(197), - [sym_inline_link] = STATE(197), - [sym_image] = STATE(197), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(197), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(197), - [sym__whitespace] = STATE(197), - [sym__word] = STATE(197), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore] = STATE(197), - [aux_sym__inline_no_underscore] = STATE(197), - [sym__text_inline_no_underscore] = STATE(197), - [sym__emphasis_star] = STATE(813), - [sym__strong_emphasis_star] = STATE(197), - [sym__emphasis_underscore] = STATE(813), - [sym__strong_emphasis_underscore] = STATE(197), - [sym__code_span] = STATE(197), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(755), - [aux_sym__html_block_4_token1] = ACTIONS(757), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), - [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(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1668), - [sym__digits] = ACTIONS(1668), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(767), - [sym__emphasis_open_star] = ACTIONS(769), - [sym__emphasis_open_underscore] = ACTIONS(771), + [sym__block_interrupt_paragraph] = STATE(922), + [sym_thematic_break] = STATE(922), + [sym_atx_heading] = STATE(922), + [sym_fenced_code_block] = STATE(922), + [sym__html_block_1] = STATE(922), + [sym__html_block_2] = STATE(922), + [sym__html_block_3] = STATE(922), + [sym__html_block_4] = STATE(922), + [sym__html_block_5] = STATE(922), + [sym__html_block_6] = STATE(922), + [sym__blank_line] = STATE(922), + [sym_block_quote] = STATE(922), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(509), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(511), + [anon_sym_LT_QMARK] = ACTIONS(513), + [aux_sym__html_block_4_token1] = ACTIONS(515), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(517), + [aux_sym__html_block_6_token1] = ACTIONS(519), + [aux_sym__html_block_6_token2] = ACTIONS(521), + [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(523), + [sym_atx_h1_marker] = ACTIONS(525), + [sym_atx_h2_marker] = ACTIONS(525), + [sym_atx_h3_marker] = ACTIONS(525), + [sym_atx_h4_marker] = ACTIONS(525), + [sym_atx_h5_marker] = ACTIONS(525), + [sym_atx_h6_marker] = ACTIONS(525), + [sym_setext_h1_underline] = ACTIONS(527), + [sym_setext_h2_underline] = ACTIONS(527), + [sym__thematic_break] = ACTIONS(529), + [sym__list_marker_minus] = ACTIONS(527), + [sym__list_marker_plus] = ACTIONS(527), + [sym__list_marker_star] = ACTIONS(527), + [sym__list_marker_parenthesis] = ACTIONS(527), + [sym__list_marker_dot] = ACTIONS(527), + [sym__fenced_code_block_start_backtick] = ACTIONS(531), + [sym__fenced_code_block_start_tilde] = ACTIONS(533), + [sym__blank_line_start] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(415), + [sym__emphasis_open_star] = ACTIONS(415), + [sym__emphasis_open_underscore] = ACTIONS(415), }, [348] = { - [sym__soft_line_break] = STATE(889), - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(889), - [sym_full_reference_link] = STATE(889), - [sym_collapsed_reference_link] = STATE(889), - [sym_inline_link] = STATE(889), - [sym_image] = STATE(889), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(889), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(889), - [sym__whitespace] = STATE(889), - [sym__word] = STATE(889), - [sym__newline] = STATE(2220), - [sym__inline_element] = STATE(889), - [aux_sym__inline] = STATE(335), - [sym__text_inline] = STATE(889), - [sym__emphasis_star] = STATE(884), - [sym__strong_emphasis_star] = STATE(889), - [sym__emphasis_underscore] = STATE(884), - [sym__strong_emphasis_underscore] = STATE(889), - [sym__code_span] = STATE(889), - [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), + [sym__soft_line_break] = STATE(923), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(923), + [sym_full_reference_link] = STATE(923), + [sym_collapsed_reference_link] = STATE(923), + [sym_inline_link] = STATE(923), + [sym_image] = STATE(923), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(923), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(923), + [sym__whitespace] = STATE(923), + [sym__word] = STATE(923), + [sym__newline] = STATE(2221), + [sym__inline_element] = STATE(923), + [aux_sym__inline] = STATE(337), + [sym__text_inline] = STATE(923), + [sym__emphasis_star] = STATE(917), + [sym__strong_emphasis_star] = STATE(923), + [sym__emphasis_underscore] = STATE(917), + [sym__strong_emphasis_underscore] = STATE(923), + [sym__code_span] = STATE(923), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1403), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [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(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -62589,69 +62601,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [349] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(391), - [sym_full_reference_link] = STATE(391), - [sym_collapsed_reference_link] = STATE(391), - [sym_inline_link] = STATE(391), - [sym_image] = STATE(391), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(391), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(391), - [sym__whitespace] = STATE(391), - [sym__word] = STATE(391), - [sym__text_inline_no_underscore] = STATE(391), - [sym__inline_element_no_newline_no_underscore] = STATE(391), - [aux_sym__inline_no_newline_no_underscore] = STATE(391), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(391), - [sym__emphasis_underscore_no_newline] = STATE(949), - [sym__strong_emphasis_underscore_no_newline] = STATE(391), - [sym__code_span_no_newline] = STATE(391), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(392), + [sym_full_reference_link] = STATE(392), + [sym_collapsed_reference_link] = STATE(392), + [sym_inline_link] = STATE(392), + [sym_image] = STATE(392), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(392), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(392), + [sym__whitespace] = STATE(392), + [sym__word] = STATE(392), + [sym__text_inline_no_underscore] = STATE(392), + [sym__inline_element_no_newline_no_underscore] = STATE(392), + [aux_sym__inline_no_newline_no_underscore] = STATE(392), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(392), + [sym__emphasis_underscore_no_newline] = STATE(966), + [sym__strong_emphasis_underscore_no_newline] = STATE(392), + [sym__code_span_no_newline] = STATE(392), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(1673), [anon_sym_BSLASH] = ACTIONS(1676), - [anon_sym_RBRACK] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym__] = ACTIONS(567), + [anon_sym_BQUOTE] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1679), [anon_sym_LT_QMARK] = ACTIONS(1682), [aux_sym__html_block_4_token1] = ACTIONS(1685), @@ -62662,91 +62674,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_uri_autolink] = ACTIONS(1691), [sym_email_autolink] = ACTIONS(1691), [sym__whitespace_ge_2] = ACTIONS(1694), - [aux_sym__whitespace_token1] = ACTIONS(597), + [aux_sym__whitespace_token1] = ACTIONS(603), [sym__word_no_digit] = ACTIONS(1691), [sym__digits] = ACTIONS(1691), [sym__code_span_start] = ACTIONS(1697), [sym__emphasis_open_star] = ACTIONS(1700), [sym__emphasis_open_underscore] = ACTIONS(1703), - [sym__emphasis_close_star] = ACTIONS(612), + [sym__emphasis_close_star] = ACTIONS(618), [sym__last_token_punctuation] = ACTIONS(1706), }, [350] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1926), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1733), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(360), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), [aux_sym__newline_token1] = ACTIONS(1710), @@ -62755,2737 +62767,2737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1716), }, [351] = { + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(385), + [sym_full_reference_link] = STATE(385), + [sym_collapsed_reference_link] = STATE(385), + [sym_inline_link] = STATE(385), + [sym_image] = STATE(385), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(385), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(385), + [sym__whitespace] = STATE(385), + [sym__word] = STATE(385), + [sym__text_inline_no_underscore] = STATE(385), + [sym__inline_element_no_newline_no_underscore] = STATE(385), + [aux_sym__inline_no_newline_no_underscore] = STATE(385), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(385), + [sym__emphasis_underscore_no_newline] = STATE(1024), + [sym__strong_emphasis_underscore_no_newline] = STATE(385), + [sym__code_span_no_newline] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_COMMA] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_DOT] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1718), - [anon_sym_COLON] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_EQ] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1718), - [anon_sym_QMARK] = ACTIONS(1718), - [anon_sym_AT] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(1718), - [anon_sym_CARET] = ACTIONS(1718), - [anon_sym__] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_TILDE] = ACTIONS(1718), - [aux_sym__html_block_1_token1] = ACTIONS(1718), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1720), - [anon_sym_LT_QMARK] = ACTIONS(1720), - [aux_sym__html_block_4_token1] = ACTIONS(1720), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1718), - [aux_sym__html_block_6_token1] = ACTIONS(1720), - [aux_sym__html_block_6_token2] = ACTIONS(1718), - [sym__open_tag_html_block] = ACTIONS(1718), - [sym__open_tag_html_block_newline] = ACTIONS(1718), - [sym__closing_tag_html_block] = ACTIONS(1718), - [sym__closing_tag_html_block_newline] = ACTIONS(1718), - [sym_backslash_escape] = ACTIONS(1718), - [sym_entity_reference] = ACTIONS(1718), - [sym_numeric_character_reference] = ACTIONS(1718), - [sym_uri_autolink] = ACTIONS(1718), - [sym_email_autolink] = ACTIONS(1718), - [sym__whitespace_ge_2] = ACTIONS(1718), - [aux_sym__whitespace_token1] = ACTIONS(1720), - [sym__word_no_digit] = ACTIONS(1718), - [sym__digits] = ACTIONS(1718), - [aux_sym__newline_token1] = ACTIONS(1718), - [sym__block_continuation] = ACTIONS(1718), - [sym__block_quote_continuation] = ACTIONS(1718), - [sym__block_quote_start] = ACTIONS(1718), - [sym__indented_chunk_start] = ACTIONS(1718), - [sym_atx_h1_marker] = ACTIONS(1718), - [sym_atx_h2_marker] = ACTIONS(1718), - [sym_atx_h3_marker] = ACTIONS(1718), - [sym_atx_h4_marker] = ACTIONS(1718), - [sym_atx_h5_marker] = ACTIONS(1718), - [sym_atx_h6_marker] = ACTIONS(1718), - [sym__thematic_break] = ACTIONS(1718), - [sym__list_marker_minus] = ACTIONS(1718), - [sym__list_marker_plus] = ACTIONS(1718), - [sym__list_marker_star] = ACTIONS(1718), - [sym__list_marker_parenthesis] = ACTIONS(1718), - [sym__list_marker_dot] = ACTIONS(1718), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), - [sym__fenced_code_block_start_backtick] = ACTIONS(1718), - [sym__fenced_code_block_start_tilde] = ACTIONS(1718), - [sym__blank_line_start] = ACTIONS(1718), - [sym__code_span_start] = ACTIONS(1718), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1718), - [sym__last_token_whitespace] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_DOLLAR] = ACTIONS(681), + [anon_sym_PERCENT] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(687), + [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(690), + [anon_sym_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_BSLASH] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_CARET] = ACTIONS(681), + [anon_sym__] = ACTIONS(681), + [anon_sym_BQUOTE] = ACTIONS(681), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1727), + [anon_sym_LT_QMARK] = ACTIONS(1730), + [aux_sym__html_block_4_token1] = ACTIONS(1733), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1736), + [sym_backslash_escape] = ACTIONS(1739), + [sym_entity_reference] = ACTIONS(1739), + [sym_numeric_character_reference] = ACTIONS(1739), + [sym_uri_autolink] = ACTIONS(1739), + [sym_email_autolink] = ACTIONS(1739), + [sym__whitespace_ge_2] = ACTIONS(1742), + [aux_sym__whitespace_token1] = ACTIONS(717), + [sym__word_no_digit] = ACTIONS(1739), + [sym__digits] = ACTIONS(1739), + [aux_sym__newline_token1] = ACTIONS(1745), + [sym__code_span_start] = ACTIONS(1747), + [sym__emphasis_open_star] = ACTIONS(1750), + [sym__emphasis_open_underscore] = ACTIONS(1753), + [sym__last_token_punctuation] = ACTIONS(1756), }, [352] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1738), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(363), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1924), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1722), + [aux_sym__newline_token1] = ACTIONS(1758), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, [353] = { - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1724), - [anon_sym_PERCENT] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1724), - [anon_sym_COMMA] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_DOT] = ACTIONS(1724), - [anon_sym_SLASH] = ACTIONS(1724), - [anon_sym_COLON] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_EQ] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_QMARK] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_BSLASH] = ACTIONS(1726), - [anon_sym_RBRACK] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym__] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [aux_sym__html_block_1_token1] = ACTIONS(1724), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1726), - [anon_sym_LT_QMARK] = ACTIONS(1726), - [aux_sym__html_block_4_token1] = ACTIONS(1726), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1724), - [aux_sym__html_block_6_token1] = ACTIONS(1726), - [aux_sym__html_block_6_token2] = ACTIONS(1724), - [sym__open_tag_html_block] = ACTIONS(1724), - [sym__open_tag_html_block_newline] = ACTIONS(1724), - [sym__closing_tag_html_block] = ACTIONS(1724), - [sym__closing_tag_html_block_newline] = ACTIONS(1724), - [sym_backslash_escape] = ACTIONS(1724), - [sym_entity_reference] = ACTIONS(1724), - [sym_numeric_character_reference] = ACTIONS(1724), - [sym_uri_autolink] = ACTIONS(1724), - [sym_email_autolink] = ACTIONS(1724), - [sym__whitespace_ge_2] = ACTIONS(1724), - [aux_sym__whitespace_token1] = ACTIONS(1726), - [sym__word_no_digit] = ACTIONS(1724), - [sym__digits] = ACTIONS(1724), - [aux_sym__newline_token1] = ACTIONS(1724), - [sym__block_continuation] = ACTIONS(1724), - [sym__block_quote_continuation] = ACTIONS(1724), - [sym__block_quote_start] = ACTIONS(1724), - [sym__indented_chunk_start] = ACTIONS(1724), - [sym_atx_h1_marker] = ACTIONS(1724), - [sym_atx_h2_marker] = ACTIONS(1724), - [sym_atx_h3_marker] = ACTIONS(1724), - [sym_atx_h4_marker] = ACTIONS(1724), - [sym_atx_h5_marker] = ACTIONS(1724), - [sym_atx_h6_marker] = ACTIONS(1724), - [sym__thematic_break] = ACTIONS(1724), - [sym__list_marker_minus] = ACTIONS(1724), - [sym__list_marker_plus] = ACTIONS(1724), - [sym__list_marker_star] = ACTIONS(1724), - [sym__list_marker_parenthesis] = ACTIONS(1724), - [sym__list_marker_dot] = ACTIONS(1724), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1724), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1724), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1724), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1724), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1724), - [sym__fenced_code_block_start_backtick] = ACTIONS(1724), - [sym__fenced_code_block_start_tilde] = ACTIONS(1724), - [sym__blank_line_start] = ACTIONS(1724), - [sym__code_span_start] = ACTIONS(1724), - [sym__emphasis_open_star] = ACTIONS(1724), - [sym__emphasis_open_underscore] = ACTIONS(1724), - [sym__last_token_whitespace] = ACTIONS(1724), - }, - [354] = { - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(1728), - [anon_sym_DOLLAR] = ACTIONS(1728), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_SLASH] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1728), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_BSLASH] = ACTIONS(1730), - [anon_sym_RBRACK] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym__] = ACTIONS(1728), - [anon_sym_BQUOTE] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [aux_sym__html_block_1_token1] = ACTIONS(1728), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1730), - [anon_sym_LT_QMARK] = ACTIONS(1730), - [aux_sym__html_block_4_token1] = ACTIONS(1730), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1728), - [aux_sym__html_block_6_token1] = ACTIONS(1730), - [aux_sym__html_block_6_token2] = ACTIONS(1728), - [sym__open_tag_html_block] = ACTIONS(1728), - [sym__open_tag_html_block_newline] = ACTIONS(1728), - [sym__closing_tag_html_block] = ACTIONS(1728), - [sym__closing_tag_html_block_newline] = ACTIONS(1728), - [sym_backslash_escape] = ACTIONS(1728), - [sym_entity_reference] = ACTIONS(1728), - [sym_numeric_character_reference] = ACTIONS(1728), - [sym_uri_autolink] = ACTIONS(1728), - [sym_email_autolink] = ACTIONS(1728), - [sym__whitespace_ge_2] = ACTIONS(1728), - [aux_sym__whitespace_token1] = ACTIONS(1730), - [sym__word_no_digit] = ACTIONS(1728), - [sym__digits] = ACTIONS(1728), - [aux_sym__newline_token1] = ACTIONS(1728), - [sym__block_continuation] = ACTIONS(1728), - [sym__block_quote_continuation] = ACTIONS(1728), - [sym__block_quote_start] = ACTIONS(1728), - [sym__indented_chunk_start] = ACTIONS(1728), - [sym_atx_h1_marker] = ACTIONS(1728), - [sym_atx_h2_marker] = ACTIONS(1728), - [sym_atx_h3_marker] = ACTIONS(1728), - [sym_atx_h4_marker] = ACTIONS(1728), - [sym_atx_h5_marker] = ACTIONS(1728), - [sym_atx_h6_marker] = ACTIONS(1728), - [sym__thematic_break] = ACTIONS(1728), - [sym__list_marker_minus] = ACTIONS(1728), - [sym__list_marker_plus] = ACTIONS(1728), - [sym__list_marker_star] = ACTIONS(1728), - [sym__list_marker_parenthesis] = ACTIONS(1728), - [sym__list_marker_dot] = ACTIONS(1728), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1728), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1728), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1728), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1728), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1728), - [sym__fenced_code_block_start_backtick] = ACTIONS(1728), - [sym__fenced_code_block_start_tilde] = ACTIONS(1728), - [sym__blank_line_start] = ACTIONS(1728), - [sym__code_span_start] = ACTIONS(1728), - [sym__emphasis_open_star] = ACTIONS(1728), - [sym__emphasis_open_underscore] = ACTIONS(1728), - [sym__last_token_whitespace] = ACTIONS(1728), - }, - [355] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(422), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(368), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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(873), - [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), - [sym_backslash_escape] = ACTIONS(1708), - [sym_entity_reference] = ACTIONS(1708), - [sym_numeric_character_reference] = ACTIONS(1708), - [sym_uri_autolink] = ACTIONS(1708), - [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(1708), - [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1732), - [sym__code_span_start] = ACTIONS(1712), - [sym__emphasis_open_star] = ACTIONS(1714), - [sym__emphasis_open_underscore] = ACTIONS(1716), - }, - [356] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(430), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(382), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(446), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1734), + [aux_sym__newline_token1] = ACTIONS(1760), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [357] = { - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1736), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1736), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_COLON] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1736), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_QMARK] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_BSLASH] = ACTIONS(1738), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_CARET] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1736), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1736), - [aux_sym__html_block_1_token1] = ACTIONS(1736), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1738), - [anon_sym_LT_QMARK] = ACTIONS(1738), - [aux_sym__html_block_4_token1] = ACTIONS(1738), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1736), - [aux_sym__html_block_6_token1] = ACTIONS(1738), - [aux_sym__html_block_6_token2] = ACTIONS(1736), - [sym__open_tag_html_block] = ACTIONS(1736), - [sym__open_tag_html_block_newline] = ACTIONS(1736), - [sym__closing_tag_html_block] = ACTIONS(1736), - [sym__closing_tag_html_block_newline] = ACTIONS(1736), - [sym_backslash_escape] = ACTIONS(1736), - [sym_entity_reference] = ACTIONS(1736), - [sym_numeric_character_reference] = ACTIONS(1736), - [sym_uri_autolink] = ACTIONS(1736), - [sym_email_autolink] = ACTIONS(1736), - [sym__whitespace_ge_2] = ACTIONS(1736), - [aux_sym__whitespace_token1] = ACTIONS(1738), - [sym__word_no_digit] = ACTIONS(1736), - [sym__digits] = ACTIONS(1736), - [aux_sym__newline_token1] = ACTIONS(1736), - [sym__block_continuation] = ACTIONS(1736), - [sym__block_quote_continuation] = ACTIONS(1736), - [sym__block_quote_start] = ACTIONS(1736), - [sym__indented_chunk_start] = ACTIONS(1736), - [sym_atx_h1_marker] = ACTIONS(1736), - [sym_atx_h2_marker] = ACTIONS(1736), - [sym_atx_h3_marker] = ACTIONS(1736), - [sym_atx_h4_marker] = ACTIONS(1736), - [sym_atx_h5_marker] = ACTIONS(1736), - [sym_atx_h6_marker] = ACTIONS(1736), - [sym__thematic_break] = ACTIONS(1736), - [sym__list_marker_minus] = ACTIONS(1736), - [sym__list_marker_plus] = ACTIONS(1736), - [sym__list_marker_star] = ACTIONS(1736), - [sym__list_marker_parenthesis] = ACTIONS(1736), - [sym__list_marker_dot] = ACTIONS(1736), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1736), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1736), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1736), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1736), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1736), - [sym__fenced_code_block_start_backtick] = ACTIONS(1736), - [sym__fenced_code_block_start_tilde] = ACTIONS(1736), - [sym__blank_line_start] = ACTIONS(1736), - [sym__code_span_start] = ACTIONS(1736), - [sym__emphasis_open_star] = ACTIONS(1736), - [sym__emphasis_open_underscore] = ACTIONS(1736), - [sym__last_token_whitespace] = ACTIONS(1736), - }, - [358] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(401), - [sym_full_reference_link] = STATE(401), - [sym_collapsed_reference_link] = STATE(401), - [sym_inline_link] = STATE(401), - [sym_image] = STATE(401), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(401), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(401), - [sym__whitespace] = STATE(401), - [sym__word] = STATE(401), - [sym__text_inline_no_underscore] = STATE(401), - [sym__inline_element_no_newline_no_underscore] = STATE(401), - [aux_sym__inline_no_newline_no_underscore] = STATE(401), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(401), - [sym__emphasis_underscore_no_newline] = STATE(921), - [sym__strong_emphasis_underscore_no_newline] = STATE(401), - [sym__code_span_no_newline] = STATE(401), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_BSLASH] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1749), - [anon_sym_LT_QMARK] = ACTIONS(1752), - [aux_sym__html_block_4_token1] = ACTIONS(1755), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1758), - [sym_backslash_escape] = ACTIONS(1761), - [sym_entity_reference] = ACTIONS(1761), - [sym_numeric_character_reference] = ACTIONS(1761), - [sym_uri_autolink] = ACTIONS(1761), - [sym_email_autolink] = ACTIONS(1761), - [sym__whitespace_ge_2] = ACTIONS(1764), - [aux_sym__whitespace_token1] = ACTIONS(1370), - [sym__word_no_digit] = ACTIONS(1761), - [sym__digits] = ACTIONS(1761), - [aux_sym__newline_token1] = ACTIONS(1767), - [sym__code_span_start] = ACTIONS(1769), - [sym__emphasis_open_star] = ACTIONS(1772), - [sym__emphasis_open_underscore] = ACTIONS(1775), - [sym__last_token_punctuation] = ACTIONS(1778), - }, - [359] = { - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_COLON] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_BSLASH] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_BQUOTE] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [aux_sym__html_block_1_token1] = ACTIONS(1780), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1782), - [anon_sym_LT_QMARK] = ACTIONS(1782), - [aux_sym__html_block_4_token1] = ACTIONS(1782), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1780), - [aux_sym__html_block_6_token1] = ACTIONS(1782), - [aux_sym__html_block_6_token2] = ACTIONS(1780), - [sym__open_tag_html_block] = ACTIONS(1780), - [sym__open_tag_html_block_newline] = ACTIONS(1780), - [sym__closing_tag_html_block] = ACTIONS(1780), - [sym__closing_tag_html_block_newline] = ACTIONS(1780), - [sym_backslash_escape] = ACTIONS(1780), - [sym_entity_reference] = ACTIONS(1780), - [sym_numeric_character_reference] = ACTIONS(1780), - [sym_uri_autolink] = ACTIONS(1780), - [sym_email_autolink] = ACTIONS(1780), - [sym__whitespace_ge_2] = ACTIONS(1780), - [aux_sym__whitespace_token1] = ACTIONS(1782), - [sym__word_no_digit] = ACTIONS(1780), - [sym__digits] = ACTIONS(1780), - [aux_sym__newline_token1] = ACTIONS(1780), - [sym__block_close] = ACTIONS(1780), - [sym__block_quote_start] = ACTIONS(1780), - [sym__indented_chunk_start] = ACTIONS(1780), - [sym_atx_h1_marker] = ACTIONS(1780), - [sym_atx_h2_marker] = ACTIONS(1780), - [sym_atx_h3_marker] = ACTIONS(1780), - [sym_atx_h4_marker] = ACTIONS(1780), - [sym_atx_h5_marker] = ACTIONS(1780), - [sym_atx_h6_marker] = ACTIONS(1780), - [sym_setext_h1_underline] = ACTIONS(1780), - [sym_setext_h2_underline] = ACTIONS(1780), - [sym__thematic_break] = ACTIONS(1780), - [sym__list_marker_minus] = ACTIONS(1780), - [sym__list_marker_plus] = ACTIONS(1780), - [sym__list_marker_star] = ACTIONS(1780), - [sym__list_marker_parenthesis] = ACTIONS(1780), - [sym__list_marker_dot] = ACTIONS(1780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), - [sym__fenced_code_block_start_backtick] = ACTIONS(1780), - [sym__fenced_code_block_start_tilde] = ACTIONS(1780), - [sym__blank_line_start] = ACTIONS(1780), - [sym__code_span_start] = ACTIONS(1780), - [sym__emphasis_open_star] = ACTIONS(1780), - [sym__emphasis_open_underscore] = ACTIONS(1780), - }, - [360] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1804), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(361), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [354] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(436), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(353), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1784), + [aux_sym__newline_token1] = ACTIONS(1760), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [361] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1818), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [355] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1926), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(352), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1784), + [aux_sym__newline_token1] = ACTIONS(1758), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [362] = { - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1786), - [anon_sym_COLON] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1786), - [anon_sym_QMARK] = ACTIONS(1786), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_BSLASH] = ACTIONS(1788), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_CARET] = ACTIONS(1786), - [anon_sym__] = ACTIONS(1786), - [anon_sym_BQUOTE] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [aux_sym__html_block_1_token1] = ACTIONS(1786), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1788), - [anon_sym_LT_QMARK] = ACTIONS(1788), - [aux_sym__html_block_4_token1] = ACTIONS(1788), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1786), - [aux_sym__html_block_6_token1] = ACTIONS(1788), - [aux_sym__html_block_6_token2] = ACTIONS(1786), - [sym__open_tag_html_block] = ACTIONS(1786), - [sym__open_tag_html_block_newline] = ACTIONS(1786), - [sym__closing_tag_html_block] = ACTIONS(1786), - [sym__closing_tag_html_block_newline] = ACTIONS(1786), - [sym_backslash_escape] = ACTIONS(1786), - [sym_entity_reference] = ACTIONS(1786), - [sym_numeric_character_reference] = ACTIONS(1786), - [sym_uri_autolink] = ACTIONS(1786), - [sym_email_autolink] = ACTIONS(1786), - [sym__whitespace_ge_2] = ACTIONS(1786), - [aux_sym__whitespace_token1] = ACTIONS(1788), - [sym__word_no_digit] = ACTIONS(1786), - [sym__digits] = ACTIONS(1786), - [aux_sym__newline_token1] = ACTIONS(1786), - [sym__block_continuation] = ACTIONS(1786), - [sym__block_quote_continuation] = ACTIONS(1786), - [sym__block_quote_start] = ACTIONS(1786), - [sym__indented_chunk_start] = ACTIONS(1786), - [sym_atx_h1_marker] = ACTIONS(1786), - [sym_atx_h2_marker] = ACTIONS(1786), - [sym_atx_h3_marker] = ACTIONS(1786), - [sym_atx_h4_marker] = ACTIONS(1786), - [sym_atx_h5_marker] = ACTIONS(1786), - [sym_atx_h6_marker] = ACTIONS(1786), - [sym__thematic_break] = ACTIONS(1786), - [sym__list_marker_minus] = ACTIONS(1786), - [sym__list_marker_plus] = ACTIONS(1786), - [sym__list_marker_star] = ACTIONS(1786), - [sym__list_marker_parenthesis] = ACTIONS(1786), - [sym__list_marker_dot] = ACTIONS(1786), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1786), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1786), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1786), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1786), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1786), - [sym__fenced_code_block_start_backtick] = ACTIONS(1786), - [sym__fenced_code_block_start_tilde] = ACTIONS(1786), - [sym__blank_line_start] = ACTIONS(1786), - [sym__code_span_start] = ACTIONS(1786), - [sym__emphasis_open_star] = ACTIONS(1786), - [sym__emphasis_open_underscore] = ACTIONS(1786), - [sym__last_token_whitespace] = ACTIONS(1786), + [356] = { + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_BSLASH] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym__] = ACTIONS(1762), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [aux_sym__html_block_1_token1] = ACTIONS(1762), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1764), + [anon_sym_LT_QMARK] = ACTIONS(1764), + [aux_sym__html_block_4_token1] = ACTIONS(1764), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1762), + [aux_sym__html_block_6_token1] = ACTIONS(1764), + [aux_sym__html_block_6_token2] = ACTIONS(1762), + [sym__open_tag_html_block] = ACTIONS(1762), + [sym__open_tag_html_block_newline] = ACTIONS(1762), + [sym__closing_tag_html_block] = ACTIONS(1762), + [sym__closing_tag_html_block_newline] = ACTIONS(1762), + [sym_backslash_escape] = ACTIONS(1762), + [sym_entity_reference] = ACTIONS(1762), + [sym_numeric_character_reference] = ACTIONS(1762), + [sym_uri_autolink] = ACTIONS(1762), + [sym_email_autolink] = ACTIONS(1762), + [sym__whitespace_ge_2] = ACTIONS(1762), + [aux_sym__whitespace_token1] = ACTIONS(1764), + [sym__word_no_digit] = ACTIONS(1762), + [sym__digits] = ACTIONS(1762), + [aux_sym__newline_token1] = ACTIONS(1762), + [sym__block_quote_start] = ACTIONS(1762), + [sym__indented_chunk_start] = ACTIONS(1762), + [sym_atx_h1_marker] = ACTIONS(1762), + [sym_atx_h2_marker] = ACTIONS(1762), + [sym_atx_h3_marker] = ACTIONS(1762), + [sym_atx_h4_marker] = ACTIONS(1762), + [sym_atx_h5_marker] = ACTIONS(1762), + [sym_atx_h6_marker] = ACTIONS(1762), + [sym_setext_h1_underline] = ACTIONS(1762), + [sym_setext_h2_underline] = ACTIONS(1762), + [sym__thematic_break] = ACTIONS(1762), + [sym__list_marker_minus] = ACTIONS(1762), + [sym__list_marker_plus] = ACTIONS(1762), + [sym__list_marker_star] = ACTIONS(1762), + [sym__list_marker_parenthesis] = ACTIONS(1762), + [sym__list_marker_dot] = ACTIONS(1762), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1762), + [sym__fenced_code_block_start_backtick] = ACTIONS(1762), + [sym__fenced_code_block_start_tilde] = ACTIONS(1762), + [sym__blank_line_start] = ACTIONS(1762), + [sym__code_span_start] = ACTIONS(1762), + [sym__emphasis_open_star] = ACTIONS(1762), + [sym__emphasis_open_underscore] = ACTIONS(1762), }, - [363] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1730), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [357] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1794), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(363), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1722), + [aux_sym__newline_token1] = ACTIONS(1766), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [364] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(720), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [358] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(962), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(361), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1790), + [aux_sym__newline_token1] = ACTIONS(1768), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [365] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(724), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [359] = { + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_BSLASH] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [aux_sym__html_block_1_token1] = ACTIONS(1770), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1772), + [anon_sym_LT_QMARK] = ACTIONS(1772), + [aux_sym__html_block_4_token1] = ACTIONS(1772), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1770), + [aux_sym__html_block_6_token1] = ACTIONS(1772), + [aux_sym__html_block_6_token2] = ACTIONS(1770), + [sym__open_tag_html_block] = ACTIONS(1770), + [sym__open_tag_html_block_newline] = ACTIONS(1770), + [sym__closing_tag_html_block] = ACTIONS(1770), + [sym__closing_tag_html_block_newline] = ACTIONS(1770), + [sym_backslash_escape] = ACTIONS(1770), + [sym_entity_reference] = ACTIONS(1770), + [sym_numeric_character_reference] = ACTIONS(1770), + [sym_uri_autolink] = ACTIONS(1770), + [sym_email_autolink] = ACTIONS(1770), + [sym__whitespace_ge_2] = ACTIONS(1770), + [aux_sym__whitespace_token1] = ACTIONS(1772), + [sym__word_no_digit] = ACTIONS(1770), + [sym__digits] = ACTIONS(1770), + [aux_sym__newline_token1] = ACTIONS(1770), + [sym__block_continuation] = ACTIONS(1770), + [sym__block_quote_continuation] = ACTIONS(1770), + [sym__block_quote_start] = ACTIONS(1770), + [sym__indented_chunk_start] = ACTIONS(1770), + [sym_atx_h1_marker] = ACTIONS(1770), + [sym_atx_h2_marker] = ACTIONS(1770), + [sym_atx_h3_marker] = ACTIONS(1770), + [sym_atx_h4_marker] = ACTIONS(1770), + [sym_atx_h5_marker] = ACTIONS(1770), + [sym_atx_h6_marker] = ACTIONS(1770), + [sym__thematic_break] = ACTIONS(1770), + [sym__list_marker_minus] = ACTIONS(1770), + [sym__list_marker_plus] = ACTIONS(1770), + [sym__list_marker_star] = ACTIONS(1770), + [sym__list_marker_parenthesis] = ACTIONS(1770), + [sym__list_marker_dot] = ACTIONS(1770), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1770), + [sym__fenced_code_block_start_backtick] = ACTIONS(1770), + [sym__fenced_code_block_start_tilde] = ACTIONS(1770), + [sym__blank_line_start] = ACTIONS(1770), + [sym__code_span_start] = ACTIONS(1770), + [sym__emphasis_open_star] = ACTIONS(1770), + [sym__emphasis_open_underscore] = ACTIONS(1770), + [sym__last_token_whitespace] = ACTIONS(1770), + }, + [360] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1754), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1790), + [aux_sym__newline_token1] = ACTIONS(1710), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_BSLASH] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [aux_sym__html_block_1_token1] = ACTIONS(1792), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1794), - [anon_sym_LT_QMARK] = ACTIONS(1794), - [aux_sym__html_block_4_token1] = ACTIONS(1794), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1792), - [aux_sym__html_block_6_token1] = ACTIONS(1794), - [aux_sym__html_block_6_token2] = ACTIONS(1792), - [sym__open_tag_html_block] = ACTIONS(1792), - [sym__open_tag_html_block_newline] = ACTIONS(1792), - [sym__closing_tag_html_block] = ACTIONS(1792), - [sym__closing_tag_html_block_newline] = ACTIONS(1792), - [sym_backslash_escape] = ACTIONS(1792), - [sym_entity_reference] = ACTIONS(1792), - [sym_numeric_character_reference] = ACTIONS(1792), - [sym_uri_autolink] = ACTIONS(1792), - [sym_email_autolink] = ACTIONS(1792), - [sym__whitespace_ge_2] = ACTIONS(1792), - [aux_sym__whitespace_token1] = ACTIONS(1794), - [sym__word_no_digit] = ACTIONS(1792), - [sym__digits] = ACTIONS(1792), - [aux_sym__newline_token1] = ACTIONS(1792), - [sym__block_quote_start] = ACTIONS(1792), - [sym__indented_chunk_start] = ACTIONS(1792), - [sym_atx_h1_marker] = ACTIONS(1792), - [sym_atx_h2_marker] = ACTIONS(1792), - [sym_atx_h3_marker] = ACTIONS(1792), - [sym_atx_h4_marker] = ACTIONS(1792), - [sym_atx_h5_marker] = ACTIONS(1792), - [sym_atx_h6_marker] = ACTIONS(1792), - [sym_setext_h1_underline] = ACTIONS(1796), - [sym_setext_h2_underline] = ACTIONS(1796), - [sym__thematic_break] = ACTIONS(1792), - [sym__list_marker_minus] = ACTIONS(1792), - [sym__list_marker_plus] = ACTIONS(1792), - [sym__list_marker_star] = ACTIONS(1792), - [sym__list_marker_parenthesis] = ACTIONS(1792), - [sym__list_marker_dot] = ACTIONS(1792), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1792), - [sym__fenced_code_block_start_backtick] = ACTIONS(1792), - [sym__fenced_code_block_start_tilde] = ACTIONS(1792), - [sym__blank_line_start] = ACTIONS(1792), - [sym__code_span_start] = ACTIONS(1792), - [sym__emphasis_open_star] = ACTIONS(1792), - [sym__emphasis_open_underscore] = ACTIONS(1792), - }, - [367] = { - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_BSLASH] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [aux_sym__html_block_1_token1] = ACTIONS(1792), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1794), - [anon_sym_LT_QMARK] = ACTIONS(1794), - [aux_sym__html_block_4_token1] = ACTIONS(1794), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1792), - [aux_sym__html_block_6_token1] = ACTIONS(1794), - [aux_sym__html_block_6_token2] = ACTIONS(1792), - [sym__open_tag_html_block] = ACTIONS(1792), - [sym__open_tag_html_block_newline] = ACTIONS(1792), - [sym__closing_tag_html_block] = ACTIONS(1792), - [sym__closing_tag_html_block_newline] = ACTIONS(1792), - [sym_backslash_escape] = ACTIONS(1792), - [sym_entity_reference] = ACTIONS(1792), - [sym_numeric_character_reference] = ACTIONS(1792), - [sym_uri_autolink] = ACTIONS(1792), - [sym_email_autolink] = ACTIONS(1792), - [sym__whitespace_ge_2] = ACTIONS(1792), - [aux_sym__whitespace_token1] = ACTIONS(1794), - [sym__word_no_digit] = ACTIONS(1792), - [sym__digits] = ACTIONS(1792), - [aux_sym__newline_token1] = ACTIONS(1792), - [sym__block_close] = ACTIONS(1792), - [sym__block_quote_start] = ACTIONS(1792), - [sym__indented_chunk_start] = ACTIONS(1792), - [sym_atx_h1_marker] = ACTIONS(1792), - [sym_atx_h2_marker] = ACTIONS(1792), - [sym_atx_h3_marker] = ACTIONS(1792), - [sym_atx_h4_marker] = ACTIONS(1792), - [sym_atx_h5_marker] = ACTIONS(1792), - [sym_atx_h6_marker] = ACTIONS(1792), - [sym_setext_h1_underline] = ACTIONS(1798), - [sym_setext_h2_underline] = ACTIONS(1798), - [sym__thematic_break] = ACTIONS(1792), - [sym__list_marker_minus] = ACTIONS(1792), - [sym__list_marker_plus] = ACTIONS(1792), - [sym__list_marker_star] = ACTIONS(1792), - [sym__list_marker_parenthesis] = ACTIONS(1792), - [sym__list_marker_dot] = ACTIONS(1792), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1792), - [sym__fenced_code_block_start_backtick] = ACTIONS(1792), - [sym__fenced_code_block_start_tilde] = ACTIONS(1792), - [sym__blank_line_start] = ACTIONS(1792), - [sym__code_span_start] = ACTIONS(1792), - [sym__emphasis_open_star] = ACTIONS(1792), - [sym__emphasis_open_underscore] = ACTIONS(1792), - }, - [368] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(448), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [361] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(981), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1732), + [aux_sym__newline_token1] = ACTIONS(1768), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [369] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(396), - [sym_full_reference_link] = STATE(396), - [sym_collapsed_reference_link] = STATE(396), - [sym_inline_link] = STATE(396), - [sym_image] = STATE(396), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(396), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(396), - [sym__whitespace] = STATE(396), - [sym__word] = STATE(396), - [sym__text_inline_no_star] = STATE(396), - [sym__inline_element_no_newline_no_star] = STATE(396), - [aux_sym__inline_no_newline_no_star] = STATE(396), - [sym__emphasis_star_no_newline] = STATE(881), - [sym__strong_emphasis_star_no_newline] = STATE(396), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(396), - [sym__code_span_no_newline] = STATE(396), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_BSLASH] = ACTIONS(1806), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym__] = ACTIONS(619), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1809), - [anon_sym_LT_QMARK] = ACTIONS(1812), - [aux_sym__html_block_4_token1] = ACTIONS(1815), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1818), - [sym_backslash_escape] = ACTIONS(1821), - [sym_entity_reference] = ACTIONS(1821), - [sym_numeric_character_reference] = ACTIONS(1821), - [sym_uri_autolink] = ACTIONS(1821), - [sym_email_autolink] = ACTIONS(1821), - [sym__whitespace_ge_2] = ACTIONS(1824), - [aux_sym__whitespace_token1] = ACTIONS(652), - [sym__word_no_digit] = ACTIONS(1821), - [sym__digits] = ACTIONS(1821), - [sym__code_span_start] = ACTIONS(1827), - [sym__emphasis_open_star] = ACTIONS(1830), - [sym__emphasis_open_underscore] = ACTIONS(1833), - [sym__emphasis_close_underscore] = ACTIONS(667), - [sym__last_token_punctuation] = ACTIONS(1836), + [362] = { + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_BSLASH] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym__] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [aux_sym__html_block_1_token1] = ACTIONS(1774), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1776), + [anon_sym_LT_QMARK] = ACTIONS(1776), + [aux_sym__html_block_4_token1] = ACTIONS(1776), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1774), + [aux_sym__html_block_6_token1] = ACTIONS(1776), + [aux_sym__html_block_6_token2] = ACTIONS(1774), + [sym__open_tag_html_block] = ACTIONS(1774), + [sym__open_tag_html_block_newline] = ACTIONS(1774), + [sym__closing_tag_html_block] = ACTIONS(1774), + [sym__closing_tag_html_block_newline] = ACTIONS(1774), + [sym_backslash_escape] = ACTIONS(1774), + [sym_entity_reference] = ACTIONS(1774), + [sym_numeric_character_reference] = ACTIONS(1774), + [sym_uri_autolink] = ACTIONS(1774), + [sym_email_autolink] = ACTIONS(1774), + [sym__whitespace_ge_2] = ACTIONS(1774), + [aux_sym__whitespace_token1] = ACTIONS(1776), + [sym__word_no_digit] = ACTIONS(1774), + [sym__digits] = ACTIONS(1774), + [aux_sym__newline_token1] = ACTIONS(1774), + [sym__block_continuation] = ACTIONS(1774), + [sym__block_quote_continuation] = ACTIONS(1774), + [sym__block_quote_start] = ACTIONS(1774), + [sym__indented_chunk_start] = ACTIONS(1774), + [sym_atx_h1_marker] = ACTIONS(1774), + [sym_atx_h2_marker] = ACTIONS(1774), + [sym_atx_h3_marker] = ACTIONS(1774), + [sym_atx_h4_marker] = ACTIONS(1774), + [sym_atx_h5_marker] = ACTIONS(1774), + [sym_atx_h6_marker] = ACTIONS(1774), + [sym__thematic_break] = ACTIONS(1774), + [sym__list_marker_minus] = ACTIONS(1774), + [sym__list_marker_plus] = ACTIONS(1774), + [sym__list_marker_star] = ACTIONS(1774), + [sym__list_marker_parenthesis] = ACTIONS(1774), + [sym__list_marker_dot] = ACTIONS(1774), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1774), + [sym__fenced_code_block_start_backtick] = ACTIONS(1774), + [sym__fenced_code_block_start_tilde] = ACTIONS(1774), + [sym__blank_line_start] = ACTIONS(1774), + [sym__code_span_start] = ACTIONS(1774), + [sym__emphasis_open_star] = ACTIONS(1774), + [sym__emphasis_open_underscore] = ACTIONS(1774), + [sym__last_token_whitespace] = ACTIONS(1774), }, - [370] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(753), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(383), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [363] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1805), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1838), + [aux_sym__newline_token1] = ACTIONS(1766), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [371] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1833), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [364] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(865), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(365), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1840), + [aux_sym__newline_token1] = ACTIONS(1778), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [372] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1828), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(371), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [365] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(858), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1840), + [aux_sym__newline_token1] = ACTIONS(1778), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [373] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(2126), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(374), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [366] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(2138), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1842), + [aux_sym__newline_token1] = ACTIONS(1780), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [374] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(2143), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [367] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1838), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1842), + [aux_sym__newline_token1] = ACTIONS(1782), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [375] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1922), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(350), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [368] = { + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(387), + [sym_full_reference_link] = STATE(387), + [sym_collapsed_reference_link] = STATE(387), + [sym_inline_link] = STATE(387), + [sym_image] = STATE(387), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(387), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(387), + [sym__whitespace] = STATE(387), + [sym__word] = STATE(387), + [sym__text_inline_no_star] = STATE(387), + [sym__inline_element_no_newline_no_star] = STATE(387), + [aux_sym__inline_no_newline_no_star] = STATE(387), + [sym__emphasis_star_no_newline] = STATE(1018), + [sym__strong_emphasis_star_no_newline] = STATE(387), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(387), + [sym__code_span_no_newline] = STATE(387), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DQUOTE] = ACTIONS(1121), + [anon_sym_POUND] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(1121), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_GT] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_BSLASH] = ACTIONS(1790), + [anon_sym_RBRACK] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1121), + [anon_sym__] = ACTIONS(1121), + [anon_sym_BQUOTE] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1121), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1793), + [anon_sym_LT_QMARK] = ACTIONS(1796), + [aux_sym__html_block_4_token1] = ACTIONS(1799), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1802), + [sym_backslash_escape] = ACTIONS(1805), + [sym_entity_reference] = ACTIONS(1805), + [sym_numeric_character_reference] = ACTIONS(1805), + [sym_uri_autolink] = ACTIONS(1805), + [sym_email_autolink] = ACTIONS(1805), + [sym__whitespace_ge_2] = ACTIONS(1808), + [aux_sym__whitespace_token1] = ACTIONS(1157), + [sym__word_no_digit] = ACTIONS(1805), + [sym__digits] = ACTIONS(1805), + [aux_sym__newline_token1] = ACTIONS(1745), + [sym__code_span_start] = ACTIONS(1811), + [sym__emphasis_open_star] = ACTIONS(1814), + [sym__emphasis_open_underscore] = ACTIONS(1817), + [sym__last_token_punctuation] = ACTIONS(1820), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_COLON] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [aux_sym__html_block_1_token1] = ACTIONS(1822), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1824), + [anon_sym_LT_QMARK] = ACTIONS(1824), + [aux_sym__html_block_4_token1] = ACTIONS(1824), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1822), + [aux_sym__html_block_6_token1] = ACTIONS(1824), + [aux_sym__html_block_6_token2] = ACTIONS(1822), + [sym__open_tag_html_block] = ACTIONS(1822), + [sym__open_tag_html_block_newline] = ACTIONS(1822), + [sym__closing_tag_html_block] = ACTIONS(1822), + [sym__closing_tag_html_block_newline] = ACTIONS(1822), + [sym_backslash_escape] = ACTIONS(1822), + [sym_entity_reference] = ACTIONS(1822), + [sym_numeric_character_reference] = ACTIONS(1822), + [sym_uri_autolink] = ACTIONS(1822), + [sym_email_autolink] = ACTIONS(1822), + [sym__whitespace_ge_2] = ACTIONS(1822), + [aux_sym__whitespace_token1] = ACTIONS(1824), + [sym__word_no_digit] = ACTIONS(1822), + [sym__digits] = ACTIONS(1822), + [aux_sym__newline_token1] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym_setext_h1_underline] = ACTIONS(1826), + [sym_setext_h2_underline] = ACTIONS(1826), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__emphasis_open_star] = ACTIONS(1822), + [sym__emphasis_open_underscore] = ACTIONS(1822), + }, + [370] = { + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1828), + [anon_sym_SLASH] = ACTIONS(1828), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1828), + [anon_sym_GT] = ACTIONS(1828), + [anon_sym_QMARK] = ACTIONS(1828), + [anon_sym_AT] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_BSLASH] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(1828), + [anon_sym_CARET] = ACTIONS(1828), + [anon_sym__] = ACTIONS(1828), + [anon_sym_BQUOTE] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [aux_sym__html_block_1_token1] = ACTIONS(1828), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1830), + [anon_sym_LT_QMARK] = ACTIONS(1830), + [aux_sym__html_block_4_token1] = ACTIONS(1830), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1828), + [aux_sym__html_block_6_token1] = ACTIONS(1830), + [aux_sym__html_block_6_token2] = ACTIONS(1828), + [sym__open_tag_html_block] = ACTIONS(1828), + [sym__open_tag_html_block_newline] = ACTIONS(1828), + [sym__closing_tag_html_block] = ACTIONS(1828), + [sym__closing_tag_html_block_newline] = ACTIONS(1828), + [sym_backslash_escape] = ACTIONS(1828), + [sym_entity_reference] = ACTIONS(1828), + [sym_numeric_character_reference] = ACTIONS(1828), + [sym_uri_autolink] = ACTIONS(1828), + [sym_email_autolink] = ACTIONS(1828), + [sym__whitespace_ge_2] = ACTIONS(1828), + [aux_sym__whitespace_token1] = ACTIONS(1830), + [sym__word_no_digit] = ACTIONS(1828), + [sym__digits] = ACTIONS(1828), + [aux_sym__newline_token1] = ACTIONS(1828), + [sym__block_continuation] = ACTIONS(1828), + [sym__block_quote_continuation] = ACTIONS(1828), + [sym__block_quote_start] = ACTIONS(1828), + [sym__indented_chunk_start] = ACTIONS(1828), + [sym_atx_h1_marker] = ACTIONS(1828), + [sym_atx_h2_marker] = ACTIONS(1828), + [sym_atx_h3_marker] = ACTIONS(1828), + [sym_atx_h4_marker] = ACTIONS(1828), + [sym_atx_h5_marker] = ACTIONS(1828), + [sym_atx_h6_marker] = ACTIONS(1828), + [sym__thematic_break] = ACTIONS(1828), + [sym__list_marker_minus] = ACTIONS(1828), + [sym__list_marker_plus] = ACTIONS(1828), + [sym__list_marker_star] = ACTIONS(1828), + [sym__list_marker_parenthesis] = ACTIONS(1828), + [sym__list_marker_dot] = ACTIONS(1828), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1828), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1828), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1828), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1828), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1828), + [sym__fenced_code_block_start_backtick] = ACTIONS(1828), + [sym__fenced_code_block_start_tilde] = ACTIONS(1828), + [sym__blank_line_start] = ACTIONS(1828), + [sym__code_span_start] = ACTIONS(1828), + [sym__emphasis_open_star] = ACTIONS(1828), + [sym__emphasis_open_underscore] = ACTIONS(1828), + [sym__last_token_whitespace] = ACTIONS(1828), + }, + [371] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(813), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1710), + [aux_sym__newline_token1] = ACTIONS(1832), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [376] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(385), - [sym_full_reference_link] = STATE(385), - [sym_collapsed_reference_link] = STATE(385), - [sym_inline_link] = STATE(385), - [sym_image] = STATE(385), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(385), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(385), - [sym__whitespace] = STATE(385), - [sym__word] = STATE(385), - [sym__text_inline_no_star] = STATE(385), - [sym__inline_element_no_newline_no_star] = STATE(385), - [aux_sym__inline_no_newline_no_star] = STATE(385), - [sym__emphasis_star_no_newline] = STATE(894), - [sym__strong_emphasis_star_no_newline] = STATE(385), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(385), - [sym__code_span_no_newline] = STATE(385), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_PERCENT] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_COMMA] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_QMARK] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_BSLASH] = ACTIONS(1850), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym__] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1853), - [anon_sym_LT_QMARK] = ACTIONS(1856), - [aux_sym__html_block_4_token1] = ACTIONS(1859), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1862), - [sym_backslash_escape] = ACTIONS(1865), - [sym_entity_reference] = ACTIONS(1865), - [sym_numeric_character_reference] = ACTIONS(1865), - [sym_uri_autolink] = ACTIONS(1865), - [sym_email_autolink] = ACTIONS(1865), - [sym__whitespace_ge_2] = ACTIONS(1868), - [aux_sym__whitespace_token1] = ACTIONS(1315), - [sym__word_no_digit] = ACTIONS(1865), - [sym__digits] = ACTIONS(1865), - [aux_sym__newline_token1] = ACTIONS(1767), - [sym__code_span_start] = ACTIONS(1871), - [sym__emphasis_open_star] = ACTIONS(1874), - [sym__emphasis_open_underscore] = ACTIONS(1877), - [sym__last_token_punctuation] = ACTIONS(1880), + [372] = { + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_BSLASH] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym__] = ACTIONS(1762), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [aux_sym__html_block_1_token1] = ACTIONS(1762), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1764), + [anon_sym_LT_QMARK] = ACTIONS(1764), + [aux_sym__html_block_4_token1] = ACTIONS(1764), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1762), + [aux_sym__html_block_6_token1] = ACTIONS(1764), + [aux_sym__html_block_6_token2] = ACTIONS(1762), + [sym__open_tag_html_block] = ACTIONS(1762), + [sym__open_tag_html_block_newline] = ACTIONS(1762), + [sym__closing_tag_html_block] = ACTIONS(1762), + [sym__closing_tag_html_block_newline] = ACTIONS(1762), + [sym_backslash_escape] = ACTIONS(1762), + [sym_entity_reference] = ACTIONS(1762), + [sym_numeric_character_reference] = ACTIONS(1762), + [sym_uri_autolink] = ACTIONS(1762), + [sym_email_autolink] = ACTIONS(1762), + [sym__whitespace_ge_2] = ACTIONS(1762), + [aux_sym__whitespace_token1] = ACTIONS(1764), + [sym__word_no_digit] = ACTIONS(1762), + [sym__digits] = ACTIONS(1762), + [aux_sym__newline_token1] = ACTIONS(1762), + [sym__block_close] = ACTIONS(1762), + [sym__block_quote_start] = ACTIONS(1762), + [sym__indented_chunk_start] = ACTIONS(1762), + [sym_atx_h1_marker] = ACTIONS(1762), + [sym_atx_h2_marker] = ACTIONS(1762), + [sym_atx_h3_marker] = ACTIONS(1762), + [sym_atx_h4_marker] = ACTIONS(1762), + [sym_atx_h5_marker] = ACTIONS(1762), + [sym_atx_h6_marker] = ACTIONS(1762), + [sym_setext_h1_underline] = ACTIONS(1762), + [sym_setext_h2_underline] = ACTIONS(1762), + [sym__thematic_break] = ACTIONS(1762), + [sym__list_marker_minus] = ACTIONS(1762), + [sym__list_marker_plus] = ACTIONS(1762), + [sym__list_marker_star] = ACTIONS(1762), + [sym__list_marker_parenthesis] = ACTIONS(1762), + [sym__list_marker_dot] = ACTIONS(1762), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1762), + [sym__fenced_code_block_start_backtick] = ACTIONS(1762), + [sym__fenced_code_block_start_tilde] = ACTIONS(1762), + [sym__blank_line_start] = ACTIONS(1762), + [sym__code_span_start] = ACTIONS(1762), + [sym__emphasis_open_star] = ACTIONS(1762), + [sym__emphasis_open_underscore] = ACTIONS(1762), }, - [377] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1922), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(379), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [373] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(2130), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1882), + [aux_sym__newline_token1] = ACTIONS(1780), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [378] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(957), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), + [374] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(837), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(371), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [sym_backslash_escape] = ACTIONS(1708), + [sym_entity_reference] = ACTIONS(1708), + [sym_numeric_character_reference] = ACTIONS(1708), + [sym_uri_autolink] = ACTIONS(1708), + [sym_email_autolink] = ACTIONS(1708), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(1708), + [sym__digits] = ACTIONS(1708), + [aux_sym__newline_token1] = ACTIONS(1832), + [sym__code_span_start] = ACTIONS(1712), + [sym__emphasis_open_star] = ACTIONS(1714), + [sym__emphasis_open_underscore] = ACTIONS(1716), + }, + [375] = { + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_COLON] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [aux_sym__html_block_1_token1] = ACTIONS(1822), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1824), + [anon_sym_LT_QMARK] = ACTIONS(1824), + [aux_sym__html_block_4_token1] = ACTIONS(1824), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1822), + [aux_sym__html_block_6_token1] = ACTIONS(1824), + [aux_sym__html_block_6_token2] = ACTIONS(1822), + [sym__open_tag_html_block] = ACTIONS(1822), + [sym__open_tag_html_block_newline] = ACTIONS(1822), + [sym__closing_tag_html_block] = ACTIONS(1822), + [sym__closing_tag_html_block_newline] = ACTIONS(1822), + [sym_backslash_escape] = ACTIONS(1822), + [sym_entity_reference] = ACTIONS(1822), + [sym_numeric_character_reference] = ACTIONS(1822), + [sym_uri_autolink] = ACTIONS(1822), + [sym_email_autolink] = ACTIONS(1822), + [sym__whitespace_ge_2] = ACTIONS(1822), + [aux_sym__whitespace_token1] = ACTIONS(1824), + [sym__word_no_digit] = ACTIONS(1822), + [sym__digits] = ACTIONS(1822), + [aux_sym__newline_token1] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym_setext_h1_underline] = ACTIONS(1834), + [sym_setext_h2_underline] = ACTIONS(1834), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__emphasis_open_star] = ACTIONS(1822), + [sym__emphasis_open_underscore] = ACTIONS(1822), + }, + [376] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(431), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), [aux_sym__inline_no_newline] = STATE(380), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1884), + [aux_sym__newline_token1] = ACTIONS(1836), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [379] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(1926), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [377] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1829), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(367), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1882), + [aux_sym__newline_token1] = ACTIONS(1782), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [380] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(976), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [378] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1926), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(383), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1884), + [aux_sym__newline_token1] = ACTIONS(1838), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_COLON] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_BSLASH] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_BQUOTE] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [aux_sym__html_block_1_token1] = ACTIONS(1780), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1782), - [anon_sym_LT_QMARK] = ACTIONS(1782), - [aux_sym__html_block_4_token1] = ACTIONS(1782), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1780), - [aux_sym__html_block_6_token1] = ACTIONS(1782), - [aux_sym__html_block_6_token2] = ACTIONS(1780), - [sym__open_tag_html_block] = ACTIONS(1780), - [sym__open_tag_html_block_newline] = ACTIONS(1780), - [sym__closing_tag_html_block] = ACTIONS(1780), - [sym__closing_tag_html_block_newline] = ACTIONS(1780), - [sym_backslash_escape] = ACTIONS(1780), - [sym_entity_reference] = ACTIONS(1780), - [sym_numeric_character_reference] = ACTIONS(1780), - [sym_uri_autolink] = ACTIONS(1780), - [sym_email_autolink] = ACTIONS(1780), - [sym__whitespace_ge_2] = ACTIONS(1780), - [aux_sym__whitespace_token1] = ACTIONS(1782), - [sym__word_no_digit] = ACTIONS(1780), - [sym__digits] = ACTIONS(1780), - [aux_sym__newline_token1] = ACTIONS(1780), - [sym__block_quote_start] = ACTIONS(1780), - [sym__indented_chunk_start] = ACTIONS(1780), - [sym_atx_h1_marker] = ACTIONS(1780), - [sym_atx_h2_marker] = ACTIONS(1780), - [sym_atx_h3_marker] = ACTIONS(1780), - [sym_atx_h4_marker] = ACTIONS(1780), - [sym_atx_h5_marker] = ACTIONS(1780), - [sym_atx_h6_marker] = ACTIONS(1780), - [sym_setext_h1_underline] = ACTIONS(1780), - [sym_setext_h2_underline] = ACTIONS(1780), - [sym__thematic_break] = ACTIONS(1780), - [sym__list_marker_minus] = ACTIONS(1780), - [sym__list_marker_plus] = ACTIONS(1780), - [sym__list_marker_star] = ACTIONS(1780), - [sym__list_marker_parenthesis] = ACTIONS(1780), - [sym__list_marker_dot] = ACTIONS(1780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), - [sym__fenced_code_block_start_backtick] = ACTIONS(1780), - [sym__fenced_code_block_start_tilde] = ACTIONS(1780), - [sym__blank_line_start] = ACTIONS(1780), - [sym__code_span_start] = ACTIONS(1780), - [sym__emphasis_open_star] = ACTIONS(1780), - [sym__emphasis_open_underscore] = ACTIONS(1780), + [379] = { + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(389), + [sym_full_reference_link] = STATE(389), + [sym_collapsed_reference_link] = STATE(389), + [sym_inline_link] = STATE(389), + [sym_image] = STATE(389), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(389), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(389), + [sym__whitespace] = STATE(389), + [sym__word] = STATE(389), + [sym__text_inline_no_star] = STATE(389), + [sym__inline_element_no_newline_no_star] = STATE(389), + [aux_sym__inline_no_newline_no_star] = STATE(389), + [sym__emphasis_star_no_newline] = STATE(985), + [sym__strong_emphasis_star_no_newline] = STATE(389), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(389), + [sym__code_span_no_newline] = STATE(389), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(628), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_BSLASH] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym__] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1849), + [anon_sym_LT_QMARK] = ACTIONS(1852), + [aux_sym__html_block_4_token1] = ACTIONS(1855), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1858), + [sym_backslash_escape] = ACTIONS(1861), + [sym_entity_reference] = ACTIONS(1861), + [sym_numeric_character_reference] = ACTIONS(1861), + [sym_uri_autolink] = ACTIONS(1861), + [sym_email_autolink] = ACTIONS(1861), + [sym__whitespace_ge_2] = ACTIONS(1864), + [aux_sym__whitespace_token1] = ACTIONS(658), + [sym__word_no_digit] = ACTIONS(1861), + [sym__digits] = ACTIONS(1861), + [sym__code_span_start] = ACTIONS(1867), + [sym__emphasis_open_star] = ACTIONS(1870), + [sym__emphasis_open_underscore] = ACTIONS(1873), + [sym__emphasis_close_underscore] = ACTIONS(673), + [sym__last_token_punctuation] = ACTIONS(1876), }, - [382] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), + [380] = { + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), [sym__newline] = STATE(450), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1734), + [aux_sym__newline_token1] = ACTIONS(1836), [sym__code_span_start] = ACTIONS(1712), [sym__emphasis_open_star] = ACTIONS(1714), [sym__emphasis_open_underscore] = ACTIONS(1716), }, + [381] = { + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_BSLASH] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym__] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [aux_sym__html_block_1_token1] = ACTIONS(1878), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1880), + [anon_sym_LT_QMARK] = ACTIONS(1880), + [aux_sym__html_block_4_token1] = ACTIONS(1880), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1878), + [aux_sym__html_block_6_token1] = ACTIONS(1880), + [aux_sym__html_block_6_token2] = ACTIONS(1878), + [sym__open_tag_html_block] = ACTIONS(1878), + [sym__open_tag_html_block_newline] = ACTIONS(1878), + [sym__closing_tag_html_block] = ACTIONS(1878), + [sym__closing_tag_html_block_newline] = ACTIONS(1878), + [sym_backslash_escape] = ACTIONS(1878), + [sym_entity_reference] = ACTIONS(1878), + [sym_numeric_character_reference] = ACTIONS(1878), + [sym_uri_autolink] = ACTIONS(1878), + [sym_email_autolink] = ACTIONS(1878), + [sym__whitespace_ge_2] = ACTIONS(1878), + [aux_sym__whitespace_token1] = ACTIONS(1880), + [sym__word_no_digit] = ACTIONS(1878), + [sym__digits] = ACTIONS(1878), + [aux_sym__newline_token1] = ACTIONS(1878), + [sym__block_continuation] = ACTIONS(1878), + [sym__block_quote_continuation] = ACTIONS(1878), + [sym__block_quote_start] = ACTIONS(1878), + [sym__indented_chunk_start] = ACTIONS(1878), + [sym_atx_h1_marker] = ACTIONS(1878), + [sym_atx_h2_marker] = ACTIONS(1878), + [sym_atx_h3_marker] = ACTIONS(1878), + [sym_atx_h4_marker] = ACTIONS(1878), + [sym_atx_h5_marker] = ACTIONS(1878), + [sym_atx_h6_marker] = ACTIONS(1878), + [sym__thematic_break] = ACTIONS(1878), + [sym__list_marker_minus] = ACTIONS(1878), + [sym__list_marker_plus] = ACTIONS(1878), + [sym__list_marker_star] = ACTIONS(1878), + [sym__list_marker_parenthesis] = ACTIONS(1878), + [sym__list_marker_dot] = ACTIONS(1878), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1878), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1878), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1878), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1878), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1878), + [sym__fenced_code_block_start_backtick] = ACTIONS(1878), + [sym__fenced_code_block_start_tilde] = ACTIONS(1878), + [sym__blank_line_start] = ACTIONS(1878), + [sym__code_span_start] = ACTIONS(1878), + [sym__emphasis_open_star] = ACTIONS(1878), + [sym__emphasis_open_underscore] = ACTIONS(1878), + [sym__last_token_whitespace] = ACTIONS(1878), + }, + [382] = { + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_PERCENT] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_COLON] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_GT] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_BSLASH] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym__] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [aux_sym__html_block_1_token1] = ACTIONS(1882), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_QMARK] = ACTIONS(1884), + [aux_sym__html_block_4_token1] = ACTIONS(1884), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1882), + [aux_sym__html_block_6_token1] = ACTIONS(1884), + [aux_sym__html_block_6_token2] = ACTIONS(1882), + [sym__open_tag_html_block] = ACTIONS(1882), + [sym__open_tag_html_block_newline] = ACTIONS(1882), + [sym__closing_tag_html_block] = ACTIONS(1882), + [sym__closing_tag_html_block_newline] = ACTIONS(1882), + [sym_backslash_escape] = ACTIONS(1882), + [sym_entity_reference] = ACTIONS(1882), + [sym_numeric_character_reference] = ACTIONS(1882), + [sym_uri_autolink] = ACTIONS(1882), + [sym_email_autolink] = ACTIONS(1882), + [sym__whitespace_ge_2] = ACTIONS(1882), + [aux_sym__whitespace_token1] = ACTIONS(1884), + [sym__word_no_digit] = ACTIONS(1882), + [sym__digits] = ACTIONS(1882), + [aux_sym__newline_token1] = ACTIONS(1882), + [sym__block_continuation] = ACTIONS(1882), + [sym__block_quote_continuation] = ACTIONS(1882), + [sym__block_quote_start] = ACTIONS(1882), + [sym__indented_chunk_start] = ACTIONS(1882), + [sym_atx_h1_marker] = ACTIONS(1882), + [sym_atx_h2_marker] = ACTIONS(1882), + [sym_atx_h3_marker] = ACTIONS(1882), + [sym_atx_h4_marker] = ACTIONS(1882), + [sym_atx_h5_marker] = ACTIONS(1882), + [sym_atx_h6_marker] = ACTIONS(1882), + [sym__thematic_break] = ACTIONS(1882), + [sym__list_marker_minus] = ACTIONS(1882), + [sym__list_marker_plus] = ACTIONS(1882), + [sym__list_marker_star] = ACTIONS(1882), + [sym__list_marker_parenthesis] = ACTIONS(1882), + [sym__list_marker_dot] = ACTIONS(1882), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1882), + [sym__fenced_code_block_start_backtick] = ACTIONS(1882), + [sym__fenced_code_block_start_tilde] = ACTIONS(1882), + [sym__blank_line_start] = ACTIONS(1882), + [sym__code_span_start] = ACTIONS(1882), + [sym__emphasis_open_star] = ACTIONS(1882), + [sym__emphasis_open_underscore] = ACTIONS(1882), + [sym__last_token_whitespace] = ACTIONS(1882), + }, [383] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__newline] = STATE(773), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [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), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__newline] = STATE(1924), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(5), + [anon_sym_DOLLAR] = ACTIONS(5), + [anon_sym_PERCENT] = ACTIONS(5), [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_SQUOTE] = ACTIONS(5), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(5), + [anon_sym_PLUS] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5), + [anon_sym_DASH] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(5), [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(873), + [anon_sym_EQ] = ACTIONS(5), + [anon_sym_GT] = ACTIONS(5), + [anon_sym_QMARK] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(937), [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(875), - [anon_sym_LT_QMARK] = ACTIONS(877), - [aux_sym__html_block_4_token1] = ACTIONS(879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(5), + [anon_sym_CARET] = ACTIONS(5), + [anon_sym__] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(5), + [anon_sym_PIPE] = ACTIONS(5), + [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(941), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), [sym_backslash_escape] = ACTIONS(1708), [sym_entity_reference] = ACTIONS(1708), [sym_numeric_character_reference] = ACTIONS(1708), [sym_uri_autolink] = ACTIONS(1708), [sym_email_autolink] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), [sym__word_no_digit] = ACTIONS(1708), [sym__digits] = ACTIONS(1708), [aux_sym__newline_token1] = ACTIONS(1838), @@ -65494,1248 +65506,1250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1716), }, [384] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1900), - [sym_entity_reference] = ACTIONS(1900), - [sym_numeric_character_reference] = ACTIONS(1900), - [sym_uri_autolink] = ACTIONS(1900), - [sym_email_autolink] = ACTIONS(1900), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1900), - [sym__digits] = ACTIONS(1900), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__emphasis_close_star] = ACTIONS(1910), + [sym__link_text] = STATE(2224), + [sym__link_text_non_empty] = STATE(941), + [sym_shortcut_link] = STATE(867), + [sym_full_reference_link] = STATE(867), + [sym_collapsed_reference_link] = STATE(867), + [sym_inline_link] = STATE(867), + [sym_image] = STATE(867), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(932), + [sym_html_tag] = STATE(867), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(867), + [sym__whitespace] = STATE(867), + [sym__word] = STATE(867), + [sym__text_inline] = STATE(867), + [sym__inline_element_no_newline] = STATE(867), + [aux_sym__inline_no_newline] = STATE(384), + [sym__emphasis_star_no_newline] = STATE(882), + [sym__strong_emphasis_star_no_newline] = STATE(867), + [sym__emphasis_underscore_no_newline] = STATE(882), + [sym__strong_emphasis_underscore_no_newline] = STATE(867), + [sym__code_span_no_newline] = STATE(867), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_COLON] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_BSLASH] = ACTIONS(1901), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym__] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1904), + [anon_sym_LT_QMARK] = ACTIONS(1907), + [aux_sym__html_block_4_token1] = ACTIONS(1910), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1913), + [sym_backslash_escape] = ACTIONS(1916), + [sym_entity_reference] = ACTIONS(1916), + [sym_numeric_character_reference] = ACTIONS(1916), + [sym_uri_autolink] = ACTIONS(1916), + [sym_email_autolink] = ACTIONS(1916), + [sym__whitespace_ge_2] = ACTIONS(1919), + [aux_sym__whitespace_token1] = ACTIONS(1922), + [sym__word_no_digit] = ACTIONS(1916), + [sym__digits] = ACTIONS(1916), + [aux_sym__newline_token1] = ACTIONS(1925), + [sym__code_span_start] = ACTIONS(1927), + [sym__emphasis_open_star] = ACTIONS(1930), + [sym__emphasis_open_underscore] = ACTIONS(1933), }, [385] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1900), - [sym_entity_reference] = ACTIONS(1900), - [sym_numeric_character_reference] = ACTIONS(1900), - [sym_uri_autolink] = ACTIONS(1900), - [sym_email_autolink] = ACTIONS(1900), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1900), - [sym__digits] = ACTIONS(1900), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__emphasis_close_star] = ACTIONS(1912), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1950), + [sym_entity_reference] = ACTIONS(1950), + [sym_numeric_character_reference] = ACTIONS(1950), + [sym_uri_autolink] = ACTIONS(1950), + [sym_email_autolink] = ACTIONS(1950), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1950), + [sym__digits] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__emphasis_close_underscore] = ACTIONS(1960), }, [386] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1928), - [sym_entity_reference] = ACTIONS(1928), - [sym_numeric_character_reference] = ACTIONS(1928), - [sym_uri_autolink] = ACTIONS(1928), - [sym_email_autolink] = ACTIONS(1928), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1928), - [sym__digits] = ACTIONS(1928), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__emphasis_close_underscore] = ACTIONS(1938), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(390), + [sym_full_reference_link] = STATE(390), + [sym_collapsed_reference_link] = STATE(390), + [sym_inline_link] = STATE(390), + [sym_image] = STATE(390), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(390), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(390), + [sym__whitespace] = STATE(390), + [sym__word] = STATE(390), + [sym__text_inline_no_underscore] = STATE(390), + [sym__inline_element_no_newline_no_underscore] = STATE(390), + [aux_sym__inline_no_newline_no_underscore] = STATE(390), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(390), + [sym__emphasis_underscore_no_newline] = STATE(987), + [sym__strong_emphasis_underscore_no_newline] = STATE(390), + [sym__code_span_no_newline] = STATE(390), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1962), + [sym_entity_reference] = ACTIONS(1962), + [sym_numeric_character_reference] = ACTIONS(1962), + [sym_uri_autolink] = ACTIONS(1962), + [sym_email_autolink] = ACTIONS(1962), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1962), + [sym__digits] = ACTIONS(1962), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__last_token_punctuation] = ACTIONS(1964), }, [387] = { - [sym__link_text] = STATE(2223), - [sym__link_text_non_empty] = STATE(911), - [sym_shortcut_link] = STATE(934), - [sym_full_reference_link] = STATE(934), - [sym_collapsed_reference_link] = STATE(934), - [sym_inline_link] = STATE(934), - [sym_image] = STATE(934), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(893), - [sym_html_tag] = STATE(934), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(934), - [sym__whitespace] = STATE(934), - [sym__word] = STATE(934), - [sym__text_inline] = STATE(934), - [sym__inline_element_no_newline] = STATE(934), - [aux_sym__inline_no_newline] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(943), - [sym__strong_emphasis_star_no_newline] = STATE(934), - [sym__emphasis_underscore_no_newline] = STATE(943), - [sym__strong_emphasis_underscore_no_newline] = STATE(934), - [sym__code_span_no_newline] = STATE(934), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_PERCENT] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_COMMA] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_COLON] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1949), - [anon_sym_EQ] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1943), - [anon_sym_AT] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_BSLASH] = ACTIONS(1955), - [anon_sym_RBRACK] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym__] = ACTIONS(1943), - [anon_sym_BQUOTE] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1958), - [anon_sym_LT_QMARK] = ACTIONS(1961), - [aux_sym__html_block_4_token1] = ACTIONS(1964), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1967), - [sym_backslash_escape] = ACTIONS(1970), - [sym_entity_reference] = ACTIONS(1970), - [sym_numeric_character_reference] = ACTIONS(1970), - [sym_uri_autolink] = ACTIONS(1970), - [sym_email_autolink] = ACTIONS(1970), - [sym__whitespace_ge_2] = ACTIONS(1973), - [aux_sym__whitespace_token1] = ACTIONS(1976), - [sym__word_no_digit] = ACTIONS(1970), - [sym__digits] = ACTIONS(1970), - [aux_sym__newline_token1] = ACTIONS(1979), - [sym__code_span_start] = ACTIONS(1981), - [sym__emphasis_open_star] = ACTIONS(1984), - [sym__emphasis_open_underscore] = ACTIONS(1987), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1980), + [sym_entity_reference] = ACTIONS(1980), + [sym_numeric_character_reference] = ACTIONS(1980), + [sym_uri_autolink] = ACTIONS(1980), + [sym_email_autolink] = ACTIONS(1980), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1980), + [sym__digits] = ACTIONS(1980), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__emphasis_close_star] = ACTIONS(1990), }, [388] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1928), - [sym_entity_reference] = ACTIONS(1928), - [sym_numeric_character_reference] = ACTIONS(1928), - [sym_uri_autolink] = ACTIONS(1928), - [sym_email_autolink] = ACTIONS(1928), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1928), - [sym__digits] = ACTIONS(1928), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__emphasis_close_underscore] = ACTIONS(1990), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(391), + [sym_full_reference_link] = STATE(391), + [sym_collapsed_reference_link] = STATE(391), + [sym_inline_link] = STATE(391), + [sym_image] = STATE(391), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(391), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(391), + [sym__whitespace] = STATE(391), + [sym__word] = STATE(391), + [sym__text_inline_no_star] = STATE(391), + [sym__inline_element_no_newline_no_star] = STATE(391), + [aux_sym__inline_no_newline_no_star] = STATE(391), + [sym__emphasis_star_no_newline] = STATE(975), + [sym__strong_emphasis_star_no_newline] = STATE(391), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(391), + [sym__code_span_no_newline] = STATE(391), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1992), + [sym_entity_reference] = ACTIONS(1992), + [sym_numeric_character_reference] = ACTIONS(1992), + [sym_uri_autolink] = ACTIONS(1992), + [sym_email_autolink] = ACTIONS(1992), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1992), + [sym__digits] = ACTIONS(1992), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__last_token_punctuation] = ACTIONS(1994), }, [389] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1900), - [sym_entity_reference] = ACTIONS(1900), - [sym_numeric_character_reference] = ACTIONS(1900), - [sym_uri_autolink] = ACTIONS(1900), - [sym_email_autolink] = ACTIONS(1900), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1900), - [sym__digits] = ACTIONS(1900), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__emphasis_close_star] = ACTIONS(1992), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1980), + [sym_entity_reference] = ACTIONS(1980), + [sym_numeric_character_reference] = ACTIONS(1980), + [sym_uri_autolink] = ACTIONS(1980), + [sym_email_autolink] = ACTIONS(1980), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1980), + [sym__digits] = ACTIONS(1980), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__emphasis_close_star] = ACTIONS(1996), }, [390] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(384), - [sym_full_reference_link] = STATE(384), - [sym_collapsed_reference_link] = STATE(384), - [sym_inline_link] = STATE(384), - [sym_image] = STATE(384), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(384), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(384), - [sym__whitespace] = STATE(384), - [sym__word] = STATE(384), - [sym__text_inline_no_star] = STATE(384), - [sym__inline_element_no_newline_no_star] = STATE(384), - [aux_sym__inline_no_newline_no_star] = STATE(384), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(384), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(384), - [sym__code_span_no_newline] = STATE(384), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1994), - [sym_entity_reference] = ACTIONS(1994), - [sym_numeric_character_reference] = ACTIONS(1994), - [sym_uri_autolink] = ACTIONS(1994), - [sym_email_autolink] = ACTIONS(1994), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1994), - [sym__digits] = ACTIONS(1994), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__last_token_punctuation] = ACTIONS(1996), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1950), + [sym_entity_reference] = ACTIONS(1950), + [sym_numeric_character_reference] = ACTIONS(1950), + [sym_uri_autolink] = ACTIONS(1950), + [sym_email_autolink] = ACTIONS(1950), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1950), + [sym__digits] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__emphasis_close_underscore] = ACTIONS(1998), }, [391] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1928), - [sym_entity_reference] = ACTIONS(1928), - [sym_numeric_character_reference] = ACTIONS(1928), - [sym_uri_autolink] = ACTIONS(1928), - [sym_email_autolink] = ACTIONS(1928), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1928), - [sym__digits] = ACTIONS(1928), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__emphasis_close_underscore] = ACTIONS(1998), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1980), + [sym_entity_reference] = ACTIONS(1980), + [sym_numeric_character_reference] = ACTIONS(1980), + [sym_uri_autolink] = ACTIONS(1980), + [sym_email_autolink] = ACTIONS(1980), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1980), + [sym__digits] = ACTIONS(1980), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__emphasis_close_star] = ACTIONS(2000), }, [392] = { - [sym__block_interrupt_paragraph] = STATE(1729), - [sym_thematic_break] = STATE(1729), - [sym_atx_heading] = STATE(1729), - [sym_fenced_code_block] = STATE(1729), - [sym__html_block_1] = STATE(1729), - [sym__html_block_2] = STATE(1729), - [sym__html_block_3] = STATE(1729), - [sym__html_block_4] = STATE(1729), - [sym__html_block_5] = STATE(1729), - [sym__html_block_6] = STATE(1729), - [sym__blank_line] = STATE(1729), - [sym_block_quote] = STATE(1729), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(2000), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_QMARK] = ACTIONS(2004), - [aux_sym__html_block_4_token1] = ACTIONS(2006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2008), - [aux_sym__html_block_6_token1] = ACTIONS(2010), - [aux_sym__html_block_6_token2] = ACTIONS(2012), - [sym_backslash_escape] = ACTIONS(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(2014), - [sym_atx_h1_marker] = ACTIONS(2016), - [sym_atx_h2_marker] = ACTIONS(2016), - [sym_atx_h3_marker] = ACTIONS(2016), - [sym_atx_h4_marker] = ACTIONS(2016), - [sym_atx_h5_marker] = ACTIONS(2016), - [sym_atx_h6_marker] = ACTIONS(2016), - [sym_setext_h1_underline] = ACTIONS(2018), - [sym_setext_h2_underline] = ACTIONS(2018), - [sym__thematic_break] = ACTIONS(2020), - [sym__list_marker_minus] = ACTIONS(2018), - [sym__list_marker_plus] = ACTIONS(2018), - [sym__list_marker_star] = ACTIONS(2018), - [sym__list_marker_parenthesis] = ACTIONS(2018), - [sym__list_marker_dot] = ACTIONS(2018), - [sym__fenced_code_block_start_backtick] = ACTIONS(2022), - [sym__fenced_code_block_start_tilde] = ACTIONS(2024), - [sym__blank_line_start] = ACTIONS(2026), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__last_token_whitespace] = ACTIONS(2028), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1950), + [sym_entity_reference] = ACTIONS(1950), + [sym_numeric_character_reference] = ACTIONS(1950), + [sym_uri_autolink] = ACTIONS(1950), + [sym_email_autolink] = ACTIONS(1950), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1950), + [sym__digits] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__emphasis_close_underscore] = ACTIONS(2002), }, [393] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1928), - [sym_entity_reference] = ACTIONS(1928), - [sym_numeric_character_reference] = ACTIONS(1928), - [sym_uri_autolink] = ACTIONS(1928), - [sym_email_autolink] = ACTIONS(1928), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1928), - [sym__digits] = ACTIONS(1928), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__emphasis_close_underscore] = ACTIONS(2030), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1980), + [sym_entity_reference] = ACTIONS(1980), + [sym_numeric_character_reference] = ACTIONS(1980), + [sym_uri_autolink] = ACTIONS(1980), + [sym_email_autolink] = ACTIONS(1980), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1980), + [sym__digits] = ACTIONS(1980), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__emphasis_close_star] = ACTIONS(2004), }, [394] = { - [sym__blank_line] = STATE(2413), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_BSLASH] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [aux_sym__html_block_1_token1] = ACTIONS(1792), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1794), - [anon_sym_LT_QMARK] = ACTIONS(1794), - [aux_sym__html_block_4_token1] = ACTIONS(1794), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1792), - [aux_sym__html_block_6_token1] = ACTIONS(1794), - [aux_sym__html_block_6_token2] = ACTIONS(1792), - [sym__open_tag_html_block] = ACTIONS(1792), - [sym__open_tag_html_block_newline] = ACTIONS(1792), - [sym__closing_tag_html_block] = ACTIONS(1792), - [sym__closing_tag_html_block_newline] = ACTIONS(1792), - [sym_backslash_escape] = ACTIONS(1792), - [sym_entity_reference] = ACTIONS(1792), - [sym_numeric_character_reference] = ACTIONS(1792), - [sym_uri_autolink] = ACTIONS(1792), - [sym_email_autolink] = ACTIONS(1792), - [sym__whitespace_ge_2] = ACTIONS(1792), - [aux_sym__whitespace_token1] = ACTIONS(1794), - [sym__word_no_digit] = ACTIONS(1792), - [sym__digits] = ACTIONS(1792), - [aux_sym__newline_token1] = ACTIONS(1792), - [sym__block_close] = ACTIONS(1792), - [sym__block_quote_start] = ACTIONS(1792), - [sym__indented_chunk_start] = ACTIONS(1792), - [sym_atx_h1_marker] = ACTIONS(1792), - [sym_atx_h2_marker] = ACTIONS(1792), - [sym_atx_h3_marker] = ACTIONS(1792), - [sym_atx_h4_marker] = ACTIONS(1792), - [sym_atx_h5_marker] = ACTIONS(1792), - [sym_atx_h6_marker] = ACTIONS(1792), - [sym__thematic_break] = ACTIONS(1792), - [sym__list_marker_minus] = ACTIONS(1792), - [sym__list_marker_plus] = ACTIONS(1792), - [sym__list_marker_star] = ACTIONS(1792), - [sym__list_marker_parenthesis] = ACTIONS(1792), - [sym__list_marker_dot] = ACTIONS(1792), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1792), - [sym__fenced_code_block_start_backtick] = ACTIONS(1792), - [sym__fenced_code_block_start_tilde] = ACTIONS(1792), - [sym__blank_line_start] = ACTIONS(2032), - [sym__code_span_start] = ACTIONS(1792), - [sym__emphasis_open_star] = ACTIONS(1792), - [sym__emphasis_open_underscore] = ACTIONS(1792), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1980), + [sym_entity_reference] = ACTIONS(1980), + [sym_numeric_character_reference] = ACTIONS(1980), + [sym_uri_autolink] = ACTIONS(1980), + [sym_email_autolink] = ACTIONS(1980), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1980), + [sym__digits] = ACTIONS(1980), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__emphasis_close_star] = ACTIONS(2006), }, [395] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(393), - [sym_full_reference_link] = STATE(393), - [sym_collapsed_reference_link] = STATE(393), - [sym_inline_link] = STATE(393), - [sym_image] = STATE(393), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(393), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(393), - [sym__whitespace] = STATE(393), - [sym__word] = STATE(393), - [sym__text_inline_no_underscore] = STATE(393), - [sym__inline_element_no_newline_no_underscore] = STATE(393), - [aux_sym__inline_no_newline_no_underscore] = STATE(393), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(393), - [sym__emphasis_underscore_no_newline] = STATE(880), - [sym__strong_emphasis_underscore_no_newline] = STATE(393), - [sym__code_span_no_newline] = STATE(393), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(2034), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__last_token_punctuation] = ACTIONS(2036), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [anon_sym_PERCENT] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_COMMA] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_DOT] = ACTIONS(2008), + [anon_sym_SLASH] = ACTIONS(2008), + [anon_sym_COLON] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_EQ] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_QMARK] = ACTIONS(2008), + [anon_sym_AT] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_BSLASH] = ACTIONS(2023), + [anon_sym_RBRACK] = ACTIONS(2008), + [anon_sym_CARET] = ACTIONS(2008), + [anon_sym__] = ACTIONS(2008), + [anon_sym_BQUOTE] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_TILDE] = ACTIONS(2008), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2026), + [anon_sym_LT_QMARK] = ACTIONS(2029), + [aux_sym__html_block_4_token1] = ACTIONS(2032), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2035), + [sym_backslash_escape] = ACTIONS(2038), + [sym_entity_reference] = ACTIONS(2038), + [sym_numeric_character_reference] = ACTIONS(2038), + [sym_uri_autolink] = ACTIONS(2038), + [sym_email_autolink] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(2041), + [aux_sym__whitespace_token1] = ACTIONS(2044), + [sym__word_no_digit] = ACTIONS(2038), + [sym__digits] = ACTIONS(2038), + [sym__code_span_start] = ACTIONS(2047), + [sym__emphasis_open_star] = ACTIONS(2050), + [sym__emphasis_open_underscore] = ACTIONS(2053), + [sym__emphasis_close_star] = ACTIONS(2056), }, [396] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1900), - [sym_entity_reference] = ACTIONS(1900), - [sym_numeric_character_reference] = ACTIONS(1900), - [sym_uri_autolink] = ACTIONS(1900), - [sym_email_autolink] = ACTIONS(1900), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1900), - [sym__digits] = ACTIONS(1900), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__emphasis_close_star] = ACTIONS(2038), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1950), + [sym_entity_reference] = ACTIONS(1950), + [sym_numeric_character_reference] = ACTIONS(1950), + [sym_uri_autolink] = ACTIONS(1950), + [sym_email_autolink] = ACTIONS(1950), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1950), + [sym__digits] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__emphasis_close_underscore] = ACTIONS(2058), }, [397] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1900), - [sym_entity_reference] = ACTIONS(1900), - [sym_numeric_character_reference] = ACTIONS(1900), - [sym_uri_autolink] = ACTIONS(1900), - [sym_email_autolink] = ACTIONS(1900), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1900), - [sym__digits] = ACTIONS(1900), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__emphasis_close_star] = ACTIONS(2040), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2060), + [anon_sym_PERCENT] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2066), + [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(2069), + [anon_sym_EQ] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_QMARK] = ACTIONS(2060), + [anon_sym_AT] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_BSLASH] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2060), + [anon_sym_CARET] = ACTIONS(2060), + [anon_sym__] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_TILDE] = ACTIONS(2060), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2078), + [anon_sym_LT_QMARK] = ACTIONS(2081), + [aux_sym__html_block_4_token1] = ACTIONS(2084), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2087), + [sym_backslash_escape] = ACTIONS(2090), + [sym_entity_reference] = ACTIONS(2090), + [sym_numeric_character_reference] = ACTIONS(2090), + [sym_uri_autolink] = ACTIONS(2090), + [sym_email_autolink] = ACTIONS(2090), + [sym__whitespace_ge_2] = ACTIONS(2093), + [aux_sym__whitespace_token1] = ACTIONS(2096), + [sym__word_no_digit] = ACTIONS(2090), + [sym__digits] = ACTIONS(2090), + [sym__code_span_start] = ACTIONS(2099), + [sym__emphasis_open_star] = ACTIONS(2102), + [sym__emphasis_open_underscore] = ACTIONS(2105), + [sym__emphasis_close_underscore] = ACTIONS(2108), }, [398] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_PERCENT] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_DOT] = ACTIONS(2045), - [anon_sym_SLASH] = ACTIONS(2045), - [anon_sym_COLON] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_EQ] = ACTIONS(2045), - [anon_sym_GT] = ACTIONS(2045), - [anon_sym_QMARK] = ACTIONS(2045), - [anon_sym_AT] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_BSLASH] = ACTIONS(2057), - [anon_sym_RBRACK] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym__] = ACTIONS(2045), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2060), - [anon_sym_LT_QMARK] = ACTIONS(2063), - [aux_sym__html_block_4_token1] = ACTIONS(2066), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2069), - [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(2075), - [aux_sym__whitespace_token1] = ACTIONS(2078), - [sym__word_no_digit] = ACTIONS(2072), - [sym__digits] = ACTIONS(2072), - [sym__code_span_start] = ACTIONS(2081), - [sym__emphasis_open_star] = ACTIONS(2084), - [sym__emphasis_open_underscore] = ACTIONS(2087), - [sym__emphasis_close_star] = ACTIONS(2090), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1950), + [sym_entity_reference] = ACTIONS(1950), + [sym_numeric_character_reference] = ACTIONS(1950), + [sym_uri_autolink] = ACTIONS(1950), + [sym_email_autolink] = ACTIONS(1950), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1950), + [sym__digits] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__emphasis_close_underscore] = ACTIONS(2110), }, [399] = { - [sym__block_interrupt_paragraph] = STATE(1750), - [sym_thematic_break] = STATE(1750), - [sym_atx_heading] = STATE(1750), - [sym_fenced_code_block] = STATE(1750), - [sym__html_block_1] = STATE(1750), - [sym__html_block_2] = STATE(1750), - [sym__html_block_3] = STATE(1750), - [sym__html_block_4] = STATE(1750), - [sym__html_block_5] = STATE(1750), - [sym__html_block_6] = STATE(1750), - [sym__blank_line] = STATE(1750), - [sym_block_quote] = STATE(1750), + [sym__block_interrupt_paragraph] = STATE(1744), + [sym_thematic_break] = STATE(1744), + [sym_atx_heading] = STATE(1744), + [sym_fenced_code_block] = STATE(1744), + [sym__html_block_1] = STATE(1744), + [sym__html_block_2] = STATE(1744), + [sym__html_block_3] = STATE(1744), + [sym__html_block_4] = STATE(1744), + [sym__html_block_5] = STATE(1744), + [sym__html_block_6] = STATE(1744), + [sym__blank_line] = STATE(1744), + [sym_block_quote] = STATE(1744), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -66764,17 +66778,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2000), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_QMARK] = ACTIONS(2004), - [aux_sym__html_block_4_token1] = ACTIONS(2006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2008), - [aux_sym__html_block_6_token1] = ACTIONS(2010), - [aux_sym__html_block_6_token2] = ACTIONS(2012), + [aux_sym__html_block_1_token1] = ACTIONS(2112), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2114), + [anon_sym_LT_QMARK] = ACTIONS(2116), + [aux_sym__html_block_4_token1] = ACTIONS(2118), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2120), + [aux_sym__html_block_6_token1] = ACTIONS(2122), + [aux_sym__html_block_6_token2] = ACTIONS(2124), [sym_backslash_escape] = ACTIONS(415), [sym_entity_reference] = ACTIONS(415), [sym_numeric_character_reference] = ACTIONS(415), @@ -66783,358 +66795,360 @@ 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(2014), - [sym_atx_h1_marker] = ACTIONS(2016), - [sym_atx_h2_marker] = ACTIONS(2016), - [sym_atx_h3_marker] = ACTIONS(2016), - [sym_atx_h4_marker] = ACTIONS(2016), - [sym_atx_h5_marker] = ACTIONS(2016), - [sym_atx_h6_marker] = ACTIONS(2016), - [sym_setext_h1_underline] = ACTIONS(2092), - [sym_setext_h2_underline] = ACTIONS(2092), - [sym__thematic_break] = ACTIONS(2020), - [sym__list_marker_minus] = ACTIONS(2092), - [sym__list_marker_plus] = ACTIONS(2092), - [sym__list_marker_star] = ACTIONS(2092), - [sym__list_marker_parenthesis] = ACTIONS(2092), - [sym__list_marker_dot] = ACTIONS(2092), - [sym__fenced_code_block_start_backtick] = ACTIONS(2022), - [sym__fenced_code_block_start_tilde] = ACTIONS(2024), - [sym__blank_line_start] = ACTIONS(2026), + [sym__block_quote_start] = ACTIONS(2126), + [sym_atx_h1_marker] = ACTIONS(2128), + [sym_atx_h2_marker] = ACTIONS(2128), + [sym_atx_h3_marker] = ACTIONS(2128), + [sym_atx_h4_marker] = ACTIONS(2128), + [sym_atx_h5_marker] = ACTIONS(2128), + [sym_atx_h6_marker] = ACTIONS(2128), + [sym_setext_h1_underline] = ACTIONS(2130), + [sym_setext_h2_underline] = ACTIONS(2130), + [sym__thematic_break] = ACTIONS(2132), + [sym__list_marker_minus] = ACTIONS(2130), + [sym__list_marker_plus] = ACTIONS(2130), + [sym__list_marker_star] = ACTIONS(2130), + [sym__list_marker_parenthesis] = ACTIONS(2130), + [sym__list_marker_dot] = ACTIONS(2130), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym__fenced_code_block_start_tilde] = ACTIONS(2136), + [sym__blank_line_start] = ACTIONS(2138), [sym__split_token] = ACTIONS(447), [sym__soft_line_break_marker] = ACTIONS(447), - [sym__last_token_whitespace] = ACTIONS(2094), + [sym__last_token_whitespace] = ACTIONS(2140), }, [400] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1928), - [sym_entity_reference] = ACTIONS(1928), - [sym_numeric_character_reference] = ACTIONS(1928), - [sym_uri_autolink] = ACTIONS(1928), - [sym_email_autolink] = ACTIONS(1928), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1928), - [sym__digits] = ACTIONS(1928), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__emphasis_close_underscore] = ACTIONS(2096), + [sym__blank_line] = STATE(2453), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_COLON] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [aux_sym__html_block_1_token1] = ACTIONS(1822), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1824), + [anon_sym_LT_QMARK] = ACTIONS(1824), + [aux_sym__html_block_4_token1] = ACTIONS(1824), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1822), + [aux_sym__html_block_6_token1] = ACTIONS(1824), + [aux_sym__html_block_6_token2] = ACTIONS(1822), + [sym__open_tag_html_block] = ACTIONS(1822), + [sym__open_tag_html_block_newline] = ACTIONS(1822), + [sym__closing_tag_html_block] = ACTIONS(1822), + [sym__closing_tag_html_block_newline] = ACTIONS(1822), + [sym_backslash_escape] = ACTIONS(1822), + [sym_entity_reference] = ACTIONS(1822), + [sym_numeric_character_reference] = ACTIONS(1822), + [sym_uri_autolink] = ACTIONS(1822), + [sym_email_autolink] = ACTIONS(1822), + [sym__whitespace_ge_2] = ACTIONS(1822), + [aux_sym__whitespace_token1] = ACTIONS(1824), + [sym__word_no_digit] = ACTIONS(1822), + [sym__digits] = ACTIONS(1822), + [aux_sym__newline_token1] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(2142), + [sym__code_span_start] = ACTIONS(1822), + [sym__emphasis_open_star] = ACTIONS(1822), + [sym__emphasis_open_underscore] = ACTIONS(1822), }, [401] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1928), - [sym_entity_reference] = ACTIONS(1928), - [sym_numeric_character_reference] = ACTIONS(1928), - [sym_uri_autolink] = ACTIONS(1928), - [sym_email_autolink] = ACTIONS(1928), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(1928), - [sym__digits] = ACTIONS(1928), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - [sym__emphasis_close_underscore] = ACTIONS(2098), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(395), + [sym_full_reference_link] = STATE(395), + [sym_collapsed_reference_link] = STATE(395), + [sym_inline_link] = STATE(395), + [sym_image] = STATE(395), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(395), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(395), + [sym__whitespace] = STATE(395), + [sym__word] = STATE(395), + [sym__text_inline_no_star] = STATE(395), + [sym__inline_element_no_newline_no_star] = STATE(395), + [aux_sym__inline_no_newline_no_star] = STATE(395), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(395), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(395), + [sym__code_span_no_newline] = STATE(395), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(1980), + [sym_entity_reference] = ACTIONS(1980), + [sym_numeric_character_reference] = ACTIONS(1980), + [sym_uri_autolink] = ACTIONS(1980), + [sym_email_autolink] = ACTIONS(1980), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(1980), + [sym__digits] = ACTIONS(1980), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), + [sym__emphasis_close_star] = ACTIONS(2144), }, [402] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(402), - [sym_full_reference_link] = STATE(402), - [sym_collapsed_reference_link] = STATE(402), - [sym_inline_link] = STATE(402), - [sym_image] = STATE(402), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(402), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(402), - [sym__whitespace] = STATE(402), - [sym__word] = STATE(402), - [sym__text_inline_no_underscore] = STATE(402), - [sym__inline_element_no_newline_no_underscore] = STATE(402), - [aux_sym__inline_no_newline_no_underscore] = STATE(402), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(402), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(402), - [sym__code_span_no_newline] = STATE(402), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(2103), - [anon_sym_DOLLAR] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_COLON] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_GT] = ACTIONS(2103), - [anon_sym_QMARK] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_RBRACK] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym__] = ACTIONS(2103), - [anon_sym_BQUOTE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2118), - [anon_sym_LT_QMARK] = ACTIONS(2121), - [aux_sym__html_block_4_token1] = ACTIONS(2124), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), - [sym_backslash_escape] = ACTIONS(2130), - [sym_entity_reference] = ACTIONS(2130), - [sym_numeric_character_reference] = ACTIONS(2130), - [sym_uri_autolink] = ACTIONS(2130), - [sym_email_autolink] = ACTIONS(2130), - [sym__whitespace_ge_2] = ACTIONS(2133), - [aux_sym__whitespace_token1] = ACTIONS(2136), - [sym__word_no_digit] = ACTIONS(2130), - [sym__digits] = ACTIONS(2130), - [sym__code_span_start] = ACTIONS(2139), - [sym__emphasis_open_star] = ACTIONS(2142), - [sym__emphasis_open_underscore] = ACTIONS(2145), - [sym__emphasis_close_underscore] = ACTIONS(2148), + [sym__block_interrupt_paragraph] = STATE(1729), + [sym_thematic_break] = STATE(1729), + [sym_atx_heading] = STATE(1729), + [sym_fenced_code_block] = STATE(1729), + [sym__html_block_1] = STATE(1729), + [sym__html_block_2] = STATE(1729), + [sym__html_block_3] = STATE(1729), + [sym__html_block_4] = STATE(1729), + [sym__html_block_5] = STATE(1729), + [sym__html_block_6] = STATE(1729), + [sym__blank_line] = STATE(1729), + [sym_block_quote] = STATE(1729), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_AT] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_BSLASH] = ACTIONS(453), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym__] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [aux_sym__html_block_1_token1] = ACTIONS(2112), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2114), + [anon_sym_LT_QMARK] = ACTIONS(2116), + [aux_sym__html_block_4_token1] = ACTIONS(2118), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2120), + [aux_sym__html_block_6_token1] = ACTIONS(2122), + [aux_sym__html_block_6_token2] = ACTIONS(2124), + [sym_backslash_escape] = ACTIONS(451), + [sym_entity_reference] = ACTIONS(451), + [sym_numeric_character_reference] = ACTIONS(451), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(451), + [sym__digits] = ACTIONS(451), + [aux_sym__newline_token1] = ACTIONS(451), + [sym__block_quote_start] = ACTIONS(2126), + [sym_atx_h1_marker] = ACTIONS(2128), + [sym_atx_h2_marker] = ACTIONS(2128), + [sym_atx_h3_marker] = ACTIONS(2128), + [sym_atx_h4_marker] = ACTIONS(2128), + [sym_atx_h5_marker] = ACTIONS(2128), + [sym_atx_h6_marker] = ACTIONS(2128), + [sym_setext_h1_underline] = ACTIONS(2146), + [sym_setext_h2_underline] = ACTIONS(2146), + [sym__thematic_break] = ACTIONS(2132), + [sym__list_marker_minus] = ACTIONS(2146), + [sym__list_marker_plus] = ACTIONS(2146), + [sym__list_marker_star] = ACTIONS(2146), + [sym__list_marker_parenthesis] = ACTIONS(2146), + [sym__list_marker_dot] = ACTIONS(2146), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym__fenced_code_block_start_tilde] = ACTIONS(2136), + [sym__blank_line_start] = ACTIONS(2138), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__last_token_whitespace] = ACTIONS(2148), }, [403] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(398), - [sym_full_reference_link] = STATE(398), - [sym_collapsed_reference_link] = STATE(398), - [sym_inline_link] = STATE(398), - [sym_image] = STATE(398), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(398), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(398), - [sym__whitespace] = STATE(398), - [sym__word] = STATE(398), - [sym__text_inline_no_star] = STATE(398), - [sym__inline_element_no_newline_no_star] = STATE(398), - [aux_sym__inline_no_newline_no_star] = STATE(398), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(398), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(398), - [sym__code_span_no_newline] = STATE(398), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(1900), - [sym_entity_reference] = ACTIONS(1900), - [sym_numeric_character_reference] = ACTIONS(1900), - [sym_uri_autolink] = ACTIONS(1900), - [sym_email_autolink] = ACTIONS(1900), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(1900), - [sym__digits] = ACTIONS(1900), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), - [sym__emphasis_close_star] = ACTIONS(2150), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(397), + [sym_full_reference_link] = STATE(397), + [sym_collapsed_reference_link] = STATE(397), + [sym_inline_link] = STATE(397), + [sym_image] = STATE(397), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(397), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(397), + [sym__whitespace] = STATE(397), + [sym__word] = STATE(397), + [sym__text_inline_no_underscore] = STATE(397), + [sym__inline_element_no_newline_no_underscore] = STATE(397), + [aux_sym__inline_no_newline_no_underscore] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(397), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(397), + [sym__code_span_no_newline] = STATE(397), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(1950), + [sym_entity_reference] = ACTIONS(1950), + [sym_numeric_character_reference] = ACTIONS(1950), + [sym_uri_autolink] = ACTIONS(1950), + [sym_email_autolink] = ACTIONS(1950), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(1950), + [sym__digits] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + [sym__emphasis_close_underscore] = ACTIONS(2150), }, [404] = { [ts_builtin_sym_end] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), [anon_sym_BANG] = ACTIONS(2152), [anon_sym_DQUOTE] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(2152), @@ -67163,9 +67177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2152), [anon_sym__] = ACTIONS(2152), [anon_sym_BQUOTE] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), [anon_sym_TILDE] = ACTIONS(2152), [aux_sym__html_block_1_token1] = ACTIONS(2152), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2154), @@ -67215,7 +67227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2152), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), [anon_sym_BANG] = ACTIONS(2156), [anon_sym_DQUOTE] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(2156), @@ -67244,9 +67257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2156), [anon_sym__] = ACTIONS(2156), [anon_sym_BQUOTE] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), [anon_sym_TILDE] = ACTIONS(2156), [aux_sym__html_block_1_token1] = ACTIONS(2156), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2158), @@ -67269,6 +67280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2156), [sym__digits] = ACTIONS(2156), [aux_sym__newline_token1] = ACTIONS(2156), + [sym__block_close] = ACTIONS(2156), [sym__block_quote_start] = ACTIONS(2156), [sym__indented_chunk_start] = ACTIONS(2156), [sym_atx_h1_marker] = ACTIONS(2156), @@ -67296,7 +67308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2156), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), [anon_sym_BANG] = ACTIONS(2160), [anon_sym_DQUOTE] = ACTIONS(2160), [anon_sym_POUND] = ACTIONS(2160), @@ -67325,9 +67338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2160), [anon_sym__] = ACTIONS(2160), [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), [anon_sym_TILDE] = ACTIONS(2160), [aux_sym__html_block_1_token1] = ACTIONS(2160), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2162), @@ -67350,6 +67361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2160), [sym__digits] = ACTIONS(2160), [aux_sym__newline_token1] = ACTIONS(2160), + [sym__block_close] = ACTIONS(2160), [sym__block_quote_start] = ACTIONS(2160), [sym__indented_chunk_start] = ACTIONS(2160), [sym_atx_h1_marker] = ACTIONS(2160), @@ -67378,6 +67390,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [407] = { [ts_builtin_sym_end] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), [anon_sym_BANG] = ACTIONS(2164), [anon_sym_DQUOTE] = ACTIONS(2164), [anon_sym_POUND] = ACTIONS(2164), @@ -67406,9 +67420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2164), [anon_sym__] = ACTIONS(2164), [anon_sym_BQUOTE] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), [anon_sym_TILDE] = ACTIONS(2164), [aux_sym__html_block_1_token1] = ACTIONS(2164), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2166), @@ -67458,331 +67470,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2164), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_DOT] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_COLON] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_QMARK] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_BSLASH] = ACTIONS(2170), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym__] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [aux_sym__html_block_1_token1] = ACTIONS(2168), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2170), - [anon_sym_LT_QMARK] = ACTIONS(2170), - [aux_sym__html_block_4_token1] = ACTIONS(2170), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2168), - [aux_sym__html_block_6_token1] = ACTIONS(2170), - [aux_sym__html_block_6_token2] = ACTIONS(2168), - [sym__open_tag_html_block] = ACTIONS(2168), - [sym__open_tag_html_block_newline] = ACTIONS(2168), - [sym__closing_tag_html_block] = ACTIONS(2168), - [sym__closing_tag_html_block_newline] = ACTIONS(2168), + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(393), + [sym_full_reference_link] = STATE(393), + [sym_collapsed_reference_link] = STATE(393), + [sym_inline_link] = STATE(393), + [sym_image] = STATE(393), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(393), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(393), + [sym__whitespace] = STATE(393), + [sym__word] = STATE(393), + [sym__text_inline_no_star] = STATE(393), + [sym__inline_element_no_newline_no_star] = STATE(393), + [aux_sym__inline_no_newline_no_star] = STATE(393), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(393), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(393), + [sym__code_span_no_newline] = STATE(393), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), [sym_backslash_escape] = ACTIONS(2168), [sym_entity_reference] = ACTIONS(2168), [sym_numeric_character_reference] = ACTIONS(2168), [sym_uri_autolink] = ACTIONS(2168), [sym_email_autolink] = ACTIONS(2168), - [sym__whitespace_ge_2] = ACTIONS(2168), - [aux_sym__whitespace_token1] = ACTIONS(2170), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2168), [sym__digits] = ACTIONS(2168), - [aux_sym__newline_token1] = ACTIONS(2168), - [sym__block_quote_start] = ACTIONS(2168), - [sym__indented_chunk_start] = ACTIONS(2168), - [sym_atx_h1_marker] = ACTIONS(2168), - [sym_atx_h2_marker] = ACTIONS(2168), - [sym_atx_h3_marker] = ACTIONS(2168), - [sym_atx_h4_marker] = ACTIONS(2168), - [sym_atx_h5_marker] = ACTIONS(2168), - [sym_atx_h6_marker] = ACTIONS(2168), - [sym__thematic_break] = ACTIONS(2168), - [sym__list_marker_minus] = ACTIONS(2168), - [sym__list_marker_plus] = ACTIONS(2168), - [sym__list_marker_star] = ACTIONS(2168), - [sym__list_marker_parenthesis] = ACTIONS(2168), - [sym__list_marker_dot] = ACTIONS(2168), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2168), - [sym__fenced_code_block_start_backtick] = ACTIONS(2168), - [sym__fenced_code_block_start_tilde] = ACTIONS(2168), - [sym__blank_line_start] = ACTIONS(2168), - [sym__code_span_start] = ACTIONS(2168), - [sym__emphasis_open_star] = ACTIONS(2168), - [sym__emphasis_open_underscore] = ACTIONS(2168), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_COLON] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_QMARK] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym__] = ACTIONS(2172), - [anon_sym_BQUOTE] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [aux_sym__html_block_1_token1] = ACTIONS(2172), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2174), - [anon_sym_LT_QMARK] = ACTIONS(2174), - [aux_sym__html_block_4_token1] = ACTIONS(2174), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2172), - [aux_sym__html_block_6_token1] = ACTIONS(2174), - [aux_sym__html_block_6_token2] = ACTIONS(2172), - [sym__open_tag_html_block] = ACTIONS(2172), - [sym__open_tag_html_block_newline] = ACTIONS(2172), - [sym__closing_tag_html_block] = ACTIONS(2172), - [sym__closing_tag_html_block_newline] = ACTIONS(2172), - [sym_backslash_escape] = ACTIONS(2172), - [sym_entity_reference] = ACTIONS(2172), - [sym_numeric_character_reference] = ACTIONS(2172), - [sym_uri_autolink] = ACTIONS(2172), - [sym_email_autolink] = ACTIONS(2172), - [sym__whitespace_ge_2] = ACTIONS(2172), - [aux_sym__whitespace_token1] = ACTIONS(2174), - [sym__word_no_digit] = ACTIONS(2172), - [sym__digits] = ACTIONS(2172), - [aux_sym__newline_token1] = ACTIONS(2172), - [sym__block_quote_start] = ACTIONS(2172), - [sym__indented_chunk_start] = ACTIONS(2172), - [sym_atx_h1_marker] = ACTIONS(2172), - [sym_atx_h2_marker] = ACTIONS(2172), - [sym_atx_h3_marker] = ACTIONS(2172), - [sym_atx_h4_marker] = ACTIONS(2172), - [sym_atx_h5_marker] = ACTIONS(2172), - [sym_atx_h6_marker] = ACTIONS(2172), - [sym__thematic_break] = ACTIONS(2172), - [sym__list_marker_minus] = ACTIONS(2172), - [sym__list_marker_plus] = ACTIONS(2172), - [sym__list_marker_star] = ACTIONS(2172), - [sym__list_marker_parenthesis] = ACTIONS(2172), - [sym__list_marker_dot] = ACTIONS(2172), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2172), - [sym__fenced_code_block_start_backtick] = ACTIONS(2172), - [sym__fenced_code_block_start_tilde] = ACTIONS(2172), - [sym__blank_line_start] = ACTIONS(2172), - [sym__code_span_start] = ACTIONS(2172), - [sym__emphasis_open_star] = ACTIONS(2172), - [sym__emphasis_open_underscore] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(2170), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_PERCENT] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_DOT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_COLON] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_EQ] = ACTIONS(2170), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_QMARK] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_BSLASH] = ACTIONS(2172), + [anon_sym_RBRACK] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2170), + [anon_sym__] = ACTIONS(2170), + [anon_sym_BQUOTE] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [aux_sym__html_block_1_token1] = ACTIONS(2170), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2172), + [anon_sym_LT_QMARK] = ACTIONS(2172), + [aux_sym__html_block_4_token1] = ACTIONS(2172), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2170), + [aux_sym__html_block_6_token1] = ACTIONS(2172), + [aux_sym__html_block_6_token2] = ACTIONS(2170), + [sym__open_tag_html_block] = ACTIONS(2170), + [sym__open_tag_html_block_newline] = ACTIONS(2170), + [sym__closing_tag_html_block] = ACTIONS(2170), + [sym__closing_tag_html_block_newline] = ACTIONS(2170), + [sym_backslash_escape] = ACTIONS(2170), + [sym_entity_reference] = ACTIONS(2170), + [sym_numeric_character_reference] = ACTIONS(2170), + [sym_uri_autolink] = ACTIONS(2170), + [sym_email_autolink] = ACTIONS(2170), + [sym__whitespace_ge_2] = ACTIONS(2170), + [aux_sym__whitespace_token1] = ACTIONS(2172), + [sym__word_no_digit] = ACTIONS(2170), + [sym__digits] = ACTIONS(2170), + [aux_sym__newline_token1] = ACTIONS(2170), + [sym__block_close] = ACTIONS(2170), + [sym__block_quote_start] = ACTIONS(2170), + [sym__indented_chunk_start] = ACTIONS(2170), + [sym_atx_h1_marker] = ACTIONS(2170), + [sym_atx_h2_marker] = ACTIONS(2170), + [sym_atx_h3_marker] = ACTIONS(2170), + [sym_atx_h4_marker] = ACTIONS(2170), + [sym_atx_h5_marker] = ACTIONS(2170), + [sym_atx_h6_marker] = ACTIONS(2170), + [sym__thematic_break] = ACTIONS(2170), + [sym__list_marker_minus] = ACTIONS(2170), + [sym__list_marker_plus] = ACTIONS(2170), + [sym__list_marker_star] = ACTIONS(2170), + [sym__list_marker_parenthesis] = ACTIONS(2170), + [sym__list_marker_dot] = ACTIONS(2170), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2170), + [sym__fenced_code_block_start_backtick] = ACTIONS(2170), + [sym__fenced_code_block_start_tilde] = ACTIONS(2170), + [sym__blank_line_start] = ACTIONS(2170), + [sym__code_span_start] = ACTIONS(2170), + [sym__emphasis_open_star] = ACTIONS(2170), + [sym__emphasis_open_underscore] = ACTIONS(2170), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_DOT] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_COLON] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_EQ] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2176), - [anon_sym_QMARK] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_BSLASH] = ACTIONS(2178), - [anon_sym_RBRACK] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym__] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [aux_sym__html_block_1_token1] = ACTIONS(2176), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2178), - [anon_sym_LT_QMARK] = ACTIONS(2178), - [aux_sym__html_block_4_token1] = ACTIONS(2178), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2176), - [aux_sym__html_block_6_token1] = ACTIONS(2178), - [aux_sym__html_block_6_token2] = ACTIONS(2176), - [sym__open_tag_html_block] = ACTIONS(2176), - [sym__open_tag_html_block_newline] = ACTIONS(2176), - [sym__closing_tag_html_block] = ACTIONS(2176), - [sym__closing_tag_html_block_newline] = ACTIONS(2176), - [sym_backslash_escape] = ACTIONS(2176), - [sym_entity_reference] = ACTIONS(2176), - [sym_numeric_character_reference] = ACTIONS(2176), - [sym_uri_autolink] = ACTIONS(2176), - [sym_email_autolink] = ACTIONS(2176), - [sym__whitespace_ge_2] = ACTIONS(2176), - [aux_sym__whitespace_token1] = ACTIONS(2178), - [sym__word_no_digit] = ACTIONS(2176), - [sym__digits] = ACTIONS(2176), - [aux_sym__newline_token1] = ACTIONS(2176), - [sym__block_quote_start] = ACTIONS(2176), - [sym__indented_chunk_start] = ACTIONS(2176), - [sym_atx_h1_marker] = ACTIONS(2176), - [sym_atx_h2_marker] = ACTIONS(2176), - [sym_atx_h3_marker] = ACTIONS(2176), - [sym_atx_h4_marker] = ACTIONS(2176), - [sym_atx_h5_marker] = ACTIONS(2176), - [sym_atx_h6_marker] = ACTIONS(2176), - [sym__thematic_break] = ACTIONS(2176), - [sym__list_marker_minus] = ACTIONS(2176), - [sym__list_marker_plus] = ACTIONS(2176), - [sym__list_marker_star] = ACTIONS(2176), - [sym__list_marker_parenthesis] = ACTIONS(2176), - [sym__list_marker_dot] = ACTIONS(2176), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2176), - [sym__fenced_code_block_start_backtick] = ACTIONS(2176), - [sym__fenced_code_block_start_tilde] = ACTIONS(2176), - [sym__blank_line_start] = ACTIONS(2176), - [sym__code_span_start] = ACTIONS(2176), - [sym__emphasis_open_star] = ACTIONS(2176), - [sym__emphasis_open_underscore] = ACTIONS(2176), + [ts_builtin_sym_end] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_DOT] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_COLON] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_QMARK] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_BSLASH] = ACTIONS(2176), + [anon_sym_RBRACK] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [aux_sym__html_block_1_token1] = ACTIONS(2174), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2176), + [anon_sym_LT_QMARK] = ACTIONS(2176), + [aux_sym__html_block_4_token1] = ACTIONS(2176), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2174), + [aux_sym__html_block_6_token1] = ACTIONS(2176), + [aux_sym__html_block_6_token2] = ACTIONS(2174), + [sym__open_tag_html_block] = ACTIONS(2174), + [sym__open_tag_html_block_newline] = ACTIONS(2174), + [sym__closing_tag_html_block] = ACTIONS(2174), + [sym__closing_tag_html_block_newline] = ACTIONS(2174), + [sym_backslash_escape] = ACTIONS(2174), + [sym_entity_reference] = ACTIONS(2174), + [sym_numeric_character_reference] = ACTIONS(2174), + [sym_uri_autolink] = ACTIONS(2174), + [sym_email_autolink] = ACTIONS(2174), + [sym__whitespace_ge_2] = ACTIONS(2174), + [aux_sym__whitespace_token1] = ACTIONS(2176), + [sym__word_no_digit] = ACTIONS(2174), + [sym__digits] = ACTIONS(2174), + [aux_sym__newline_token1] = ACTIONS(2174), + [sym__block_quote_start] = ACTIONS(2174), + [sym__indented_chunk_start] = ACTIONS(2174), + [sym_atx_h1_marker] = ACTIONS(2174), + [sym_atx_h2_marker] = ACTIONS(2174), + [sym_atx_h3_marker] = ACTIONS(2174), + [sym_atx_h4_marker] = ACTIONS(2174), + [sym_atx_h5_marker] = ACTIONS(2174), + [sym_atx_h6_marker] = ACTIONS(2174), + [sym__thematic_break] = ACTIONS(2174), + [sym__list_marker_minus] = ACTIONS(2174), + [sym__list_marker_plus] = ACTIONS(2174), + [sym__list_marker_star] = ACTIONS(2174), + [sym__list_marker_parenthesis] = ACTIONS(2174), + [sym__list_marker_dot] = ACTIONS(2174), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2174), + [sym__fenced_code_block_start_backtick] = ACTIONS(2174), + [sym__fenced_code_block_start_tilde] = ACTIONS(2174), + [sym__blank_line_start] = ACTIONS(2174), + [sym__code_span_start] = ACTIONS(2174), + [sym__emphasis_open_star] = ACTIONS(2174), + [sym__emphasis_open_underscore] = ACTIONS(2174), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_PERCENT] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(2180), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_COMMA] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_DOT] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_COLON] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_QMARK] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_BSLASH] = ACTIONS(2182), - [anon_sym_RBRACK] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym__] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [aux_sym__html_block_1_token1] = ACTIONS(2180), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2182), - [anon_sym_LT_QMARK] = ACTIONS(2182), - [aux_sym__html_block_4_token1] = ACTIONS(2182), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2180), - [aux_sym__html_block_6_token1] = ACTIONS(2182), - [aux_sym__html_block_6_token2] = ACTIONS(2180), - [sym__open_tag_html_block] = ACTIONS(2180), - [sym__open_tag_html_block_newline] = ACTIONS(2180), - [sym__closing_tag_html_block] = ACTIONS(2180), - [sym__closing_tag_html_block_newline] = ACTIONS(2180), - [sym_backslash_escape] = ACTIONS(2180), - [sym_entity_reference] = ACTIONS(2180), - [sym_numeric_character_reference] = ACTIONS(2180), - [sym_uri_autolink] = ACTIONS(2180), - [sym_email_autolink] = ACTIONS(2180), - [sym__whitespace_ge_2] = ACTIONS(2180), - [aux_sym__whitespace_token1] = ACTIONS(2182), - [sym__word_no_digit] = ACTIONS(2180), - [sym__digits] = ACTIONS(2180), - [aux_sym__newline_token1] = ACTIONS(2180), - [sym__block_quote_start] = ACTIONS(2180), - [sym__indented_chunk_start] = ACTIONS(2180), - [sym_atx_h1_marker] = ACTIONS(2180), - [sym_atx_h2_marker] = ACTIONS(2180), - [sym_atx_h3_marker] = ACTIONS(2180), - [sym_atx_h4_marker] = ACTIONS(2180), - [sym_atx_h5_marker] = ACTIONS(2180), - [sym_atx_h6_marker] = ACTIONS(2180), - [sym__thematic_break] = ACTIONS(2180), - [sym__list_marker_minus] = ACTIONS(2180), - [sym__list_marker_plus] = ACTIONS(2180), - [sym__list_marker_star] = ACTIONS(2180), - [sym__list_marker_parenthesis] = ACTIONS(2180), - [sym__list_marker_dot] = ACTIONS(2180), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2180), - [sym__fenced_code_block_start_backtick] = ACTIONS(2180), - [sym__fenced_code_block_start_tilde] = ACTIONS(2180), - [sym__blank_line_start] = ACTIONS(2180), - [sym__code_span_start] = ACTIONS(2180), - [sym__emphasis_open_star] = ACTIONS(2180), - [sym__emphasis_open_underscore] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_COLON] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_EQ] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_QMARK] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_BSLASH] = ACTIONS(2180), + [anon_sym_RBRACK] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2178), + [anon_sym__] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [aux_sym__html_block_1_token1] = ACTIONS(2178), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2180), + [anon_sym_LT_QMARK] = ACTIONS(2180), + [aux_sym__html_block_4_token1] = ACTIONS(2180), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2178), + [aux_sym__html_block_6_token1] = ACTIONS(2180), + [aux_sym__html_block_6_token2] = ACTIONS(2178), + [sym__open_tag_html_block] = ACTIONS(2178), + [sym__open_tag_html_block_newline] = ACTIONS(2178), + [sym__closing_tag_html_block] = ACTIONS(2178), + [sym__closing_tag_html_block_newline] = ACTIONS(2178), + [sym_backslash_escape] = ACTIONS(2178), + [sym_entity_reference] = ACTIONS(2178), + [sym_numeric_character_reference] = ACTIONS(2178), + [sym_uri_autolink] = ACTIONS(2178), + [sym_email_autolink] = ACTIONS(2178), + [sym__whitespace_ge_2] = ACTIONS(2178), + [aux_sym__whitespace_token1] = ACTIONS(2180), + [sym__word_no_digit] = ACTIONS(2178), + [sym__digits] = ACTIONS(2178), + [aux_sym__newline_token1] = ACTIONS(2178), + [sym__block_close] = ACTIONS(2178), + [sym__block_quote_start] = ACTIONS(2178), + [sym__indented_chunk_start] = ACTIONS(2178), + [sym_atx_h1_marker] = ACTIONS(2178), + [sym_atx_h2_marker] = ACTIONS(2178), + [sym_atx_h3_marker] = ACTIONS(2178), + [sym_atx_h4_marker] = ACTIONS(2178), + [sym_atx_h5_marker] = ACTIONS(2178), + [sym_atx_h6_marker] = ACTIONS(2178), + [sym__thematic_break] = ACTIONS(2178), + [sym__list_marker_minus] = ACTIONS(2178), + [sym__list_marker_plus] = ACTIONS(2178), + [sym__list_marker_star] = ACTIONS(2178), + [sym__list_marker_parenthesis] = ACTIONS(2178), + [sym__list_marker_dot] = ACTIONS(2178), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2178), + [sym__fenced_code_block_start_backtick] = ACTIONS(2178), + [sym__fenced_code_block_start_tilde] = ACTIONS(2178), + [sym__blank_line_start] = ACTIONS(2178), + [sym__code_span_start] = ACTIONS(2178), + [sym__emphasis_open_star] = ACTIONS(2178), + [sym__emphasis_open_underscore] = ACTIONS(2178), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(2184), + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(398), + [sym_full_reference_link] = STATE(398), + [sym_collapsed_reference_link] = STATE(398), + [sym_inline_link] = STATE(398), + [sym_image] = STATE(398), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(398), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(398), + [sym__whitespace] = STATE(398), + [sym__word] = STATE(398), + [sym__text_inline_no_underscore] = STATE(398), + [sym__inline_element_no_newline_no_underscore] = STATE(398), + [aux_sym__inline_no_newline_no_underscore] = STATE(398), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(398), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(398), + [sym__code_span_no_newline] = STATE(398), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(2182), + [sym_entity_reference] = ACTIONS(2182), + [sym_numeric_character_reference] = ACTIONS(2182), + [sym_uri_autolink] = ACTIONS(2182), + [sym_email_autolink] = ACTIONS(2182), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2182), + [sym__digits] = ACTIONS(2182), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + }, + [413] = { + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), [anon_sym_BANG] = ACTIONS(2184), [anon_sym_DQUOTE] = ACTIONS(2184), [anon_sym_POUND] = ACTIONS(2184), @@ -67811,9 +67905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2184), [anon_sym__] = ACTIONS(2184), [anon_sym_BQUOTE] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), [anon_sym_TILDE] = ACTIONS(2184), [aux_sym__html_block_1_token1] = ACTIONS(2184), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2186), @@ -67836,6 +67928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2184), [sym__digits] = ACTIONS(2184), [aux_sym__newline_token1] = ACTIONS(2184), + [sym__block_close] = ACTIONS(2184), [sym__block_quote_start] = ACTIONS(2184), [sym__indented_chunk_start] = ACTIONS(2184), [sym_atx_h1_marker] = ACTIONS(2184), @@ -67862,8 +67955,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2184), [sym__emphasis_open_underscore] = ACTIONS(2184), }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(2188), + [414] = { + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), [anon_sym_BANG] = ACTIONS(2188), [anon_sym_DQUOTE] = ACTIONS(2188), [anon_sym_POUND] = ACTIONS(2188), @@ -67892,9 +67986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2188), [anon_sym__] = ACTIONS(2188), [anon_sym_BQUOTE] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), [anon_sym_TILDE] = ACTIONS(2188), [aux_sym__html_block_1_token1] = ACTIONS(2188), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2190), @@ -67917,6 +68009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2188), [sym__digits] = ACTIONS(2188), [aux_sym__newline_token1] = ACTIONS(2188), + [sym__block_close] = ACTIONS(2188), [sym__block_quote_start] = ACTIONS(2188), [sym__indented_chunk_start] = ACTIONS(2188), [sym_atx_h1_marker] = ACTIONS(2188), @@ -67943,8 +68036,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2188), [sym__emphasis_open_underscore] = ACTIONS(2188), }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(2192), + [415] = { + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), [anon_sym_BANG] = ACTIONS(2192), [anon_sym_DQUOTE] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(2192), @@ -67973,9 +68067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2192), [anon_sym__] = ACTIONS(2192), [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), [anon_sym_TILDE] = ACTIONS(2192), [aux_sym__html_block_1_token1] = ACTIONS(2192), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2194), @@ -67998,6 +68090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2192), [sym__digits] = ACTIONS(2192), [aux_sym__newline_token1] = ACTIONS(2192), + [sym__block_close] = ACTIONS(2192), [sym__block_quote_start] = ACTIONS(2192), [sym__indented_chunk_start] = ACTIONS(2192), [sym_atx_h1_marker] = ACTIONS(2192), @@ -68024,8 +68117,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2192), [sym__emphasis_open_underscore] = ACTIONS(2192), }, - [415] = { + [416] = { + [ts_builtin_sym_end] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_DOT] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_COLON] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2188), + [anon_sym_QMARK] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_BSLASH] = ACTIONS(2190), + [anon_sym_RBRACK] = ACTIONS(2188), + [anon_sym_CARET] = ACTIONS(2188), + [anon_sym__] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [aux_sym__html_block_1_token1] = ACTIONS(2188), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2190), + [anon_sym_LT_QMARK] = ACTIONS(2190), + [aux_sym__html_block_4_token1] = ACTIONS(2190), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2188), + [aux_sym__html_block_6_token1] = ACTIONS(2190), + [aux_sym__html_block_6_token2] = ACTIONS(2188), + [sym__open_tag_html_block] = ACTIONS(2188), + [sym__open_tag_html_block_newline] = ACTIONS(2188), + [sym__closing_tag_html_block] = ACTIONS(2188), + [sym__closing_tag_html_block_newline] = ACTIONS(2188), + [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(2188), + [aux_sym__whitespace_token1] = ACTIONS(2190), + [sym__word_no_digit] = ACTIONS(2188), + [sym__digits] = ACTIONS(2188), + [aux_sym__newline_token1] = ACTIONS(2188), + [sym__block_quote_start] = ACTIONS(2188), + [sym__indented_chunk_start] = ACTIONS(2188), + [sym_atx_h1_marker] = ACTIONS(2188), + [sym_atx_h2_marker] = ACTIONS(2188), + [sym_atx_h3_marker] = ACTIONS(2188), + [sym_atx_h4_marker] = ACTIONS(2188), + [sym_atx_h5_marker] = ACTIONS(2188), + [sym_atx_h6_marker] = ACTIONS(2188), + [sym__thematic_break] = ACTIONS(2188), + [sym__list_marker_minus] = ACTIONS(2188), + [sym__list_marker_plus] = ACTIONS(2188), + [sym__list_marker_star] = ACTIONS(2188), + [sym__list_marker_parenthesis] = ACTIONS(2188), + [sym__list_marker_dot] = ACTIONS(2188), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2188), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2188), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2188), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2188), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2188), + [sym__fenced_code_block_start_backtick] = ACTIONS(2188), + [sym__fenced_code_block_start_tilde] = ACTIONS(2188), + [sym__blank_line_start] = ACTIONS(2188), + [sym__code_span_start] = ACTIONS(2188), + [sym__emphasis_open_star] = ACTIONS(2188), + [sym__emphasis_open_underscore] = ACTIONS(2188), + }, + [417] = { [ts_builtin_sym_end] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), [anon_sym_BANG] = ACTIONS(2196), [anon_sym_DQUOTE] = ACTIONS(2196), [anon_sym_POUND] = ACTIONS(2196), @@ -68054,9 +68230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2196), [anon_sym__] = ACTIONS(2196), [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), [anon_sym_TILDE] = ACTIONS(2196), [aux_sym__html_block_1_token1] = ACTIONS(2196), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2198), @@ -68105,7 +68279,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2196), [sym__emphasis_open_underscore] = ACTIONS(2196), }, - [416] = { + [418] = { + [ts_builtin_sym_end] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_DOT] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2192), + [anon_sym_COLON] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_EQ] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2192), + [anon_sym_QMARK] = ACTIONS(2192), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_BSLASH] = ACTIONS(2194), + [anon_sym_RBRACK] = ACTIONS(2192), + [anon_sym_CARET] = ACTIONS(2192), + [anon_sym__] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [aux_sym__html_block_1_token1] = ACTIONS(2192), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2194), + [anon_sym_LT_QMARK] = ACTIONS(2194), + [aux_sym__html_block_4_token1] = ACTIONS(2194), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2192), + [aux_sym__html_block_6_token1] = ACTIONS(2194), + [aux_sym__html_block_6_token2] = ACTIONS(2192), + [sym__open_tag_html_block] = ACTIONS(2192), + [sym__open_tag_html_block_newline] = ACTIONS(2192), + [sym__closing_tag_html_block] = ACTIONS(2192), + [sym__closing_tag_html_block_newline] = ACTIONS(2192), + [sym_backslash_escape] = ACTIONS(2192), + [sym_entity_reference] = ACTIONS(2192), + [sym_numeric_character_reference] = ACTIONS(2192), + [sym_uri_autolink] = ACTIONS(2192), + [sym_email_autolink] = ACTIONS(2192), + [sym__whitespace_ge_2] = ACTIONS(2192), + [aux_sym__whitespace_token1] = ACTIONS(2194), + [sym__word_no_digit] = ACTIONS(2192), + [sym__digits] = ACTIONS(2192), + [aux_sym__newline_token1] = ACTIONS(2192), + [sym__block_quote_start] = ACTIONS(2192), + [sym__indented_chunk_start] = ACTIONS(2192), + [sym_atx_h1_marker] = ACTIONS(2192), + [sym_atx_h2_marker] = ACTIONS(2192), + [sym_atx_h3_marker] = ACTIONS(2192), + [sym_atx_h4_marker] = ACTIONS(2192), + [sym_atx_h5_marker] = ACTIONS(2192), + [sym_atx_h6_marker] = ACTIONS(2192), + [sym__thematic_break] = ACTIONS(2192), + [sym__list_marker_minus] = ACTIONS(2192), + [sym__list_marker_plus] = ACTIONS(2192), + [sym__list_marker_star] = ACTIONS(2192), + [sym__list_marker_parenthesis] = ACTIONS(2192), + [sym__list_marker_dot] = ACTIONS(2192), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2192), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2192), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2192), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2192), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2192), + [sym__fenced_code_block_start_backtick] = ACTIONS(2192), + [sym__fenced_code_block_start_tilde] = ACTIONS(2192), + [sym__blank_line_start] = ACTIONS(2192), + [sym__code_span_start] = ACTIONS(2192), + [sym__emphasis_open_star] = ACTIONS(2192), + [sym__emphasis_open_underscore] = ACTIONS(2192), + }, + [419] = { + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), [anon_sym_BANG] = ACTIONS(2200), [anon_sym_DQUOTE] = ACTIONS(2200), [anon_sym_POUND] = ACTIONS(2200), @@ -68134,9 +68391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2200), [anon_sym__] = ACTIONS(2200), [anon_sym_BQUOTE] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), [anon_sym_TILDE] = ACTIONS(2200), [aux_sym__html_block_1_token1] = ACTIONS(2200), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2202), @@ -68186,8 +68441,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2200), [sym__emphasis_open_underscore] = ACTIONS(2200), }, - [417] = { - [ts_builtin_sym_end] = ACTIONS(2204), + [420] = { + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_COMMA] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_DOT] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_COLON] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_QMARK] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_BSLASH] = ACTIONS(2198), + [anon_sym_RBRACK] = ACTIONS(2196), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym__] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [aux_sym__html_block_1_token1] = ACTIONS(2196), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2198), + [anon_sym_LT_QMARK] = ACTIONS(2198), + [aux_sym__html_block_4_token1] = ACTIONS(2198), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2196), + [aux_sym__html_block_6_token1] = ACTIONS(2198), + [aux_sym__html_block_6_token2] = ACTIONS(2196), + [sym__open_tag_html_block] = ACTIONS(2196), + [sym__open_tag_html_block_newline] = ACTIONS(2196), + [sym__closing_tag_html_block] = ACTIONS(2196), + [sym__closing_tag_html_block_newline] = ACTIONS(2196), + [sym_backslash_escape] = ACTIONS(2196), + [sym_entity_reference] = ACTIONS(2196), + [sym_numeric_character_reference] = ACTIONS(2196), + [sym_uri_autolink] = ACTIONS(2196), + [sym_email_autolink] = ACTIONS(2196), + [sym__whitespace_ge_2] = ACTIONS(2196), + [aux_sym__whitespace_token1] = ACTIONS(2198), + [sym__word_no_digit] = ACTIONS(2196), + [sym__digits] = ACTIONS(2196), + [aux_sym__newline_token1] = ACTIONS(2196), + [sym__block_close] = ACTIONS(2196), + [sym__block_quote_start] = ACTIONS(2196), + [sym__indented_chunk_start] = ACTIONS(2196), + [sym_atx_h1_marker] = ACTIONS(2196), + [sym_atx_h2_marker] = ACTIONS(2196), + [sym_atx_h3_marker] = ACTIONS(2196), + [sym_atx_h4_marker] = ACTIONS(2196), + [sym_atx_h5_marker] = ACTIONS(2196), + [sym_atx_h6_marker] = ACTIONS(2196), + [sym__thematic_break] = ACTIONS(2196), + [sym__list_marker_minus] = ACTIONS(2196), + [sym__list_marker_plus] = ACTIONS(2196), + [sym__list_marker_star] = ACTIONS(2196), + [sym__list_marker_parenthesis] = ACTIONS(2196), + [sym__list_marker_dot] = ACTIONS(2196), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2196), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2196), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2196), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2196), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2196), + [sym__fenced_code_block_start_backtick] = ACTIONS(2196), + [sym__fenced_code_block_start_tilde] = ACTIONS(2196), + [sym__blank_line_start] = ACTIONS(2196), + [sym__code_span_start] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2196), + [sym__emphasis_open_underscore] = ACTIONS(2196), + }, + [421] = { + [ts_builtin_sym_end] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_EQ] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_BSLASH] = ACTIONS(2158), + [anon_sym_RBRACK] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym__] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [aux_sym__html_block_1_token1] = ACTIONS(2156), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2158), + [anon_sym_LT_QMARK] = ACTIONS(2158), + [aux_sym__html_block_4_token1] = ACTIONS(2158), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2156), + [aux_sym__html_block_6_token1] = ACTIONS(2158), + [aux_sym__html_block_6_token2] = ACTIONS(2156), + [sym__open_tag_html_block] = ACTIONS(2156), + [sym__open_tag_html_block_newline] = ACTIONS(2156), + [sym__closing_tag_html_block] = ACTIONS(2156), + [sym__closing_tag_html_block_newline] = ACTIONS(2156), + [sym_backslash_escape] = ACTIONS(2156), + [sym_entity_reference] = ACTIONS(2156), + [sym_numeric_character_reference] = ACTIONS(2156), + [sym_uri_autolink] = ACTIONS(2156), + [sym_email_autolink] = ACTIONS(2156), + [sym__whitespace_ge_2] = ACTIONS(2156), + [aux_sym__whitespace_token1] = ACTIONS(2158), + [sym__word_no_digit] = ACTIONS(2156), + [sym__digits] = ACTIONS(2156), + [aux_sym__newline_token1] = ACTIONS(2156), + [sym__block_quote_start] = ACTIONS(2156), + [sym__indented_chunk_start] = ACTIONS(2156), + [sym_atx_h1_marker] = ACTIONS(2156), + [sym_atx_h2_marker] = ACTIONS(2156), + [sym_atx_h3_marker] = ACTIONS(2156), + [sym_atx_h4_marker] = ACTIONS(2156), + [sym_atx_h5_marker] = ACTIONS(2156), + [sym_atx_h6_marker] = ACTIONS(2156), + [sym__thematic_break] = ACTIONS(2156), + [sym__list_marker_minus] = ACTIONS(2156), + [sym__list_marker_plus] = ACTIONS(2156), + [sym__list_marker_star] = ACTIONS(2156), + [sym__list_marker_parenthesis] = ACTIONS(2156), + [sym__list_marker_dot] = ACTIONS(2156), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2156), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2156), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2156), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2156), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2156), + [sym__fenced_code_block_start_backtick] = ACTIONS(2156), + [sym__fenced_code_block_start_tilde] = ACTIONS(2156), + [sym__blank_line_start] = ACTIONS(2156), + [sym__code_span_start] = ACTIONS(2156), + [sym__emphasis_open_star] = ACTIONS(2156), + [sym__emphasis_open_underscore] = ACTIONS(2156), + }, + [422] = { + [ts_builtin_sym_end] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2184), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_DOT] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2184), + [anon_sym_COLON] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_EQ] = ACTIONS(2184), + [anon_sym_GT] = ACTIONS(2184), + [anon_sym_QMARK] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_BSLASH] = ACTIONS(2186), + [anon_sym_RBRACK] = ACTIONS(2184), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym__] = ACTIONS(2184), + [anon_sym_BQUOTE] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [aux_sym__html_block_1_token1] = ACTIONS(2184), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2186), + [anon_sym_LT_QMARK] = ACTIONS(2186), + [aux_sym__html_block_4_token1] = ACTIONS(2186), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2184), + [aux_sym__html_block_6_token1] = ACTIONS(2186), + [aux_sym__html_block_6_token2] = ACTIONS(2184), + [sym__open_tag_html_block] = ACTIONS(2184), + [sym__open_tag_html_block_newline] = ACTIONS(2184), + [sym__closing_tag_html_block] = ACTIONS(2184), + [sym__closing_tag_html_block_newline] = ACTIONS(2184), + [sym_backslash_escape] = ACTIONS(2184), + [sym_entity_reference] = ACTIONS(2184), + [sym_numeric_character_reference] = ACTIONS(2184), + [sym_uri_autolink] = ACTIONS(2184), + [sym_email_autolink] = ACTIONS(2184), + [sym__whitespace_ge_2] = ACTIONS(2184), + [aux_sym__whitespace_token1] = ACTIONS(2186), + [sym__word_no_digit] = ACTIONS(2184), + [sym__digits] = ACTIONS(2184), + [aux_sym__newline_token1] = ACTIONS(2184), + [sym__block_quote_start] = ACTIONS(2184), + [sym__indented_chunk_start] = ACTIONS(2184), + [sym_atx_h1_marker] = ACTIONS(2184), + [sym_atx_h2_marker] = ACTIONS(2184), + [sym_atx_h3_marker] = ACTIONS(2184), + [sym_atx_h4_marker] = ACTIONS(2184), + [sym_atx_h5_marker] = ACTIONS(2184), + [sym_atx_h6_marker] = ACTIONS(2184), + [sym__thematic_break] = ACTIONS(2184), + [sym__list_marker_minus] = ACTIONS(2184), + [sym__list_marker_plus] = ACTIONS(2184), + [sym__list_marker_star] = ACTIONS(2184), + [sym__list_marker_parenthesis] = ACTIONS(2184), + [sym__list_marker_dot] = ACTIONS(2184), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2184), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2184), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2184), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2184), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2184), + [sym__fenced_code_block_start_backtick] = ACTIONS(2184), + [sym__fenced_code_block_start_tilde] = ACTIONS(2184), + [sym__blank_line_start] = ACTIONS(2184), + [sym__code_span_start] = ACTIONS(2184), + [sym__emphasis_open_star] = ACTIONS(2184), + [sym__emphasis_open_underscore] = ACTIONS(2184), + }, + [423] = { + [ts_builtin_sym_end] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_COLON] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_EQ] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_QMARK] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_BSLASH] = ACTIONS(2180), + [anon_sym_RBRACK] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2178), + [anon_sym__] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [aux_sym__html_block_1_token1] = ACTIONS(2178), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2180), + [anon_sym_LT_QMARK] = ACTIONS(2180), + [aux_sym__html_block_4_token1] = ACTIONS(2180), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2178), + [aux_sym__html_block_6_token1] = ACTIONS(2180), + [aux_sym__html_block_6_token2] = ACTIONS(2178), + [sym__open_tag_html_block] = ACTIONS(2178), + [sym__open_tag_html_block_newline] = ACTIONS(2178), + [sym__closing_tag_html_block] = ACTIONS(2178), + [sym__closing_tag_html_block_newline] = ACTIONS(2178), + [sym_backslash_escape] = ACTIONS(2178), + [sym_entity_reference] = ACTIONS(2178), + [sym_numeric_character_reference] = ACTIONS(2178), + [sym_uri_autolink] = ACTIONS(2178), + [sym_email_autolink] = ACTIONS(2178), + [sym__whitespace_ge_2] = ACTIONS(2178), + [aux_sym__whitespace_token1] = ACTIONS(2180), + [sym__word_no_digit] = ACTIONS(2178), + [sym__digits] = ACTIONS(2178), + [aux_sym__newline_token1] = ACTIONS(2178), + [sym__block_quote_start] = ACTIONS(2178), + [sym__indented_chunk_start] = ACTIONS(2178), + [sym_atx_h1_marker] = ACTIONS(2178), + [sym_atx_h2_marker] = ACTIONS(2178), + [sym_atx_h3_marker] = ACTIONS(2178), + [sym_atx_h4_marker] = ACTIONS(2178), + [sym_atx_h5_marker] = ACTIONS(2178), + [sym_atx_h6_marker] = ACTIONS(2178), + [sym__thematic_break] = ACTIONS(2178), + [sym__list_marker_minus] = ACTIONS(2178), + [sym__list_marker_plus] = ACTIONS(2178), + [sym__list_marker_star] = ACTIONS(2178), + [sym__list_marker_parenthesis] = ACTIONS(2178), + [sym__list_marker_dot] = ACTIONS(2178), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2178), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2178), + [sym__fenced_code_block_start_backtick] = ACTIONS(2178), + [sym__fenced_code_block_start_tilde] = ACTIONS(2178), + [sym__blank_line_start] = ACTIONS(2178), + [sym__code_span_start] = ACTIONS(2178), + [sym__emphasis_open_star] = ACTIONS(2178), + [sym__emphasis_open_underscore] = ACTIONS(2178), + }, + [424] = { + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_DOT] = ACTIONS(2174), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_COLON] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_QMARK] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_BSLASH] = ACTIONS(2176), + [anon_sym_RBRACK] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [aux_sym__html_block_1_token1] = ACTIONS(2174), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2176), + [anon_sym_LT_QMARK] = ACTIONS(2176), + [aux_sym__html_block_4_token1] = ACTIONS(2176), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2174), + [aux_sym__html_block_6_token1] = ACTIONS(2176), + [aux_sym__html_block_6_token2] = ACTIONS(2174), + [sym__open_tag_html_block] = ACTIONS(2174), + [sym__open_tag_html_block_newline] = ACTIONS(2174), + [sym__closing_tag_html_block] = ACTIONS(2174), + [sym__closing_tag_html_block_newline] = ACTIONS(2174), + [sym_backslash_escape] = ACTIONS(2174), + [sym_entity_reference] = ACTIONS(2174), + [sym_numeric_character_reference] = ACTIONS(2174), + [sym_uri_autolink] = ACTIONS(2174), + [sym_email_autolink] = ACTIONS(2174), + [sym__whitespace_ge_2] = ACTIONS(2174), + [aux_sym__whitespace_token1] = ACTIONS(2176), + [sym__word_no_digit] = ACTIONS(2174), + [sym__digits] = ACTIONS(2174), + [aux_sym__newline_token1] = ACTIONS(2174), + [sym__block_close] = ACTIONS(2174), + [sym__block_quote_start] = ACTIONS(2174), + [sym__indented_chunk_start] = ACTIONS(2174), + [sym_atx_h1_marker] = ACTIONS(2174), + [sym_atx_h2_marker] = ACTIONS(2174), + [sym_atx_h3_marker] = ACTIONS(2174), + [sym_atx_h4_marker] = ACTIONS(2174), + [sym_atx_h5_marker] = ACTIONS(2174), + [sym_atx_h6_marker] = ACTIONS(2174), + [sym__thematic_break] = ACTIONS(2174), + [sym__list_marker_minus] = ACTIONS(2174), + [sym__list_marker_plus] = ACTIONS(2174), + [sym__list_marker_star] = ACTIONS(2174), + [sym__list_marker_parenthesis] = ACTIONS(2174), + [sym__list_marker_dot] = ACTIONS(2174), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2174), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2174), + [sym__fenced_code_block_start_backtick] = ACTIONS(2174), + [sym__fenced_code_block_start_tilde] = ACTIONS(2174), + [sym__blank_line_start] = ACTIONS(2174), + [sym__code_span_start] = ACTIONS(2174), + [sym__emphasis_open_star] = ACTIONS(2174), + [sym__emphasis_open_underscore] = ACTIONS(2174), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(2170), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_PERCENT] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_DOT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_COLON] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_EQ] = ACTIONS(2170), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_QMARK] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_BSLASH] = ACTIONS(2172), + [anon_sym_RBRACK] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2170), + [anon_sym__] = ACTIONS(2170), + [anon_sym_BQUOTE] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [aux_sym__html_block_1_token1] = ACTIONS(2170), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2172), + [anon_sym_LT_QMARK] = ACTIONS(2172), + [aux_sym__html_block_4_token1] = ACTIONS(2172), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2170), + [aux_sym__html_block_6_token1] = ACTIONS(2172), + [aux_sym__html_block_6_token2] = ACTIONS(2170), + [sym__open_tag_html_block] = ACTIONS(2170), + [sym__open_tag_html_block_newline] = ACTIONS(2170), + [sym__closing_tag_html_block] = ACTIONS(2170), + [sym__closing_tag_html_block_newline] = ACTIONS(2170), + [sym_backslash_escape] = ACTIONS(2170), + [sym_entity_reference] = ACTIONS(2170), + [sym_numeric_character_reference] = ACTIONS(2170), + [sym_uri_autolink] = ACTIONS(2170), + [sym_email_autolink] = ACTIONS(2170), + [sym__whitespace_ge_2] = ACTIONS(2170), + [aux_sym__whitespace_token1] = ACTIONS(2172), + [sym__word_no_digit] = ACTIONS(2170), + [sym__digits] = ACTIONS(2170), + [aux_sym__newline_token1] = ACTIONS(2170), + [sym__block_quote_start] = ACTIONS(2170), + [sym__indented_chunk_start] = ACTIONS(2170), + [sym_atx_h1_marker] = ACTIONS(2170), + [sym_atx_h2_marker] = ACTIONS(2170), + [sym_atx_h3_marker] = ACTIONS(2170), + [sym_atx_h4_marker] = ACTIONS(2170), + [sym_atx_h5_marker] = ACTIONS(2170), + [sym_atx_h6_marker] = ACTIONS(2170), + [sym__thematic_break] = ACTIONS(2170), + [sym__list_marker_minus] = ACTIONS(2170), + [sym__list_marker_plus] = ACTIONS(2170), + [sym__list_marker_star] = ACTIONS(2170), + [sym__list_marker_parenthesis] = ACTIONS(2170), + [sym__list_marker_dot] = ACTIONS(2170), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2170), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2170), + [sym__fenced_code_block_start_backtick] = ACTIONS(2170), + [sym__fenced_code_block_start_tilde] = ACTIONS(2170), + [sym__blank_line_start] = ACTIONS(2170), + [sym__code_span_start] = ACTIONS(2170), + [sym__emphasis_open_star] = ACTIONS(2170), + [sym__emphasis_open_underscore] = ACTIONS(2170), + }, + [426] = { + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), [anon_sym_BANG] = ACTIONS(2204), [anon_sym_DQUOTE] = ACTIONS(2204), [anon_sym_POUND] = ACTIONS(2204), @@ -68216,9 +68958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2204), [anon_sym__] = ACTIONS(2204), [anon_sym_BQUOTE] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), [anon_sym_TILDE] = ACTIONS(2204), [aux_sym__html_block_1_token1] = ACTIONS(2204), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2206), @@ -68241,6 +68981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2204), [sym__digits] = ACTIONS(2204), [aux_sym__newline_token1] = ACTIONS(2204), + [sym__block_close] = ACTIONS(2204), [sym__block_quote_start] = ACTIONS(2204), [sym__indented_chunk_start] = ACTIONS(2204), [sym_atx_h1_marker] = ACTIONS(2204), @@ -68267,8 +69008,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2204), [sym__emphasis_open_underscore] = ACTIONS(2204), }, - [418] = { - [ts_builtin_sym_end] = ACTIONS(2208), + [427] = { + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), [anon_sym_BANG] = ACTIONS(2208), [anon_sym_DQUOTE] = ACTIONS(2208), [anon_sym_POUND] = ACTIONS(2208), @@ -68297,9 +69039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2208), [anon_sym__] = ACTIONS(2208), [anon_sym_BQUOTE] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), [anon_sym_TILDE] = ACTIONS(2208), [aux_sym__html_block_1_token1] = ACTIONS(2208), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2210), @@ -68322,6 +69062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2208), [sym__digits] = ACTIONS(2208), [aux_sym__newline_token1] = ACTIONS(2208), + [sym__block_close] = ACTIONS(2208), [sym__block_quote_start] = ACTIONS(2208), [sym__indented_chunk_start] = ACTIONS(2208), [sym_atx_h1_marker] = ACTIONS(2208), @@ -68348,89 +69089,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2208), [sym__emphasis_open_underscore] = ACTIONS(2208), }, - [419] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(389), - [sym_full_reference_link] = STATE(389), - [sym_collapsed_reference_link] = STATE(389), - [sym_inline_link] = STATE(389), - [sym_image] = STATE(389), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(389), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(389), - [sym__whitespace] = STATE(389), - [sym__word] = STATE(389), - [sym__text_inline_no_star] = STATE(389), - [sym__inline_element_no_newline_no_star] = STATE(389), - [aux_sym__inline_no_newline_no_star] = STATE(389), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(389), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(389), - [sym__code_span_no_newline] = STATE(389), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), + [428] = { + [ts_builtin_sym_end] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_COLON] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_EQ] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_BSLASH] = ACTIONS(2162), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym__] = ACTIONS(2160), + [anon_sym_BQUOTE] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [aux_sym__html_block_1_token1] = ACTIONS(2160), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2162), + [anon_sym_LT_QMARK] = ACTIONS(2162), + [aux_sym__html_block_4_token1] = ACTIONS(2162), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2160), + [aux_sym__html_block_6_token1] = ACTIONS(2162), + [aux_sym__html_block_6_token2] = ACTIONS(2160), + [sym__open_tag_html_block] = ACTIONS(2160), + [sym__open_tag_html_block_newline] = ACTIONS(2160), + [sym__closing_tag_html_block] = ACTIONS(2160), + [sym__closing_tag_html_block_newline] = ACTIONS(2160), + [sym_backslash_escape] = ACTIONS(2160), + [sym_entity_reference] = ACTIONS(2160), + [sym_numeric_character_reference] = ACTIONS(2160), + [sym_uri_autolink] = ACTIONS(2160), + [sym_email_autolink] = ACTIONS(2160), + [sym__whitespace_ge_2] = ACTIONS(2160), + [aux_sym__whitespace_token1] = ACTIONS(2162), + [sym__word_no_digit] = ACTIONS(2160), + [sym__digits] = ACTIONS(2160), + [aux_sym__newline_token1] = ACTIONS(2160), + [sym__block_quote_start] = ACTIONS(2160), + [sym__indented_chunk_start] = ACTIONS(2160), + [sym_atx_h1_marker] = ACTIONS(2160), + [sym_atx_h2_marker] = ACTIONS(2160), + [sym_atx_h3_marker] = ACTIONS(2160), + [sym_atx_h4_marker] = ACTIONS(2160), + [sym_atx_h5_marker] = ACTIONS(2160), + [sym_atx_h6_marker] = ACTIONS(2160), + [sym__thematic_break] = ACTIONS(2160), + [sym__list_marker_minus] = ACTIONS(2160), + [sym__list_marker_plus] = ACTIONS(2160), + [sym__list_marker_star] = ACTIONS(2160), + [sym__list_marker_parenthesis] = ACTIONS(2160), + [sym__list_marker_dot] = ACTIONS(2160), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2160), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2160), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2160), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2160), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2160), + [sym__fenced_code_block_start_backtick] = ACTIONS(2160), + [sym__fenced_code_block_start_tilde] = ACTIONS(2160), + [sym__blank_line_start] = ACTIONS(2160), + [sym__code_span_start] = ACTIONS(2160), + [sym__emphasis_open_star] = ACTIONS(2160), + [sym__emphasis_open_underscore] = ACTIONS(2160), + }, + [429] = { + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(394), + [sym_full_reference_link] = STATE(394), + [sym_collapsed_reference_link] = STATE(394), + [sym_inline_link] = STATE(394), + [sym_image] = STATE(394), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(394), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(394), + [sym__whitespace] = STATE(394), + [sym__word] = STATE(394), + [sym__text_inline_no_star] = STATE(394), + [sym__inline_element_no_newline_no_star] = STATE(394), + [aux_sym__inline_no_newline_no_star] = STATE(394), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(394), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(394), + [sym__code_span_no_newline] = STATE(394), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), [sym_backslash_escape] = ACTIONS(2212), [sym_entity_reference] = ACTIONS(2212), [sym_numeric_character_reference] = ACTIONS(2212), [sym_uri_autolink] = ACTIONS(2212), [sym_email_autolink] = ACTIONS(2212), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2212), [sym__digits] = ACTIONS(2212), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), }, - [420] = { - [ts_builtin_sym_end] = ACTIONS(2214), + [430] = { + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), [anon_sym_BANG] = ACTIONS(2214), [anon_sym_DQUOTE] = ACTIONS(2214), [anon_sym_POUND] = ACTIONS(2214), @@ -68459,9 +69282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2214), [anon_sym__] = ACTIONS(2214), [anon_sym_BQUOTE] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), [anon_sym_TILDE] = ACTIONS(2214), [aux_sym__html_block_1_token1] = ACTIONS(2214), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2216), @@ -68484,6 +69305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2214), [sym__digits] = ACTIONS(2214), [aux_sym__newline_token1] = ACTIONS(2214), + [sym__block_close] = ACTIONS(2214), [sym__block_quote_start] = ACTIONS(2214), [sym__indented_chunk_start] = ACTIONS(2214), [sym_atx_h1_marker] = ACTIONS(2214), @@ -68510,89 +69332,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2214), [sym__emphasis_open_underscore] = ACTIONS(2214), }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_DOT] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_COLON] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_QMARK] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_BSLASH] = ACTIONS(2202), - [anon_sym_RBRACK] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym__] = ACTIONS(2200), - [anon_sym_BQUOTE] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [aux_sym__html_block_1_token1] = ACTIONS(2200), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2202), - [anon_sym_LT_QMARK] = ACTIONS(2202), - [aux_sym__html_block_4_token1] = ACTIONS(2202), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2200), - [aux_sym__html_block_6_token1] = ACTIONS(2202), - [aux_sym__html_block_6_token2] = ACTIONS(2200), - [sym__open_tag_html_block] = ACTIONS(2200), - [sym__open_tag_html_block_newline] = ACTIONS(2200), - [sym__closing_tag_html_block] = ACTIONS(2200), - [sym__closing_tag_html_block_newline] = ACTIONS(2200), - [sym_backslash_escape] = ACTIONS(2200), - [sym_entity_reference] = ACTIONS(2200), - [sym_numeric_character_reference] = ACTIONS(2200), - [sym_uri_autolink] = ACTIONS(2200), - [sym_email_autolink] = ACTIONS(2200), - [sym__whitespace_ge_2] = ACTIONS(2200), - [aux_sym__whitespace_token1] = ACTIONS(2202), - [sym__word_no_digit] = ACTIONS(2200), - [sym__digits] = ACTIONS(2200), - [aux_sym__newline_token1] = ACTIONS(2200), - [sym__block_quote_start] = ACTIONS(2200), - [sym__indented_chunk_start] = ACTIONS(2200), - [sym_atx_h1_marker] = ACTIONS(2200), - [sym_atx_h2_marker] = ACTIONS(2200), - [sym_atx_h3_marker] = ACTIONS(2200), - [sym_atx_h4_marker] = ACTIONS(2200), - [sym_atx_h5_marker] = ACTIONS(2200), - [sym_atx_h6_marker] = ACTIONS(2200), - [sym__thematic_break] = ACTIONS(2200), - [sym__list_marker_minus] = ACTIONS(2200), - [sym__list_marker_plus] = ACTIONS(2200), - [sym__list_marker_star] = ACTIONS(2200), - [sym__list_marker_parenthesis] = ACTIONS(2200), - [sym__list_marker_dot] = ACTIONS(2200), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2200), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2200), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2200), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2200), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2200), - [sym__fenced_code_block_start_backtick] = ACTIONS(2200), - [sym__fenced_code_block_start_tilde] = ACTIONS(2200), - [sym__blank_line_start] = ACTIONS(2200), - [sym__code_span_start] = ACTIONS(2200), - [sym__emphasis_open_star] = ACTIONS(2200), - [sym__emphasis_open_underscore] = ACTIONS(2200), - }, - [422] = { - [ts_builtin_sym_end] = ACTIONS(2218), + [431] = { + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), [anon_sym_BANG] = ACTIONS(2218), [anon_sym_DQUOTE] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(2218), @@ -68621,9 +69363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2218), [anon_sym__] = ACTIONS(2218), [anon_sym_BQUOTE] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), [anon_sym_TILDE] = ACTIONS(2218), [aux_sym__html_block_1_token1] = ACTIONS(2218), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2220), @@ -68646,6 +69386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2218), [sym__digits] = ACTIONS(2218), [aux_sym__newline_token1] = ACTIONS(2218), + [sym__block_close] = ACTIONS(2218), [sym__block_quote_start] = ACTIONS(2218), [sym__indented_chunk_start] = ACTIONS(2218), [sym_atx_h1_marker] = ACTIONS(2218), @@ -68671,9 +69412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(2218), [sym__emphasis_open_star] = ACTIONS(2218), [sym__emphasis_open_underscore] = ACTIONS(2218), - }, - [423] = { - [ts_builtin_sym_end] = ACTIONS(2222), + }, + [432] = { + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), [anon_sym_BANG] = ACTIONS(2222), [anon_sym_DQUOTE] = ACTIONS(2222), [anon_sym_POUND] = ACTIONS(2222), @@ -68702,9 +69444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2222), [anon_sym__] = ACTIONS(2222), [anon_sym_BQUOTE] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), [anon_sym_TILDE] = ACTIONS(2222), [aux_sym__html_block_1_token1] = ACTIONS(2222), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2224), @@ -68727,6 +69467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2222), [sym__digits] = ACTIONS(2222), [aux_sym__newline_token1] = ACTIONS(2222), + [sym__block_close] = ACTIONS(2222), [sym__block_quote_start] = ACTIONS(2222), [sym__indented_chunk_start] = ACTIONS(2222), [sym_atx_h1_marker] = ACTIONS(2222), @@ -68753,170 +69494,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2222), [sym__emphasis_open_underscore] = ACTIONS(2222), }, - [424] = { - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_COLON] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_EQ] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_QMARK] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_BSLASH] = ACTIONS(2154), - [anon_sym_RBRACK] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym__] = ACTIONS(2152), - [anon_sym_BQUOTE] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [aux_sym__html_block_1_token1] = ACTIONS(2152), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2154), - [anon_sym_LT_QMARK] = ACTIONS(2154), - [aux_sym__html_block_4_token1] = ACTIONS(2154), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2152), - [aux_sym__html_block_6_token1] = ACTIONS(2154), - [aux_sym__html_block_6_token2] = ACTIONS(2152), - [sym__open_tag_html_block] = ACTIONS(2152), - [sym__open_tag_html_block_newline] = ACTIONS(2152), - [sym__closing_tag_html_block] = ACTIONS(2152), - [sym__closing_tag_html_block_newline] = ACTIONS(2152), - [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(2152), - [aux_sym__whitespace_token1] = ACTIONS(2154), - [sym__word_no_digit] = ACTIONS(2152), - [sym__digits] = ACTIONS(2152), - [aux_sym__newline_token1] = ACTIONS(2152), - [sym__block_close] = ACTIONS(2152), - [sym__block_quote_start] = ACTIONS(2152), - [sym__indented_chunk_start] = ACTIONS(2152), - [sym_atx_h1_marker] = ACTIONS(2152), - [sym_atx_h2_marker] = ACTIONS(2152), - [sym_atx_h3_marker] = ACTIONS(2152), - [sym_atx_h4_marker] = ACTIONS(2152), - [sym_atx_h5_marker] = ACTIONS(2152), - [sym_atx_h6_marker] = ACTIONS(2152), - [sym__thematic_break] = ACTIONS(2152), - [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__list_marker_minus_dont_interrupt] = ACTIONS(2152), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2152), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2152), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2152), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2152), - [sym__fenced_code_block_start_backtick] = ACTIONS(2152), - [sym__fenced_code_block_start_tilde] = ACTIONS(2152), - [sym__blank_line_start] = ACTIONS(2152), - [sym__code_span_start] = ACTIONS(2152), - [sym__emphasis_open_star] = ACTIONS(2152), - [sym__emphasis_open_underscore] = ACTIONS(2152), - }, - [425] = { - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_RPAREN] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_DOT] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_COLON] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_EQ] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_BSLASH] = ACTIONS(2158), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym__] = ACTIONS(2156), - [anon_sym_BQUOTE] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [aux_sym__html_block_1_token1] = ACTIONS(2156), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2158), - [anon_sym_LT_QMARK] = ACTIONS(2158), - [aux_sym__html_block_4_token1] = ACTIONS(2158), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2156), - [aux_sym__html_block_6_token1] = ACTIONS(2158), - [aux_sym__html_block_6_token2] = ACTIONS(2156), - [sym__open_tag_html_block] = ACTIONS(2156), - [sym__open_tag_html_block_newline] = ACTIONS(2156), - [sym__closing_tag_html_block] = ACTIONS(2156), - [sym__closing_tag_html_block_newline] = ACTIONS(2156), - [sym_backslash_escape] = ACTIONS(2156), - [sym_entity_reference] = ACTIONS(2156), - [sym_numeric_character_reference] = ACTIONS(2156), - [sym_uri_autolink] = ACTIONS(2156), - [sym_email_autolink] = ACTIONS(2156), - [sym__whitespace_ge_2] = ACTIONS(2156), - [aux_sym__whitespace_token1] = ACTIONS(2158), - [sym__word_no_digit] = ACTIONS(2156), - [sym__digits] = ACTIONS(2156), - [aux_sym__newline_token1] = ACTIONS(2156), - [sym__block_close] = ACTIONS(2156), - [sym__block_quote_start] = ACTIONS(2156), - [sym__indented_chunk_start] = ACTIONS(2156), - [sym_atx_h1_marker] = ACTIONS(2156), - [sym_atx_h2_marker] = ACTIONS(2156), - [sym_atx_h3_marker] = ACTIONS(2156), - [sym_atx_h4_marker] = ACTIONS(2156), - [sym_atx_h5_marker] = ACTIONS(2156), - [sym_atx_h6_marker] = ACTIONS(2156), - [sym__thematic_break] = ACTIONS(2156), - [sym__list_marker_minus] = ACTIONS(2156), - [sym__list_marker_plus] = ACTIONS(2156), - [sym__list_marker_star] = ACTIONS(2156), - [sym__list_marker_parenthesis] = ACTIONS(2156), - [sym__list_marker_dot] = ACTIONS(2156), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2156), - [sym__fenced_code_block_start_backtick] = ACTIONS(2156), - [sym__fenced_code_block_start_tilde] = ACTIONS(2156), - [sym__blank_line_start] = ACTIONS(2156), - [sym__code_span_start] = ACTIONS(2156), - [sym__emphasis_open_star] = ACTIONS(2156), - [sym__emphasis_open_underscore] = ACTIONS(2156), + [433] = { + [ts_builtin_sym_end] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_COLON] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_EQ] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_BSLASH] = ACTIONS(2202), + [anon_sym_RBRACK] = ACTIONS(2200), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [aux_sym__html_block_1_token1] = ACTIONS(2200), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2202), + [anon_sym_LT_QMARK] = ACTIONS(2202), + [aux_sym__html_block_4_token1] = ACTIONS(2202), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2200), + [aux_sym__html_block_6_token1] = ACTIONS(2202), + [aux_sym__html_block_6_token2] = ACTIONS(2200), + [sym__open_tag_html_block] = ACTIONS(2200), + [sym__open_tag_html_block_newline] = ACTIONS(2200), + [sym__closing_tag_html_block] = ACTIONS(2200), + [sym__closing_tag_html_block_newline] = ACTIONS(2200), + [sym_backslash_escape] = ACTIONS(2200), + [sym_entity_reference] = ACTIONS(2200), + [sym_numeric_character_reference] = ACTIONS(2200), + [sym_uri_autolink] = ACTIONS(2200), + [sym_email_autolink] = ACTIONS(2200), + [sym__whitespace_ge_2] = ACTIONS(2200), + [aux_sym__whitespace_token1] = ACTIONS(2202), + [sym__word_no_digit] = ACTIONS(2200), + [sym__digits] = ACTIONS(2200), + [aux_sym__newline_token1] = ACTIONS(2200), + [sym__block_quote_start] = ACTIONS(2200), + [sym__indented_chunk_start] = ACTIONS(2200), + [sym_atx_h1_marker] = ACTIONS(2200), + [sym_atx_h2_marker] = ACTIONS(2200), + [sym_atx_h3_marker] = ACTIONS(2200), + [sym_atx_h4_marker] = ACTIONS(2200), + [sym_atx_h5_marker] = ACTIONS(2200), + [sym_atx_h6_marker] = ACTIONS(2200), + [sym__thematic_break] = ACTIONS(2200), + [sym__list_marker_minus] = ACTIONS(2200), + [sym__list_marker_plus] = ACTIONS(2200), + [sym__list_marker_star] = ACTIONS(2200), + [sym__list_marker_parenthesis] = ACTIONS(2200), + [sym__list_marker_dot] = ACTIONS(2200), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2200), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2200), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2200), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2200), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2200), + [sym__fenced_code_block_start_backtick] = ACTIONS(2200), + [sym__fenced_code_block_start_tilde] = ACTIONS(2200), + [sym__blank_line_start] = ACTIONS(2200), + [sym__code_span_start] = ACTIONS(2200), + [sym__emphasis_open_star] = ACTIONS(2200), + [sym__emphasis_open_underscore] = ACTIONS(2200), }, - [426] = { - [ts_builtin_sym_end] = ACTIONS(2226), + [434] = { + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), [anon_sym_BANG] = ACTIONS(2226), [anon_sym_DQUOTE] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(2226), @@ -68945,9 +69606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2226), [anon_sym__] = ACTIONS(2226), [anon_sym_BQUOTE] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), [anon_sym_TILDE] = ACTIONS(2226), [aux_sym__html_block_1_token1] = ACTIONS(2226), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2228), @@ -68970,6 +69629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2226), [sym__digits] = ACTIONS(2226), [aux_sym__newline_token1] = ACTIONS(2226), + [sym__block_close] = ACTIONS(2226), [sym__block_quote_start] = ACTIONS(2226), [sym__indented_chunk_start] = ACTIONS(2226), [sym_atx_h1_marker] = ACTIONS(2226), @@ -68996,250 +69656,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2226), [sym__emphasis_open_underscore] = ACTIONS(2226), }, - [427] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(400), - [sym_full_reference_link] = STATE(400), - [sym_collapsed_reference_link] = STATE(400), - [sym_inline_link] = STATE(400), - [sym_image] = STATE(400), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(400), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(400), - [sym__whitespace] = STATE(400), - [sym__word] = STATE(400), - [sym__text_inline_no_underscore] = STATE(400), - [sym__inline_element_no_newline_no_underscore] = STATE(400), - [aux_sym__inline_no_newline_no_underscore] = STATE(400), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(400), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(400), - [sym__code_span_no_newline] = STATE(400), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), + [435] = { + [ts_builtin_sym_end] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_COLON] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_QMARK] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_RBRACK] = ACTIONS(2230), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym__] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [aux_sym__html_block_1_token1] = ACTIONS(2230), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2232), + [anon_sym_LT_QMARK] = ACTIONS(2232), + [aux_sym__html_block_4_token1] = ACTIONS(2232), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2230), + [aux_sym__html_block_6_token1] = ACTIONS(2232), + [aux_sym__html_block_6_token2] = ACTIONS(2230), + [sym__open_tag_html_block] = ACTIONS(2230), + [sym__open_tag_html_block_newline] = ACTIONS(2230), + [sym__closing_tag_html_block] = ACTIONS(2230), + [sym__closing_tag_html_block_newline] = ACTIONS(2230), [sym_backslash_escape] = ACTIONS(2230), [sym_entity_reference] = ACTIONS(2230), [sym_numeric_character_reference] = ACTIONS(2230), [sym_uri_autolink] = ACTIONS(2230), [sym_email_autolink] = ACTIONS(2230), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(2230), + [aux_sym__whitespace_token1] = ACTIONS(2232), [sym__word_no_digit] = ACTIONS(2230), [sym__digits] = ACTIONS(2230), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - }, - [428] = { - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_QMARK] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_BSLASH] = ACTIONS(2206), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym__] = ACTIONS(2204), - [anon_sym_BQUOTE] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [aux_sym__html_block_1_token1] = ACTIONS(2204), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2206), - [anon_sym_LT_QMARK] = ACTIONS(2206), - [aux_sym__html_block_4_token1] = ACTIONS(2206), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2204), - [aux_sym__html_block_6_token1] = ACTIONS(2206), - [aux_sym__html_block_6_token2] = ACTIONS(2204), - [sym__open_tag_html_block] = ACTIONS(2204), - [sym__open_tag_html_block_newline] = ACTIONS(2204), - [sym__closing_tag_html_block] = ACTIONS(2204), - [sym__closing_tag_html_block_newline] = ACTIONS(2204), - [sym_backslash_escape] = ACTIONS(2204), - [sym_entity_reference] = ACTIONS(2204), - [sym_numeric_character_reference] = ACTIONS(2204), - [sym_uri_autolink] = ACTIONS(2204), - [sym_email_autolink] = ACTIONS(2204), - [sym__whitespace_ge_2] = ACTIONS(2204), - [aux_sym__whitespace_token1] = ACTIONS(2206), - [sym__word_no_digit] = ACTIONS(2204), - [sym__digits] = ACTIONS(2204), - [aux_sym__newline_token1] = ACTIONS(2204), - [sym__block_close] = ACTIONS(2204), - [sym__block_quote_start] = ACTIONS(2204), - [sym__indented_chunk_start] = ACTIONS(2204), - [sym_atx_h1_marker] = ACTIONS(2204), - [sym_atx_h2_marker] = ACTIONS(2204), - [sym_atx_h3_marker] = ACTIONS(2204), - [sym_atx_h4_marker] = ACTIONS(2204), - [sym_atx_h5_marker] = ACTIONS(2204), - [sym_atx_h6_marker] = ACTIONS(2204), - [sym__thematic_break] = ACTIONS(2204), - [sym__list_marker_minus] = ACTIONS(2204), - [sym__list_marker_plus] = ACTIONS(2204), - [sym__list_marker_star] = ACTIONS(2204), - [sym__list_marker_parenthesis] = ACTIONS(2204), - [sym__list_marker_dot] = ACTIONS(2204), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2204), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2204), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2204), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2204), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2204), - [sym__fenced_code_block_start_backtick] = ACTIONS(2204), - [sym__fenced_code_block_start_tilde] = ACTIONS(2204), - [sym__blank_line_start] = ACTIONS(2204), - [sym__code_span_start] = ACTIONS(2204), - [sym__emphasis_open_star] = ACTIONS(2204), - [sym__emphasis_open_underscore] = ACTIONS(2204), - }, - [429] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(397), - [sym_full_reference_link] = STATE(397), - [sym_collapsed_reference_link] = STATE(397), - [sym_inline_link] = STATE(397), - [sym_image] = STATE(397), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(397), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(397), - [sym__whitespace] = STATE(397), - [sym__word] = STATE(397), - [sym__text_inline_no_star] = STATE(397), - [sym__inline_element_no_newline_no_star] = STATE(397), - [aux_sym__inline_no_newline_no_star] = STATE(397), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(397), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(397), - [sym__code_span_no_newline] = STATE(397), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(2232), - [sym_entity_reference] = ACTIONS(2232), - [sym_numeric_character_reference] = ACTIONS(2232), - [sym_uri_autolink] = ACTIONS(2232), - [sym_email_autolink] = ACTIONS(2232), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2232), - [sym__digits] = ACTIONS(2232), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), + [aux_sym__newline_token1] = ACTIONS(2230), + [sym__block_quote_start] = ACTIONS(2230), + [sym__indented_chunk_start] = ACTIONS(2230), + [sym_atx_h1_marker] = ACTIONS(2230), + [sym_atx_h2_marker] = ACTIONS(2230), + [sym_atx_h3_marker] = ACTIONS(2230), + [sym_atx_h4_marker] = ACTIONS(2230), + [sym_atx_h5_marker] = ACTIONS(2230), + [sym_atx_h6_marker] = ACTIONS(2230), + [sym__thematic_break] = ACTIONS(2230), + [sym__list_marker_minus] = ACTIONS(2230), + [sym__list_marker_plus] = ACTIONS(2230), + [sym__list_marker_star] = ACTIONS(2230), + [sym__list_marker_parenthesis] = ACTIONS(2230), + [sym__list_marker_dot] = ACTIONS(2230), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2230), + [sym__fenced_code_block_start_backtick] = ACTIONS(2230), + [sym__fenced_code_block_start_tilde] = ACTIONS(2230), + [sym__blank_line_start] = ACTIONS(2230), + [sym__code_span_start] = ACTIONS(2230), + [sym__emphasis_open_star] = ACTIONS(2230), + [sym__emphasis_open_underscore] = ACTIONS(2230), }, - [430] = { + [436] = { + [ts_builtin_sym_end] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), [anon_sym_BANG] = ACTIONS(2218), [anon_sym_DQUOTE] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(2218), @@ -69268,9 +69769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2218), [anon_sym__] = ACTIONS(2218), [anon_sym_BQUOTE] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), [anon_sym_TILDE] = ACTIONS(2218), [aux_sym__html_block_1_token1] = ACTIONS(2218), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2220), @@ -69293,7 +69792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2218), [sym__digits] = ACTIONS(2218), [aux_sym__newline_token1] = ACTIONS(2218), - [sym__block_close] = ACTIONS(2218), [sym__block_quote_start] = ACTIONS(2218), [sym__indented_chunk_start] = ACTIONS(2218), [sym_atx_h1_marker] = ACTIONS(2218), @@ -69320,8 +69818,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2218), [sym__emphasis_open_underscore] = ACTIONS(2218), }, - [431] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), [anon_sym_BANG] = ACTIONS(2234), [anon_sym_DQUOTE] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(2234), @@ -69350,9 +69850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2234), [anon_sym__] = ACTIONS(2234), [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), [anon_sym_TILDE] = ACTIONS(2234), [aux_sym__html_block_1_token1] = ACTIONS(2234), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2236), @@ -69388,587 +69886,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_plus] = ACTIONS(2234), [sym__list_marker_star] = ACTIONS(2234), [sym__list_marker_parenthesis] = ACTIONS(2234), - [sym__list_marker_dot] = ACTIONS(2234), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2234), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2234), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2234), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2234), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2234), - [sym__fenced_code_block_start_backtick] = ACTIONS(2234), - [sym__fenced_code_block_start_tilde] = ACTIONS(2234), - [sym__blank_line_start] = ACTIONS(2234), - [sym__code_span_start] = ACTIONS(2234), - [sym__emphasis_open_star] = ACTIONS(2234), - [sym__emphasis_open_underscore] = ACTIONS(2234), - }, - [432] = { - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_COLON] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2240), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2238), - [anon_sym__] = ACTIONS(2238), - [anon_sym_BQUOTE] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [aux_sym__html_block_1_token1] = ACTIONS(2238), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2240), - [anon_sym_LT_QMARK] = ACTIONS(2240), - [aux_sym__html_block_4_token1] = ACTIONS(2240), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2238), - [aux_sym__html_block_6_token1] = ACTIONS(2240), - [aux_sym__html_block_6_token2] = ACTIONS(2238), - [sym__open_tag_html_block] = ACTIONS(2238), - [sym__open_tag_html_block_newline] = ACTIONS(2238), - [sym__closing_tag_html_block] = ACTIONS(2238), - [sym__closing_tag_html_block_newline] = ACTIONS(2238), - [sym_backslash_escape] = ACTIONS(2238), - [sym_entity_reference] = ACTIONS(2238), - [sym_numeric_character_reference] = ACTIONS(2238), - [sym_uri_autolink] = ACTIONS(2238), - [sym_email_autolink] = ACTIONS(2238), - [sym__whitespace_ge_2] = ACTIONS(2238), - [aux_sym__whitespace_token1] = ACTIONS(2240), - [sym__word_no_digit] = ACTIONS(2238), - [sym__digits] = ACTIONS(2238), - [aux_sym__newline_token1] = ACTIONS(2238), - [sym__block_close] = ACTIONS(2238), - [sym__block_quote_start] = ACTIONS(2238), - [sym__indented_chunk_start] = ACTIONS(2238), - [sym_atx_h1_marker] = ACTIONS(2238), - [sym_atx_h2_marker] = ACTIONS(2238), - [sym_atx_h3_marker] = ACTIONS(2238), - [sym_atx_h4_marker] = ACTIONS(2238), - [sym_atx_h5_marker] = ACTIONS(2238), - [sym_atx_h6_marker] = ACTIONS(2238), - [sym__thematic_break] = ACTIONS(2238), - [sym__list_marker_minus] = ACTIONS(2238), - [sym__list_marker_plus] = ACTIONS(2238), - [sym__list_marker_star] = ACTIONS(2238), - [sym__list_marker_parenthesis] = ACTIONS(2238), - [sym__list_marker_dot] = ACTIONS(2238), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2238), - [sym__fenced_code_block_start_backtick] = ACTIONS(2238), - [sym__fenced_code_block_start_tilde] = ACTIONS(2238), - [sym__blank_line_start] = ACTIONS(2238), - [sym__code_span_start] = ACTIONS(2238), - [sym__emphasis_open_star] = ACTIONS(2238), - [sym__emphasis_open_underscore] = ACTIONS(2238), - }, - [433] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(388), - [sym_full_reference_link] = STATE(388), - [sym_collapsed_reference_link] = STATE(388), - [sym_inline_link] = STATE(388), - [sym_image] = STATE(388), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(388), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(388), - [sym__whitespace] = STATE(388), - [sym__word] = STATE(388), - [sym__text_inline_no_underscore] = STATE(388), - [sym__inline_element_no_newline_no_underscore] = STATE(388), - [aux_sym__inline_no_newline_no_underscore] = STATE(388), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(388), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(388), - [sym__code_span_no_newline] = STATE(388), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(2242), - [sym_entity_reference] = ACTIONS(2242), - [sym_numeric_character_reference] = ACTIONS(2242), - [sym_uri_autolink] = ACTIONS(2242), - [sym_email_autolink] = ACTIONS(2242), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2242), - [sym__digits] = ACTIONS(2242), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - }, - [434] = { - [sym__link_text] = STATE(2200), - [sym__link_text_non_empty] = STATE(829), - [sym_shortcut_link] = STATE(386), - [sym_full_reference_link] = STATE(386), - [sym_collapsed_reference_link] = STATE(386), - [sym_inline_link] = STATE(386), - [sym_image] = STATE(386), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(827), - [sym_html_tag] = STATE(386), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(386), - [sym__whitespace] = STATE(386), - [sym__word] = STATE(386), - [sym__text_inline_no_underscore] = STATE(386), - [sym__inline_element_no_newline_no_underscore] = STATE(386), - [aux_sym__inline_no_newline_no_underscore] = STATE(386), - [sym__emphasis_star_no_newline] = STATE(904), - [sym__strong_emphasis_star_no_newline] = STATE(386), - [sym__emphasis_underscore_no_newline] = STATE(904), - [sym__strong_emphasis_underscore_no_newline] = STATE(386), - [sym__code_span_no_newline] = STATE(386), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym__] = ACTIONS(743), - [anon_sym_BQUOTE] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1920), - [anon_sym_LT_QMARK] = ACTIONS(1922), - [aux_sym__html_block_4_token1] = ACTIONS(1924), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(2244), - [sym_entity_reference] = ACTIONS(2244), - [sym_numeric_character_reference] = ACTIONS(2244), - [sym_uri_autolink] = ACTIONS(2244), - [sym_email_autolink] = ACTIONS(2244), - [sym__whitespace_ge_2] = ACTIONS(1930), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2244), - [sym__digits] = ACTIONS(2244), - [sym__code_span_start] = ACTIONS(1932), - [sym__emphasis_open_star] = ACTIONS(1934), - [sym__emphasis_open_underscore] = ACTIONS(1936), - }, - [435] = { - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_DOLLAR] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_DOT] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_COLON] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2226), - [anon_sym_QMARK] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_BSLASH] = ACTIONS(2228), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_CARET] = ACTIONS(2226), - [anon_sym__] = ACTIONS(2226), - [anon_sym_BQUOTE] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2226), - [aux_sym__html_block_1_token1] = ACTIONS(2226), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2228), - [anon_sym_LT_QMARK] = ACTIONS(2228), - [aux_sym__html_block_4_token1] = ACTIONS(2228), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2226), - [aux_sym__html_block_6_token1] = ACTIONS(2228), - [aux_sym__html_block_6_token2] = ACTIONS(2226), - [sym__open_tag_html_block] = ACTIONS(2226), - [sym__open_tag_html_block_newline] = ACTIONS(2226), - [sym__closing_tag_html_block] = ACTIONS(2226), - [sym__closing_tag_html_block_newline] = ACTIONS(2226), - [sym_backslash_escape] = ACTIONS(2226), - [sym_entity_reference] = ACTIONS(2226), - [sym_numeric_character_reference] = ACTIONS(2226), - [sym_uri_autolink] = ACTIONS(2226), - [sym_email_autolink] = ACTIONS(2226), - [sym__whitespace_ge_2] = ACTIONS(2226), - [aux_sym__whitespace_token1] = ACTIONS(2228), - [sym__word_no_digit] = ACTIONS(2226), - [sym__digits] = ACTIONS(2226), - [aux_sym__newline_token1] = ACTIONS(2226), - [sym__block_close] = ACTIONS(2226), - [sym__block_quote_start] = ACTIONS(2226), - [sym__indented_chunk_start] = ACTIONS(2226), - [sym_atx_h1_marker] = ACTIONS(2226), - [sym_atx_h2_marker] = ACTIONS(2226), - [sym_atx_h3_marker] = ACTIONS(2226), - [sym_atx_h4_marker] = ACTIONS(2226), - [sym_atx_h5_marker] = ACTIONS(2226), - [sym_atx_h6_marker] = ACTIONS(2226), - [sym__thematic_break] = ACTIONS(2226), - [sym__list_marker_minus] = ACTIONS(2226), - [sym__list_marker_plus] = ACTIONS(2226), - [sym__list_marker_star] = ACTIONS(2226), - [sym__list_marker_parenthesis] = ACTIONS(2226), - [sym__list_marker_dot] = ACTIONS(2226), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2226), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2226), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2226), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2226), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2226), - [sym__fenced_code_block_start_backtick] = ACTIONS(2226), - [sym__fenced_code_block_start_tilde] = ACTIONS(2226), - [sym__blank_line_start] = ACTIONS(2226), - [sym__code_span_start] = ACTIONS(2226), - [sym__emphasis_open_star] = ACTIONS(2226), - [sym__emphasis_open_underscore] = ACTIONS(2226), - }, - [436] = { - [ts_builtin_sym_end] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_COLON] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2240), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2238), - [anon_sym__] = ACTIONS(2238), - [anon_sym_BQUOTE] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [aux_sym__html_block_1_token1] = ACTIONS(2238), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2240), - [anon_sym_LT_QMARK] = ACTIONS(2240), - [aux_sym__html_block_4_token1] = ACTIONS(2240), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2238), - [aux_sym__html_block_6_token1] = ACTIONS(2240), - [aux_sym__html_block_6_token2] = ACTIONS(2238), - [sym__open_tag_html_block] = ACTIONS(2238), - [sym__open_tag_html_block_newline] = ACTIONS(2238), - [sym__closing_tag_html_block] = ACTIONS(2238), - [sym__closing_tag_html_block_newline] = ACTIONS(2238), - [sym_backslash_escape] = ACTIONS(2238), - [sym_entity_reference] = ACTIONS(2238), - [sym_numeric_character_reference] = ACTIONS(2238), - [sym_uri_autolink] = ACTIONS(2238), - [sym_email_autolink] = ACTIONS(2238), - [sym__whitespace_ge_2] = ACTIONS(2238), - [aux_sym__whitespace_token1] = ACTIONS(2240), - [sym__word_no_digit] = ACTIONS(2238), - [sym__digits] = ACTIONS(2238), - [aux_sym__newline_token1] = ACTIONS(2238), - [sym__block_quote_start] = ACTIONS(2238), - [sym__indented_chunk_start] = ACTIONS(2238), - [sym_atx_h1_marker] = ACTIONS(2238), - [sym_atx_h2_marker] = ACTIONS(2238), - [sym_atx_h3_marker] = ACTIONS(2238), - [sym_atx_h4_marker] = ACTIONS(2238), - [sym_atx_h5_marker] = ACTIONS(2238), - [sym_atx_h6_marker] = ACTIONS(2238), - [sym__thematic_break] = ACTIONS(2238), - [sym__list_marker_minus] = ACTIONS(2238), - [sym__list_marker_plus] = ACTIONS(2238), - [sym__list_marker_star] = ACTIONS(2238), - [sym__list_marker_parenthesis] = ACTIONS(2238), - [sym__list_marker_dot] = ACTIONS(2238), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2238), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2238), - [sym__fenced_code_block_start_backtick] = ACTIONS(2238), - [sym__fenced_code_block_start_tilde] = ACTIONS(2238), - [sym__blank_line_start] = ACTIONS(2238), - [sym__code_span_start] = ACTIONS(2238), - [sym__emphasis_open_star] = ACTIONS(2238), - [sym__emphasis_open_underscore] = ACTIONS(2238), - }, - [437] = { - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_DOT] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_COLON] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_EQ] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2176), - [anon_sym_QMARK] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_BSLASH] = ACTIONS(2178), - [anon_sym_RBRACK] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym__] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [aux_sym__html_block_1_token1] = ACTIONS(2176), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2178), - [anon_sym_LT_QMARK] = ACTIONS(2178), - [aux_sym__html_block_4_token1] = ACTIONS(2178), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2176), - [aux_sym__html_block_6_token1] = ACTIONS(2178), - [aux_sym__html_block_6_token2] = ACTIONS(2176), - [sym__open_tag_html_block] = ACTIONS(2176), - [sym__open_tag_html_block_newline] = ACTIONS(2176), - [sym__closing_tag_html_block] = ACTIONS(2176), - [sym__closing_tag_html_block_newline] = ACTIONS(2176), - [sym_backslash_escape] = ACTIONS(2176), - [sym_entity_reference] = ACTIONS(2176), - [sym_numeric_character_reference] = ACTIONS(2176), - [sym_uri_autolink] = ACTIONS(2176), - [sym_email_autolink] = ACTIONS(2176), - [sym__whitespace_ge_2] = ACTIONS(2176), - [aux_sym__whitespace_token1] = ACTIONS(2178), - [sym__word_no_digit] = ACTIONS(2176), - [sym__digits] = ACTIONS(2176), - [aux_sym__newline_token1] = ACTIONS(2176), - [sym__block_close] = ACTIONS(2176), - [sym__block_quote_start] = ACTIONS(2176), - [sym__indented_chunk_start] = ACTIONS(2176), - [sym_atx_h1_marker] = ACTIONS(2176), - [sym_atx_h2_marker] = ACTIONS(2176), - [sym_atx_h3_marker] = ACTIONS(2176), - [sym_atx_h4_marker] = ACTIONS(2176), - [sym_atx_h5_marker] = ACTIONS(2176), - [sym_atx_h6_marker] = ACTIONS(2176), - [sym__thematic_break] = ACTIONS(2176), - [sym__list_marker_minus] = ACTIONS(2176), - [sym__list_marker_plus] = ACTIONS(2176), - [sym__list_marker_star] = ACTIONS(2176), - [sym__list_marker_parenthesis] = ACTIONS(2176), - [sym__list_marker_dot] = ACTIONS(2176), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2176), - [sym__fenced_code_block_start_backtick] = ACTIONS(2176), - [sym__fenced_code_block_start_tilde] = ACTIONS(2176), - [sym__blank_line_start] = ACTIONS(2176), - [sym__code_span_start] = ACTIONS(2176), - [sym__emphasis_open_star] = ACTIONS(2176), - [sym__emphasis_open_underscore] = ACTIONS(2176), - }, - [438] = { - [sym__link_text] = STATE(2202), - [sym__link_text_non_empty] = STATE(733), - [sym_shortcut_link] = STATE(403), - [sym_full_reference_link] = STATE(403), - [sym_collapsed_reference_link] = STATE(403), - [sym_inline_link] = STATE(403), - [sym_image] = STATE(403), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(735), - [sym_html_tag] = STATE(403), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(403), - [sym__whitespace] = STATE(403), - [sym__word] = STATE(403), - [sym__text_inline_no_star] = STATE(403), - [sym__inline_element_no_newline_no_star] = STATE(403), - [aux_sym__inline_no_newline_no_star] = STATE(403), - [sym__emphasis_star_no_newline] = STATE(895), - [sym__strong_emphasis_star_no_newline] = STATE(403), - [sym__emphasis_underscore_no_newline] = STATE(895), - [sym__strong_emphasis_underscore_no_newline] = STATE(403), - [sym__code_span_no_newline] = STATE(403), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_POUND] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [anon_sym__] = ACTIONS(697), - [anon_sym_BQUOTE] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1892), - [anon_sym_LT_QMARK] = ACTIONS(1894), - [aux_sym__html_block_4_token1] = ACTIONS(1896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), - [sym_backslash_escape] = ACTIONS(2246), - [sym_entity_reference] = ACTIONS(2246), - [sym_numeric_character_reference] = ACTIONS(2246), - [sym_uri_autolink] = ACTIONS(2246), - [sym_email_autolink] = ACTIONS(2246), - [sym__whitespace_ge_2] = ACTIONS(1902), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2246), - [sym__digits] = ACTIONS(2246), - [sym__code_span_start] = ACTIONS(1904), - [sym__emphasis_open_star] = ACTIONS(1906), - [sym__emphasis_open_underscore] = ACTIONS(1908), + [sym__list_marker_dot] = ACTIONS(2234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2234), + [sym__fenced_code_block_start_backtick] = ACTIONS(2234), + [sym__fenced_code_block_start_tilde] = ACTIONS(2234), + [sym__blank_line_start] = ACTIONS(2234), + [sym__code_span_start] = ACTIONS(2234), + [sym__emphasis_open_star] = ACTIONS(2234), + [sym__emphasis_open_underscore] = ACTIONS(2234), }, - [439] = { + [438] = { + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), [anon_sym_BANG] = ACTIONS(2234), [anon_sym_DQUOTE] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(2234), @@ -69997,9 +69930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2234), [anon_sym__] = ACTIONS(2234), [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), [anon_sym_TILDE] = ACTIONS(2234), [aux_sym__html_block_1_token1] = ACTIONS(2234), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2236), @@ -70049,1060 +69980,658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2234), [sym__emphasis_open_underscore] = ACTIONS(2234), }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_DOT] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_EQ] = ACTIONS(2222), + [anon_sym_GT] = ACTIONS(2222), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_BSLASH] = ACTIONS(2224), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym__] = ACTIONS(2222), + [anon_sym_BQUOTE] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2222), + [aux_sym__html_block_1_token1] = ACTIONS(2222), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2224), + [anon_sym_LT_QMARK] = ACTIONS(2224), + [aux_sym__html_block_4_token1] = ACTIONS(2224), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2222), + [aux_sym__html_block_6_token1] = ACTIONS(2224), + [aux_sym__html_block_6_token2] = ACTIONS(2222), + [sym__open_tag_html_block] = ACTIONS(2222), + [sym__open_tag_html_block_newline] = ACTIONS(2222), + [sym__closing_tag_html_block] = ACTIONS(2222), + [sym__closing_tag_html_block_newline] = ACTIONS(2222), + [sym_backslash_escape] = ACTIONS(2222), + [sym_entity_reference] = ACTIONS(2222), + [sym_numeric_character_reference] = ACTIONS(2222), + [sym_uri_autolink] = ACTIONS(2222), + [sym_email_autolink] = ACTIONS(2222), + [sym__whitespace_ge_2] = ACTIONS(2222), + [aux_sym__whitespace_token1] = ACTIONS(2224), + [sym__word_no_digit] = ACTIONS(2222), + [sym__digits] = ACTIONS(2222), + [aux_sym__newline_token1] = ACTIONS(2222), + [sym__block_quote_start] = ACTIONS(2222), + [sym__indented_chunk_start] = ACTIONS(2222), + [sym_atx_h1_marker] = ACTIONS(2222), + [sym_atx_h2_marker] = ACTIONS(2222), + [sym_atx_h3_marker] = ACTIONS(2222), + [sym_atx_h4_marker] = ACTIONS(2222), + [sym_atx_h5_marker] = ACTIONS(2222), + [sym_atx_h6_marker] = ACTIONS(2222), + [sym__thematic_break] = ACTIONS(2222), + [sym__list_marker_minus] = ACTIONS(2222), + [sym__list_marker_plus] = ACTIONS(2222), + [sym__list_marker_star] = ACTIONS(2222), + [sym__list_marker_parenthesis] = ACTIONS(2222), + [sym__list_marker_dot] = ACTIONS(2222), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2222), + [sym__fenced_code_block_start_backtick] = ACTIONS(2222), + [sym__fenced_code_block_start_tilde] = ACTIONS(2222), + [sym__blank_line_start] = ACTIONS(2222), + [sym__code_span_start] = ACTIONS(2222), + [sym__emphasis_open_star] = ACTIONS(2222), + [sym__emphasis_open_underscore] = ACTIONS(2222), + }, [440] = { - [anon_sym_BANG] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_PERCENT] = ACTIONS(2248), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_COMMA] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_DOT] = ACTIONS(2248), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_QMARK] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2248), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_RBRACK] = ACTIONS(2248), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym__] = ACTIONS(2248), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_TILDE] = ACTIONS(2248), - [aux_sym__html_block_1_token1] = ACTIONS(2248), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2250), - [anon_sym_LT_QMARK] = ACTIONS(2250), - [aux_sym__html_block_4_token1] = ACTIONS(2250), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2248), - [aux_sym__html_block_6_token1] = ACTIONS(2250), - [aux_sym__html_block_6_token2] = ACTIONS(2248), - [sym__open_tag_html_block] = ACTIONS(2248), - [sym__open_tag_html_block_newline] = ACTIONS(2248), - [sym__closing_tag_html_block] = ACTIONS(2248), - [sym__closing_tag_html_block_newline] = ACTIONS(2248), - [sym_backslash_escape] = ACTIONS(2248), - [sym_entity_reference] = ACTIONS(2248), - [sym_numeric_character_reference] = ACTIONS(2248), - [sym_uri_autolink] = ACTIONS(2248), - [sym_email_autolink] = ACTIONS(2248), - [sym__whitespace_ge_2] = ACTIONS(2248), - [aux_sym__whitespace_token1] = ACTIONS(2250), - [sym__word_no_digit] = ACTIONS(2248), - [sym__digits] = ACTIONS(2248), - [aux_sym__newline_token1] = ACTIONS(2248), - [sym__block_close] = ACTIONS(2248), - [sym__block_quote_start] = ACTIONS(2248), - [sym__indented_chunk_start] = ACTIONS(2248), - [sym_atx_h1_marker] = ACTIONS(2248), - [sym_atx_h2_marker] = ACTIONS(2248), - [sym_atx_h3_marker] = ACTIONS(2248), - [sym_atx_h4_marker] = ACTIONS(2248), - [sym_atx_h5_marker] = ACTIONS(2248), - [sym_atx_h6_marker] = ACTIONS(2248), - [sym__thematic_break] = ACTIONS(2248), - [sym__list_marker_minus] = ACTIONS(2248), - [sym__list_marker_plus] = ACTIONS(2248), - [sym__list_marker_star] = ACTIONS(2248), - [sym__list_marker_parenthesis] = ACTIONS(2248), - [sym__list_marker_dot] = ACTIONS(2248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2248), - [sym__fenced_code_block_start_backtick] = ACTIONS(2248), - [sym__fenced_code_block_start_tilde] = ACTIONS(2248), - [sym__blank_line_start] = ACTIONS(2248), - [sym__code_span_start] = ACTIONS(2248), - [sym__emphasis_open_star] = ACTIONS(2248), - [sym__emphasis_open_underscore] = ACTIONS(2248), + [ts_builtin_sym_end] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_COLON] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(2214), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_QMARK] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_BSLASH] = ACTIONS(2216), + [anon_sym_RBRACK] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym__] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [aux_sym__html_block_1_token1] = ACTIONS(2214), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2216), + [anon_sym_LT_QMARK] = ACTIONS(2216), + [aux_sym__html_block_4_token1] = ACTIONS(2216), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2214), + [aux_sym__html_block_6_token1] = ACTIONS(2216), + [aux_sym__html_block_6_token2] = ACTIONS(2214), + [sym__open_tag_html_block] = ACTIONS(2214), + [sym__open_tag_html_block_newline] = ACTIONS(2214), + [sym__closing_tag_html_block] = ACTIONS(2214), + [sym__closing_tag_html_block_newline] = ACTIONS(2214), + [sym_backslash_escape] = ACTIONS(2214), + [sym_entity_reference] = ACTIONS(2214), + [sym_numeric_character_reference] = ACTIONS(2214), + [sym_uri_autolink] = ACTIONS(2214), + [sym_email_autolink] = ACTIONS(2214), + [sym__whitespace_ge_2] = ACTIONS(2214), + [aux_sym__whitespace_token1] = ACTIONS(2216), + [sym__word_no_digit] = ACTIONS(2214), + [sym__digits] = ACTIONS(2214), + [aux_sym__newline_token1] = ACTIONS(2214), + [sym__block_quote_start] = ACTIONS(2214), + [sym__indented_chunk_start] = ACTIONS(2214), + [sym_atx_h1_marker] = ACTIONS(2214), + [sym_atx_h2_marker] = ACTIONS(2214), + [sym_atx_h3_marker] = ACTIONS(2214), + [sym_atx_h4_marker] = ACTIONS(2214), + [sym_atx_h5_marker] = ACTIONS(2214), + [sym_atx_h6_marker] = ACTIONS(2214), + [sym__thematic_break] = ACTIONS(2214), + [sym__list_marker_minus] = ACTIONS(2214), + [sym__list_marker_plus] = ACTIONS(2214), + [sym__list_marker_star] = ACTIONS(2214), + [sym__list_marker_parenthesis] = ACTIONS(2214), + [sym__list_marker_dot] = ACTIONS(2214), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2214), + [sym__fenced_code_block_start_backtick] = ACTIONS(2214), + [sym__fenced_code_block_start_tilde] = ACTIONS(2214), + [sym__blank_line_start] = ACTIONS(2214), + [sym__code_span_start] = ACTIONS(2214), + [sym__emphasis_open_star] = ACTIONS(2214), + [sym__emphasis_open_underscore] = ACTIONS(2214), }, [441] = { - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_PERCENT] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(2180), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_COMMA] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_DOT] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_COLON] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_QMARK] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_BSLASH] = ACTIONS(2182), - [anon_sym_RBRACK] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym__] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [aux_sym__html_block_1_token1] = ACTIONS(2180), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2182), - [anon_sym_LT_QMARK] = ACTIONS(2182), - [aux_sym__html_block_4_token1] = ACTIONS(2182), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2180), - [aux_sym__html_block_6_token1] = ACTIONS(2182), - [aux_sym__html_block_6_token2] = ACTIONS(2180), - [sym__open_tag_html_block] = ACTIONS(2180), - [sym__open_tag_html_block_newline] = ACTIONS(2180), - [sym__closing_tag_html_block] = ACTIONS(2180), - [sym__closing_tag_html_block_newline] = ACTIONS(2180), - [sym_backslash_escape] = ACTIONS(2180), - [sym_entity_reference] = ACTIONS(2180), - [sym_numeric_character_reference] = ACTIONS(2180), - [sym_uri_autolink] = ACTIONS(2180), - [sym_email_autolink] = ACTIONS(2180), - [sym__whitespace_ge_2] = ACTIONS(2180), - [aux_sym__whitespace_token1] = ACTIONS(2182), - [sym__word_no_digit] = ACTIONS(2180), - [sym__digits] = ACTIONS(2180), - [aux_sym__newline_token1] = ACTIONS(2180), - [sym__block_close] = ACTIONS(2180), - [sym__block_quote_start] = ACTIONS(2180), - [sym__indented_chunk_start] = ACTIONS(2180), - [sym_atx_h1_marker] = ACTIONS(2180), - [sym_atx_h2_marker] = ACTIONS(2180), - [sym_atx_h3_marker] = ACTIONS(2180), - [sym_atx_h4_marker] = ACTIONS(2180), - [sym_atx_h5_marker] = ACTIONS(2180), - [sym_atx_h6_marker] = ACTIONS(2180), - [sym__thematic_break] = ACTIONS(2180), - [sym__list_marker_minus] = ACTIONS(2180), - [sym__list_marker_plus] = ACTIONS(2180), - [sym__list_marker_star] = ACTIONS(2180), - [sym__list_marker_parenthesis] = ACTIONS(2180), - [sym__list_marker_dot] = ACTIONS(2180), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2180), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2180), - [sym__fenced_code_block_start_backtick] = ACTIONS(2180), - [sym__fenced_code_block_start_tilde] = ACTIONS(2180), - [sym__blank_line_start] = ACTIONS(2180), - [sym__code_span_start] = ACTIONS(2180), - [sym__emphasis_open_star] = ACTIONS(2180), - [sym__emphasis_open_underscore] = ACTIONS(2180), - }, - [442] = { - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_QMARK] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_BSLASH] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [aux_sym__html_block_1_token1] = ACTIONS(2184), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2186), - [anon_sym_LT_QMARK] = ACTIONS(2186), - [aux_sym__html_block_4_token1] = ACTIONS(2186), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2184), - [aux_sym__html_block_6_token1] = ACTIONS(2186), - [aux_sym__html_block_6_token2] = ACTIONS(2184), - [sym__open_tag_html_block] = ACTIONS(2184), - [sym__open_tag_html_block_newline] = ACTIONS(2184), - [sym__closing_tag_html_block] = ACTIONS(2184), - [sym__closing_tag_html_block_newline] = ACTIONS(2184), - [sym_backslash_escape] = ACTIONS(2184), - [sym_entity_reference] = ACTIONS(2184), - [sym_numeric_character_reference] = ACTIONS(2184), - [sym_uri_autolink] = ACTIONS(2184), - [sym_email_autolink] = ACTIONS(2184), - [sym__whitespace_ge_2] = ACTIONS(2184), - [aux_sym__whitespace_token1] = ACTIONS(2186), - [sym__word_no_digit] = ACTIONS(2184), - [sym__digits] = ACTIONS(2184), - [aux_sym__newline_token1] = ACTIONS(2184), - [sym__block_close] = ACTIONS(2184), - [sym__block_quote_start] = ACTIONS(2184), - [sym__indented_chunk_start] = ACTIONS(2184), - [sym_atx_h1_marker] = ACTIONS(2184), - [sym_atx_h2_marker] = ACTIONS(2184), - [sym_atx_h3_marker] = ACTIONS(2184), - [sym_atx_h4_marker] = ACTIONS(2184), - [sym_atx_h5_marker] = ACTIONS(2184), - [sym_atx_h6_marker] = ACTIONS(2184), - [sym__thematic_break] = ACTIONS(2184), - [sym__list_marker_minus] = ACTIONS(2184), - [sym__list_marker_plus] = ACTIONS(2184), - [sym__list_marker_star] = ACTIONS(2184), - [sym__list_marker_parenthesis] = ACTIONS(2184), - [sym__list_marker_dot] = ACTIONS(2184), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2184), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2184), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2184), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2184), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2184), - [sym__fenced_code_block_start_backtick] = ACTIONS(2184), - [sym__fenced_code_block_start_tilde] = ACTIONS(2184), - [sym__blank_line_start] = ACTIONS(2184), - [sym__code_span_start] = ACTIONS(2184), - [sym__emphasis_open_star] = ACTIONS(2184), - [sym__emphasis_open_underscore] = ACTIONS(2184), - }, - [443] = { - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_POUND] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_COLON] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH] = ACTIONS(2162), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym__] = ACTIONS(2160), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [aux_sym__html_block_1_token1] = ACTIONS(2160), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2162), - [anon_sym_LT_QMARK] = ACTIONS(2162), - [aux_sym__html_block_4_token1] = ACTIONS(2162), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2160), - [aux_sym__html_block_6_token1] = ACTIONS(2162), - [aux_sym__html_block_6_token2] = ACTIONS(2160), - [sym__open_tag_html_block] = ACTIONS(2160), - [sym__open_tag_html_block_newline] = ACTIONS(2160), - [sym__closing_tag_html_block] = ACTIONS(2160), - [sym__closing_tag_html_block_newline] = ACTIONS(2160), - [sym_backslash_escape] = ACTIONS(2160), - [sym_entity_reference] = ACTIONS(2160), - [sym_numeric_character_reference] = ACTIONS(2160), - [sym_uri_autolink] = ACTIONS(2160), - [sym_email_autolink] = ACTIONS(2160), - [sym__whitespace_ge_2] = ACTIONS(2160), - [aux_sym__whitespace_token1] = ACTIONS(2162), - [sym__word_no_digit] = ACTIONS(2160), - [sym__digits] = ACTIONS(2160), - [aux_sym__newline_token1] = ACTIONS(2160), - [sym__block_close] = ACTIONS(2160), - [sym__block_quote_start] = ACTIONS(2160), - [sym__indented_chunk_start] = ACTIONS(2160), - [sym_atx_h1_marker] = ACTIONS(2160), - [sym_atx_h2_marker] = ACTIONS(2160), - [sym_atx_h3_marker] = ACTIONS(2160), - [sym_atx_h4_marker] = ACTIONS(2160), - [sym_atx_h5_marker] = ACTIONS(2160), - [sym_atx_h6_marker] = ACTIONS(2160), - [sym__thematic_break] = ACTIONS(2160), - [sym__list_marker_minus] = ACTIONS(2160), - [sym__list_marker_plus] = ACTIONS(2160), - [sym__list_marker_star] = ACTIONS(2160), - [sym__list_marker_parenthesis] = ACTIONS(2160), - [sym__list_marker_dot] = ACTIONS(2160), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2160), - [sym__fenced_code_block_start_backtick] = ACTIONS(2160), - [sym__fenced_code_block_start_tilde] = ACTIONS(2160), - [sym__blank_line_start] = ACTIONS(2160), - [sym__code_span_start] = ACTIONS(2160), - [sym__emphasis_open_star] = ACTIONS(2160), - [sym__emphasis_open_underscore] = ACTIONS(2160), - }, - [444] = { - [ts_builtin_sym_end] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_PERCENT] = ACTIONS(2248), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_COMMA] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_DOT] = ACTIONS(2248), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_QMARK] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2248), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_RBRACK] = ACTIONS(2248), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym__] = ACTIONS(2248), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_TILDE] = ACTIONS(2248), - [aux_sym__html_block_1_token1] = ACTIONS(2248), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2250), - [anon_sym_LT_QMARK] = ACTIONS(2250), - [aux_sym__html_block_4_token1] = ACTIONS(2250), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2248), - [aux_sym__html_block_6_token1] = ACTIONS(2250), - [aux_sym__html_block_6_token2] = ACTIONS(2248), - [sym__open_tag_html_block] = ACTIONS(2248), - [sym__open_tag_html_block_newline] = ACTIONS(2248), - [sym__closing_tag_html_block] = ACTIONS(2248), - [sym__closing_tag_html_block_newline] = ACTIONS(2248), - [sym_backslash_escape] = ACTIONS(2248), - [sym_entity_reference] = ACTIONS(2248), - [sym_numeric_character_reference] = ACTIONS(2248), - [sym_uri_autolink] = ACTIONS(2248), - [sym_email_autolink] = ACTIONS(2248), - [sym__whitespace_ge_2] = ACTIONS(2248), - [aux_sym__whitespace_token1] = ACTIONS(2250), - [sym__word_no_digit] = ACTIONS(2248), - [sym__digits] = ACTIONS(2248), - [aux_sym__newline_token1] = ACTIONS(2248), - [sym__block_quote_start] = ACTIONS(2248), - [sym__indented_chunk_start] = ACTIONS(2248), - [sym_atx_h1_marker] = ACTIONS(2248), - [sym_atx_h2_marker] = ACTIONS(2248), - [sym_atx_h3_marker] = ACTIONS(2248), - [sym_atx_h4_marker] = ACTIONS(2248), - [sym_atx_h5_marker] = ACTIONS(2248), - [sym_atx_h6_marker] = ACTIONS(2248), - [sym__thematic_break] = ACTIONS(2248), - [sym__list_marker_minus] = ACTIONS(2248), - [sym__list_marker_plus] = ACTIONS(2248), - [sym__list_marker_star] = ACTIONS(2248), - [sym__list_marker_parenthesis] = ACTIONS(2248), - [sym__list_marker_dot] = ACTIONS(2248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2248), - [sym__fenced_code_block_start_backtick] = ACTIONS(2248), - [sym__fenced_code_block_start_tilde] = ACTIONS(2248), - [sym__blank_line_start] = ACTIONS(2248), - [sym__code_span_start] = ACTIONS(2248), - [sym__emphasis_open_star] = ACTIONS(2248), - [sym__emphasis_open_underscore] = ACTIONS(2248), - }, - [445] = { - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_DOT] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_COLON] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_BSLASH] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym__] = ACTIONS(2164), - [anon_sym_BQUOTE] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [aux_sym__html_block_1_token1] = ACTIONS(2164), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2166), - [anon_sym_LT_QMARK] = ACTIONS(2166), - [aux_sym__html_block_4_token1] = ACTIONS(2166), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2164), - [aux_sym__html_block_6_token1] = ACTIONS(2166), - [aux_sym__html_block_6_token2] = ACTIONS(2164), - [sym__open_tag_html_block] = ACTIONS(2164), - [sym__open_tag_html_block_newline] = ACTIONS(2164), - [sym__closing_tag_html_block] = ACTIONS(2164), - [sym__closing_tag_html_block_newline] = ACTIONS(2164), - [sym_backslash_escape] = ACTIONS(2164), - [sym_entity_reference] = ACTIONS(2164), - [sym_numeric_character_reference] = ACTIONS(2164), - [sym_uri_autolink] = ACTIONS(2164), - [sym_email_autolink] = ACTIONS(2164), - [sym__whitespace_ge_2] = ACTIONS(2164), - [aux_sym__whitespace_token1] = ACTIONS(2166), - [sym__word_no_digit] = ACTIONS(2164), - [sym__digits] = ACTIONS(2164), - [aux_sym__newline_token1] = ACTIONS(2164), - [sym__block_close] = ACTIONS(2164), - [sym__block_quote_start] = ACTIONS(2164), - [sym__indented_chunk_start] = ACTIONS(2164), - [sym_atx_h1_marker] = ACTIONS(2164), - [sym_atx_h2_marker] = ACTIONS(2164), - [sym_atx_h3_marker] = ACTIONS(2164), - [sym_atx_h4_marker] = ACTIONS(2164), - [sym_atx_h5_marker] = ACTIONS(2164), - [sym_atx_h6_marker] = ACTIONS(2164), - [sym__thematic_break] = ACTIONS(2164), - [sym__list_marker_minus] = ACTIONS(2164), - [sym__list_marker_plus] = ACTIONS(2164), - [sym__list_marker_star] = ACTIONS(2164), - [sym__list_marker_parenthesis] = ACTIONS(2164), - [sym__list_marker_dot] = ACTIONS(2164), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2164), - [sym__fenced_code_block_start_backtick] = ACTIONS(2164), - [sym__fenced_code_block_start_tilde] = ACTIONS(2164), - [sym__blank_line_start] = ACTIONS(2164), - [sym__code_span_start] = ACTIONS(2164), - [sym__emphasis_open_star] = ACTIONS(2164), - [sym__emphasis_open_underscore] = ACTIONS(2164), - }, - [446] = { - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_DOT] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_COLON] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_QMARK] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_BSLASH] = ACTIONS(2170), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym__] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [aux_sym__html_block_1_token1] = ACTIONS(2168), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2170), - [anon_sym_LT_QMARK] = ACTIONS(2170), - [aux_sym__html_block_4_token1] = ACTIONS(2170), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2168), - [aux_sym__html_block_6_token1] = ACTIONS(2170), - [aux_sym__html_block_6_token2] = ACTIONS(2168), - [sym__open_tag_html_block] = ACTIONS(2168), - [sym__open_tag_html_block_newline] = ACTIONS(2168), - [sym__closing_tag_html_block] = ACTIONS(2168), - [sym__closing_tag_html_block_newline] = ACTIONS(2168), - [sym_backslash_escape] = ACTIONS(2168), - [sym_entity_reference] = ACTIONS(2168), - [sym_numeric_character_reference] = ACTIONS(2168), - [sym_uri_autolink] = ACTIONS(2168), - [sym_email_autolink] = ACTIONS(2168), - [sym__whitespace_ge_2] = ACTIONS(2168), - [aux_sym__whitespace_token1] = ACTIONS(2170), - [sym__word_no_digit] = ACTIONS(2168), - [sym__digits] = ACTIONS(2168), - [aux_sym__newline_token1] = ACTIONS(2168), - [sym__block_close] = ACTIONS(2168), - [sym__block_quote_start] = ACTIONS(2168), - [sym__indented_chunk_start] = ACTIONS(2168), - [sym_atx_h1_marker] = ACTIONS(2168), - [sym_atx_h2_marker] = ACTIONS(2168), - [sym_atx_h3_marker] = ACTIONS(2168), - [sym_atx_h4_marker] = ACTIONS(2168), - [sym_atx_h5_marker] = ACTIONS(2168), - [sym_atx_h6_marker] = ACTIONS(2168), - [sym__thematic_break] = ACTIONS(2168), - [sym__list_marker_minus] = ACTIONS(2168), - [sym__list_marker_plus] = ACTIONS(2168), - [sym__list_marker_star] = ACTIONS(2168), - [sym__list_marker_parenthesis] = ACTIONS(2168), - [sym__list_marker_dot] = ACTIONS(2168), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2168), - [sym__fenced_code_block_start_backtick] = ACTIONS(2168), - [sym__fenced_code_block_start_tilde] = ACTIONS(2168), - [sym__blank_line_start] = ACTIONS(2168), - [sym__code_span_start] = ACTIONS(2168), - [sym__emphasis_open_star] = ACTIONS(2168), - [sym__emphasis_open_underscore] = ACTIONS(2168), - }, - [447] = { - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_DOT] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_COLON] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_QMARK] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym__] = ACTIONS(2172), - [anon_sym_BQUOTE] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [aux_sym__html_block_1_token1] = ACTIONS(2172), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2174), - [anon_sym_LT_QMARK] = ACTIONS(2174), - [aux_sym__html_block_4_token1] = ACTIONS(2174), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2172), - [aux_sym__html_block_6_token1] = ACTIONS(2174), - [aux_sym__html_block_6_token2] = ACTIONS(2172), - [sym__open_tag_html_block] = ACTIONS(2172), - [sym__open_tag_html_block_newline] = ACTIONS(2172), - [sym__closing_tag_html_block] = ACTIONS(2172), - [sym__closing_tag_html_block_newline] = ACTIONS(2172), - [sym_backslash_escape] = ACTIONS(2172), - [sym_entity_reference] = ACTIONS(2172), - [sym_numeric_character_reference] = ACTIONS(2172), - [sym_uri_autolink] = ACTIONS(2172), - [sym_email_autolink] = ACTIONS(2172), - [sym__whitespace_ge_2] = ACTIONS(2172), - [aux_sym__whitespace_token1] = ACTIONS(2174), - [sym__word_no_digit] = ACTIONS(2172), - [sym__digits] = ACTIONS(2172), - [aux_sym__newline_token1] = ACTIONS(2172), - [sym__block_close] = ACTIONS(2172), - [sym__block_quote_start] = ACTIONS(2172), - [sym__indented_chunk_start] = ACTIONS(2172), - [sym_atx_h1_marker] = ACTIONS(2172), - [sym_atx_h2_marker] = ACTIONS(2172), - [sym_atx_h3_marker] = ACTIONS(2172), - [sym_atx_h4_marker] = ACTIONS(2172), - [sym_atx_h5_marker] = ACTIONS(2172), - [sym_atx_h6_marker] = ACTIONS(2172), - [sym__thematic_break] = ACTIONS(2172), - [sym__list_marker_minus] = ACTIONS(2172), - [sym__list_marker_plus] = ACTIONS(2172), - [sym__list_marker_star] = ACTIONS(2172), - [sym__list_marker_parenthesis] = ACTIONS(2172), - [sym__list_marker_dot] = ACTIONS(2172), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2172), - [sym__fenced_code_block_start_backtick] = ACTIONS(2172), - [sym__fenced_code_block_start_tilde] = ACTIONS(2172), - [sym__blank_line_start] = ACTIONS(2172), - [sym__code_span_start] = ACTIONS(2172), - [sym__emphasis_open_star] = ACTIONS(2172), - [sym__emphasis_open_underscore] = ACTIONS(2172), + [ts_builtin_sym_end] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_DOLLAR] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_EQ] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2204), + [anon_sym_QMARK] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_BSLASH] = ACTIONS(2206), + [anon_sym_RBRACK] = ACTIONS(2204), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym__] = ACTIONS(2204), + [anon_sym_BQUOTE] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [aux_sym__html_block_1_token1] = ACTIONS(2204), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2206), + [anon_sym_LT_QMARK] = ACTIONS(2206), + [aux_sym__html_block_4_token1] = ACTIONS(2206), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2204), + [aux_sym__html_block_6_token1] = ACTIONS(2206), + [aux_sym__html_block_6_token2] = ACTIONS(2204), + [sym__open_tag_html_block] = ACTIONS(2204), + [sym__open_tag_html_block_newline] = ACTIONS(2204), + [sym__closing_tag_html_block] = ACTIONS(2204), + [sym__closing_tag_html_block_newline] = ACTIONS(2204), + [sym_backslash_escape] = ACTIONS(2204), + [sym_entity_reference] = ACTIONS(2204), + [sym_numeric_character_reference] = ACTIONS(2204), + [sym_uri_autolink] = ACTIONS(2204), + [sym_email_autolink] = ACTIONS(2204), + [sym__whitespace_ge_2] = ACTIONS(2204), + [aux_sym__whitespace_token1] = ACTIONS(2206), + [sym__word_no_digit] = ACTIONS(2204), + [sym__digits] = ACTIONS(2204), + [aux_sym__newline_token1] = ACTIONS(2204), + [sym__block_quote_start] = ACTIONS(2204), + [sym__indented_chunk_start] = ACTIONS(2204), + [sym_atx_h1_marker] = ACTIONS(2204), + [sym_atx_h2_marker] = ACTIONS(2204), + [sym_atx_h3_marker] = ACTIONS(2204), + [sym_atx_h4_marker] = ACTIONS(2204), + [sym_atx_h5_marker] = ACTIONS(2204), + [sym_atx_h6_marker] = ACTIONS(2204), + [sym__thematic_break] = ACTIONS(2204), + [sym__list_marker_minus] = ACTIONS(2204), + [sym__list_marker_plus] = ACTIONS(2204), + [sym__list_marker_star] = ACTIONS(2204), + [sym__list_marker_parenthesis] = ACTIONS(2204), + [sym__list_marker_dot] = ACTIONS(2204), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2204), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2204), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2204), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2204), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2204), + [sym__fenced_code_block_start_backtick] = ACTIONS(2204), + [sym__fenced_code_block_start_tilde] = ACTIONS(2204), + [sym__blank_line_start] = ACTIONS(2204), + [sym__code_span_start] = ACTIONS(2204), + [sym__emphasis_open_star] = ACTIONS(2204), + [sym__emphasis_open_underscore] = ACTIONS(2204), }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_COLON] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_EQ] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_QMARK] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_BSLASH] = ACTIONS(2254), - [anon_sym_RBRACK] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym__] = ACTIONS(2252), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [aux_sym__html_block_1_token1] = ACTIONS(2252), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2254), - [anon_sym_LT_QMARK] = ACTIONS(2254), - [aux_sym__html_block_4_token1] = ACTIONS(2254), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2252), - [aux_sym__html_block_6_token1] = ACTIONS(2254), - [aux_sym__html_block_6_token2] = ACTIONS(2252), - [sym__open_tag_html_block] = ACTIONS(2252), - [sym__open_tag_html_block_newline] = ACTIONS(2252), - [sym__closing_tag_html_block] = ACTIONS(2252), - [sym__closing_tag_html_block_newline] = ACTIONS(2252), - [sym_backslash_escape] = ACTIONS(2252), - [sym_entity_reference] = ACTIONS(2252), - [sym_numeric_character_reference] = ACTIONS(2252), - [sym_uri_autolink] = ACTIONS(2252), - [sym_email_autolink] = ACTIONS(2252), - [sym__whitespace_ge_2] = ACTIONS(2252), - [aux_sym__whitespace_token1] = ACTIONS(2254), - [sym__word_no_digit] = ACTIONS(2252), - [sym__digits] = ACTIONS(2252), - [aux_sym__newline_token1] = ACTIONS(2252), - [sym__block_quote_start] = ACTIONS(2252), - [sym__indented_chunk_start] = ACTIONS(2252), - [sym_atx_h1_marker] = ACTIONS(2252), - [sym_atx_h2_marker] = ACTIONS(2252), - [sym_atx_h3_marker] = ACTIONS(2252), - [sym_atx_h4_marker] = ACTIONS(2252), - [sym_atx_h5_marker] = ACTIONS(2252), - [sym_atx_h6_marker] = ACTIONS(2252), - [sym__thematic_break] = ACTIONS(2252), - [sym__list_marker_minus] = ACTIONS(2252), - [sym__list_marker_plus] = ACTIONS(2252), - [sym__list_marker_star] = ACTIONS(2252), - [sym__list_marker_parenthesis] = ACTIONS(2252), - [sym__list_marker_dot] = ACTIONS(2252), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2252), - [sym__fenced_code_block_start_backtick] = ACTIONS(2252), - [sym__fenced_code_block_start_tilde] = ACTIONS(2252), - [sym__blank_line_start] = ACTIONS(2252), - [sym__code_span_start] = ACTIONS(2252), - [sym__emphasis_open_star] = ACTIONS(2252), - [sym__emphasis_open_underscore] = ACTIONS(2252), + [442] = { + [sym__link_text] = STATE(2219), + [sym__link_text_non_empty] = STATE(760), + [sym_shortcut_link] = STATE(401), + [sym_full_reference_link] = STATE(401), + [sym_collapsed_reference_link] = STATE(401), + [sym_inline_link] = STATE(401), + [sym_image] = STATE(401), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(762), + [sym_html_tag] = STATE(401), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(401), + [sym__whitespace] = STATE(401), + [sym__word] = STATE(401), + [sym__text_inline_no_star] = STATE(401), + [sym__inline_element_no_newline_no_star] = STATE(401), + [aux_sym__inline_no_newline_no_star] = STATE(401), + [sym__emphasis_star_no_newline] = STATE(1020), + [sym__strong_emphasis_star_no_newline] = STATE(401), + [sym__emphasis_underscore_no_newline] = STATE(1020), + [sym__strong_emphasis_underscore_no_newline] = STATE(401), + [sym__code_span_no_newline] = STATE(401), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym__] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), + [anon_sym_LT_QMARK] = ACTIONS(1974), + [aux_sym__html_block_4_token1] = ACTIONS(1976), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1978), + [sym_backslash_escape] = ACTIONS(2238), + [sym_entity_reference] = ACTIONS(2238), + [sym_numeric_character_reference] = ACTIONS(2238), + [sym_uri_autolink] = ACTIONS(2238), + [sym_email_autolink] = ACTIONS(2238), + [sym__whitespace_ge_2] = ACTIONS(1982), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(2238), + [sym__digits] = ACTIONS(2238), + [sym__code_span_start] = ACTIONS(1984), + [sym__emphasis_open_star] = ACTIONS(1986), + [sym__emphasis_open_underscore] = ACTIONS(1988), }, - [449] = { - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(2188), - [anon_sym_DOLLAR] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_COMMA] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_DOT] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_COLON] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2188), - [anon_sym_QMARK] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_BSLASH] = ACTIONS(2190), - [anon_sym_RBRACK] = ACTIONS(2188), - [anon_sym_CARET] = ACTIONS(2188), - [anon_sym__] = ACTIONS(2188), - [anon_sym_BQUOTE] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2188), - [aux_sym__html_block_1_token1] = ACTIONS(2188), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2190), - [anon_sym_LT_QMARK] = ACTIONS(2190), - [aux_sym__html_block_4_token1] = ACTIONS(2190), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2188), - [aux_sym__html_block_6_token1] = ACTIONS(2190), - [aux_sym__html_block_6_token2] = ACTIONS(2188), - [sym__open_tag_html_block] = ACTIONS(2188), - [sym__open_tag_html_block_newline] = ACTIONS(2188), - [sym__closing_tag_html_block] = ACTIONS(2188), - [sym__closing_tag_html_block_newline] = ACTIONS(2188), - [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(2188), - [aux_sym__whitespace_token1] = ACTIONS(2190), - [sym__word_no_digit] = ACTIONS(2188), - [sym__digits] = ACTIONS(2188), - [aux_sym__newline_token1] = ACTIONS(2188), - [sym__block_close] = ACTIONS(2188), - [sym__block_quote_start] = ACTIONS(2188), - [sym__indented_chunk_start] = ACTIONS(2188), - [sym_atx_h1_marker] = ACTIONS(2188), - [sym_atx_h2_marker] = ACTIONS(2188), - [sym_atx_h3_marker] = ACTIONS(2188), - [sym_atx_h4_marker] = ACTIONS(2188), - [sym_atx_h5_marker] = ACTIONS(2188), - [sym_atx_h6_marker] = ACTIONS(2188), - [sym__thematic_break] = ACTIONS(2188), - [sym__list_marker_minus] = ACTIONS(2188), - [sym__list_marker_plus] = ACTIONS(2188), - [sym__list_marker_star] = ACTIONS(2188), - [sym__list_marker_parenthesis] = ACTIONS(2188), - [sym__list_marker_dot] = ACTIONS(2188), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2188), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2188), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2188), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2188), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2188), - [sym__fenced_code_block_start_backtick] = ACTIONS(2188), - [sym__fenced_code_block_start_tilde] = ACTIONS(2188), - [sym__blank_line_start] = ACTIONS(2188), - [sym__code_span_start] = ACTIONS(2188), - [sym__emphasis_open_star] = ACTIONS(2188), - [sym__emphasis_open_underscore] = ACTIONS(2188), + [443] = { + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(403), + [sym_full_reference_link] = STATE(403), + [sym_collapsed_reference_link] = STATE(403), + [sym_inline_link] = STATE(403), + [sym_image] = STATE(403), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(403), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(403), + [sym__whitespace] = STATE(403), + [sym__word] = STATE(403), + [sym__text_inline_no_underscore] = STATE(403), + [sym__inline_element_no_newline_no_underscore] = STATE(403), + [aux_sym__inline_no_newline_no_underscore] = STATE(403), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(403), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(403), + [sym__code_span_no_newline] = STATE(403), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(2240), + [sym_entity_reference] = ACTIONS(2240), + [sym_numeric_character_reference] = ACTIONS(2240), + [sym_uri_autolink] = ACTIONS(2240), + [sym_email_autolink] = ACTIONS(2240), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2240), + [sym__digits] = ACTIONS(2240), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), }, - [450] = { - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_COLON] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_EQ] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_QMARK] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_BSLASH] = ACTIONS(2254), - [anon_sym_RBRACK] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym__] = ACTIONS(2252), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [aux_sym__html_block_1_token1] = ACTIONS(2252), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2254), - [anon_sym_LT_QMARK] = ACTIONS(2254), - [aux_sym__html_block_4_token1] = ACTIONS(2254), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2252), - [aux_sym__html_block_6_token1] = ACTIONS(2254), - [aux_sym__html_block_6_token2] = ACTIONS(2252), - [sym__open_tag_html_block] = ACTIONS(2252), - [sym__open_tag_html_block_newline] = ACTIONS(2252), - [sym__closing_tag_html_block] = ACTIONS(2252), - [sym__closing_tag_html_block_newline] = ACTIONS(2252), - [sym_backslash_escape] = ACTIONS(2252), - [sym_entity_reference] = ACTIONS(2252), - [sym_numeric_character_reference] = ACTIONS(2252), - [sym_uri_autolink] = ACTIONS(2252), - [sym_email_autolink] = ACTIONS(2252), - [sym__whitespace_ge_2] = ACTIONS(2252), - [aux_sym__whitespace_token1] = ACTIONS(2254), - [sym__word_no_digit] = ACTIONS(2252), - [sym__digits] = ACTIONS(2252), - [aux_sym__newline_token1] = ACTIONS(2252), - [sym__block_close] = ACTIONS(2252), - [sym__block_quote_start] = ACTIONS(2252), - [sym__indented_chunk_start] = ACTIONS(2252), - [sym_atx_h1_marker] = ACTIONS(2252), - [sym_atx_h2_marker] = ACTIONS(2252), - [sym_atx_h3_marker] = ACTIONS(2252), - [sym_atx_h4_marker] = ACTIONS(2252), - [sym_atx_h5_marker] = ACTIONS(2252), - [sym_atx_h6_marker] = ACTIONS(2252), - [sym__thematic_break] = ACTIONS(2252), - [sym__list_marker_minus] = ACTIONS(2252), - [sym__list_marker_plus] = ACTIONS(2252), - [sym__list_marker_star] = ACTIONS(2252), - [sym__list_marker_parenthesis] = ACTIONS(2252), - [sym__list_marker_dot] = ACTIONS(2252), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2252), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2252), - [sym__fenced_code_block_start_backtick] = ACTIONS(2252), - [sym__fenced_code_block_start_tilde] = ACTIONS(2252), - [sym__blank_line_start] = ACTIONS(2252), - [sym__code_span_start] = ACTIONS(2252), - [sym__emphasis_open_star] = ACTIONS(2252), - [sym__emphasis_open_underscore] = ACTIONS(2252), + [444] = { + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_QMARK] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym__] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [aux_sym__html_block_1_token1] = ACTIONS(2242), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2244), + [anon_sym_LT_QMARK] = ACTIONS(2244), + [aux_sym__html_block_4_token1] = ACTIONS(2244), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2242), + [aux_sym__html_block_6_token1] = ACTIONS(2244), + [aux_sym__html_block_6_token2] = ACTIONS(2242), + [sym__open_tag_html_block] = ACTIONS(2242), + [sym__open_tag_html_block_newline] = ACTIONS(2242), + [sym__closing_tag_html_block] = ACTIONS(2242), + [sym__closing_tag_html_block_newline] = ACTIONS(2242), + [sym_backslash_escape] = ACTIONS(2242), + [sym_entity_reference] = ACTIONS(2242), + [sym_numeric_character_reference] = ACTIONS(2242), + [sym_uri_autolink] = ACTIONS(2242), + [sym_email_autolink] = ACTIONS(2242), + [sym__whitespace_ge_2] = ACTIONS(2242), + [aux_sym__whitespace_token1] = ACTIONS(2244), + [sym__word_no_digit] = ACTIONS(2242), + [sym__digits] = ACTIONS(2242), + [aux_sym__newline_token1] = ACTIONS(2242), + [sym__block_close] = ACTIONS(2242), + [sym__block_quote_start] = ACTIONS(2242), + [sym__indented_chunk_start] = ACTIONS(2242), + [sym_atx_h1_marker] = ACTIONS(2242), + [sym_atx_h2_marker] = ACTIONS(2242), + [sym_atx_h3_marker] = ACTIONS(2242), + [sym_atx_h4_marker] = ACTIONS(2242), + [sym_atx_h5_marker] = ACTIONS(2242), + [sym_atx_h6_marker] = ACTIONS(2242), + [sym__thematic_break] = ACTIONS(2242), + [sym__list_marker_minus] = ACTIONS(2242), + [sym__list_marker_plus] = ACTIONS(2242), + [sym__list_marker_star] = ACTIONS(2242), + [sym__list_marker_parenthesis] = ACTIONS(2242), + [sym__list_marker_dot] = ACTIONS(2242), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2242), + [sym__fenced_code_block_start_backtick] = ACTIONS(2242), + [sym__fenced_code_block_start_tilde] = ACTIONS(2242), + [sym__blank_line_start] = ACTIONS(2242), + [sym__code_span_start] = ACTIONS(2242), + [sym__emphasis_open_star] = ACTIONS(2242), + [sym__emphasis_open_underscore] = ACTIONS(2242), }, - [451] = { - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_COLON] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_EQ] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_QMARK] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_BSLASH] = ACTIONS(2198), - [anon_sym_RBRACK] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym__] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2196), - [aux_sym__html_block_1_token1] = ACTIONS(2196), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2198), - [anon_sym_LT_QMARK] = ACTIONS(2198), - [aux_sym__html_block_4_token1] = ACTIONS(2198), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2196), - [aux_sym__html_block_6_token1] = ACTIONS(2198), - [aux_sym__html_block_6_token2] = ACTIONS(2196), - [sym__open_tag_html_block] = ACTIONS(2196), - [sym__open_tag_html_block_newline] = ACTIONS(2196), - [sym__closing_tag_html_block] = ACTIONS(2196), - [sym__closing_tag_html_block_newline] = ACTIONS(2196), - [sym_backslash_escape] = ACTIONS(2196), - [sym_entity_reference] = ACTIONS(2196), - [sym_numeric_character_reference] = ACTIONS(2196), - [sym_uri_autolink] = ACTIONS(2196), - [sym_email_autolink] = ACTIONS(2196), - [sym__whitespace_ge_2] = ACTIONS(2196), - [aux_sym__whitespace_token1] = ACTIONS(2198), - [sym__word_no_digit] = ACTIONS(2196), - [sym__digits] = ACTIONS(2196), - [aux_sym__newline_token1] = ACTIONS(2196), - [sym__block_close] = ACTIONS(2196), - [sym__block_quote_start] = ACTIONS(2196), - [sym__indented_chunk_start] = ACTIONS(2196), - [sym_atx_h1_marker] = ACTIONS(2196), - [sym_atx_h2_marker] = ACTIONS(2196), - [sym_atx_h3_marker] = ACTIONS(2196), - [sym_atx_h4_marker] = ACTIONS(2196), - [sym_atx_h5_marker] = ACTIONS(2196), - [sym_atx_h6_marker] = ACTIONS(2196), - [sym__thematic_break] = ACTIONS(2196), - [sym__list_marker_minus] = ACTIONS(2196), - [sym__list_marker_plus] = ACTIONS(2196), - [sym__list_marker_star] = ACTIONS(2196), - [sym__list_marker_parenthesis] = ACTIONS(2196), - [sym__list_marker_dot] = ACTIONS(2196), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2196), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2196), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2196), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2196), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2196), - [sym__fenced_code_block_start_backtick] = ACTIONS(2196), - [sym__fenced_code_block_start_tilde] = ACTIONS(2196), - [sym__blank_line_start] = ACTIONS(2196), - [sym__code_span_start] = ACTIONS(2196), - [sym__emphasis_open_star] = ACTIONS(2196), - [sym__emphasis_open_underscore] = ACTIONS(2196), + [445] = { + [ts_builtin_sym_end] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2246), + [anon_sym_QMARK] = ACTIONS(2246), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_RBRACK] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym__] = ACTIONS(2246), + [anon_sym_BQUOTE] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [aux_sym__html_block_1_token1] = ACTIONS(2246), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2248), + [anon_sym_LT_QMARK] = ACTIONS(2248), + [aux_sym__html_block_4_token1] = ACTIONS(2248), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2246), + [aux_sym__html_block_6_token1] = ACTIONS(2248), + [aux_sym__html_block_6_token2] = ACTIONS(2246), + [sym__open_tag_html_block] = ACTIONS(2246), + [sym__open_tag_html_block_newline] = ACTIONS(2246), + [sym__closing_tag_html_block] = ACTIONS(2246), + [sym__closing_tag_html_block_newline] = ACTIONS(2246), + [sym_backslash_escape] = ACTIONS(2246), + [sym_entity_reference] = ACTIONS(2246), + [sym_numeric_character_reference] = ACTIONS(2246), + [sym_uri_autolink] = ACTIONS(2246), + [sym_email_autolink] = ACTIONS(2246), + [sym__whitespace_ge_2] = ACTIONS(2246), + [aux_sym__whitespace_token1] = ACTIONS(2248), + [sym__word_no_digit] = ACTIONS(2246), + [sym__digits] = ACTIONS(2246), + [aux_sym__newline_token1] = ACTIONS(2246), + [sym__block_quote_start] = ACTIONS(2246), + [sym__indented_chunk_start] = ACTIONS(2246), + [sym_atx_h1_marker] = ACTIONS(2246), + [sym_atx_h2_marker] = ACTIONS(2246), + [sym_atx_h3_marker] = ACTIONS(2246), + [sym_atx_h4_marker] = ACTIONS(2246), + [sym_atx_h5_marker] = ACTIONS(2246), + [sym_atx_h6_marker] = ACTIONS(2246), + [sym__thematic_break] = ACTIONS(2246), + [sym__list_marker_minus] = ACTIONS(2246), + [sym__list_marker_plus] = ACTIONS(2246), + [sym__list_marker_star] = ACTIONS(2246), + [sym__list_marker_parenthesis] = ACTIONS(2246), + [sym__list_marker_dot] = ACTIONS(2246), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2246), + [sym__fenced_code_block_start_backtick] = ACTIONS(2246), + [sym__fenced_code_block_start_tilde] = ACTIONS(2246), + [sym__blank_line_start] = ACTIONS(2246), + [sym__code_span_start] = ACTIONS(2246), + [sym__emphasis_open_star] = ACTIONS(2246), + [sym__emphasis_open_underscore] = ACTIONS(2246), }, - [452] = { - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_COLON] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_BSLASH] = ACTIONS(2194), - [anon_sym_RBRACK] = ACTIONS(2192), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym__] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2192), - [aux_sym__html_block_1_token1] = ACTIONS(2192), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2194), - [anon_sym_LT_QMARK] = ACTIONS(2194), - [aux_sym__html_block_4_token1] = ACTIONS(2194), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2192), - [aux_sym__html_block_6_token1] = ACTIONS(2194), - [aux_sym__html_block_6_token2] = ACTIONS(2192), - [sym__open_tag_html_block] = ACTIONS(2192), - [sym__open_tag_html_block_newline] = ACTIONS(2192), - [sym__closing_tag_html_block] = ACTIONS(2192), - [sym__closing_tag_html_block_newline] = ACTIONS(2192), - [sym_backslash_escape] = ACTIONS(2192), - [sym_entity_reference] = ACTIONS(2192), - [sym_numeric_character_reference] = ACTIONS(2192), - [sym_uri_autolink] = ACTIONS(2192), - [sym_email_autolink] = ACTIONS(2192), - [sym__whitespace_ge_2] = ACTIONS(2192), - [aux_sym__whitespace_token1] = ACTIONS(2194), - [sym__word_no_digit] = ACTIONS(2192), - [sym__digits] = ACTIONS(2192), - [aux_sym__newline_token1] = ACTIONS(2192), - [sym__block_close] = ACTIONS(2192), - [sym__block_quote_start] = ACTIONS(2192), - [sym__indented_chunk_start] = ACTIONS(2192), - [sym_atx_h1_marker] = ACTIONS(2192), - [sym_atx_h2_marker] = ACTIONS(2192), - [sym_atx_h3_marker] = ACTIONS(2192), - [sym_atx_h4_marker] = ACTIONS(2192), - [sym_atx_h5_marker] = ACTIONS(2192), - [sym_atx_h6_marker] = ACTIONS(2192), - [sym__thematic_break] = ACTIONS(2192), - [sym__list_marker_minus] = ACTIONS(2192), - [sym__list_marker_plus] = ACTIONS(2192), - [sym__list_marker_star] = ACTIONS(2192), - [sym__list_marker_parenthesis] = ACTIONS(2192), - [sym__list_marker_dot] = ACTIONS(2192), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2192), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2192), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2192), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2192), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2192), - [sym__fenced_code_block_start_backtick] = ACTIONS(2192), - [sym__fenced_code_block_start_tilde] = ACTIONS(2192), - [sym__blank_line_start] = ACTIONS(2192), - [sym__code_span_start] = ACTIONS(2192), - [sym__emphasis_open_star] = ACTIONS(2192), - [sym__emphasis_open_underscore] = ACTIONS(2192), + [446] = { + [ts_builtin_sym_end] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_POUND] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_QMARK] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2252), + [anon_sym_RBRACK] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym__] = ACTIONS(2250), + [anon_sym_BQUOTE] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [aux_sym__html_block_1_token1] = ACTIONS(2250), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2252), + [anon_sym_LT_QMARK] = ACTIONS(2252), + [aux_sym__html_block_4_token1] = ACTIONS(2252), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2250), + [aux_sym__html_block_6_token1] = ACTIONS(2252), + [aux_sym__html_block_6_token2] = ACTIONS(2250), + [sym__open_tag_html_block] = ACTIONS(2250), + [sym__open_tag_html_block_newline] = ACTIONS(2250), + [sym__closing_tag_html_block] = ACTIONS(2250), + [sym__closing_tag_html_block_newline] = ACTIONS(2250), + [sym_backslash_escape] = ACTIONS(2250), + [sym_entity_reference] = ACTIONS(2250), + [sym_numeric_character_reference] = ACTIONS(2250), + [sym_uri_autolink] = ACTIONS(2250), + [sym_email_autolink] = ACTIONS(2250), + [sym__whitespace_ge_2] = ACTIONS(2250), + [aux_sym__whitespace_token1] = ACTIONS(2252), + [sym__word_no_digit] = ACTIONS(2250), + [sym__digits] = ACTIONS(2250), + [aux_sym__newline_token1] = ACTIONS(2250), + [sym__block_quote_start] = ACTIONS(2250), + [sym__indented_chunk_start] = ACTIONS(2250), + [sym_atx_h1_marker] = ACTIONS(2250), + [sym_atx_h2_marker] = ACTIONS(2250), + [sym_atx_h3_marker] = ACTIONS(2250), + [sym_atx_h4_marker] = ACTIONS(2250), + [sym_atx_h5_marker] = ACTIONS(2250), + [sym_atx_h6_marker] = ACTIONS(2250), + [sym__thematic_break] = ACTIONS(2250), + [sym__list_marker_minus] = ACTIONS(2250), + [sym__list_marker_plus] = ACTIONS(2250), + [sym__list_marker_star] = ACTIONS(2250), + [sym__list_marker_parenthesis] = ACTIONS(2250), + [sym__list_marker_dot] = ACTIONS(2250), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2250), + [sym__fenced_code_block_start_backtick] = ACTIONS(2250), + [sym__fenced_code_block_start_tilde] = ACTIONS(2250), + [sym__blank_line_start] = ACTIONS(2250), + [sym__code_span_start] = ACTIONS(2250), + [sym__emphasis_open_star] = ACTIONS(2250), + [sym__emphasis_open_underscore] = ACTIONS(2250), }, - [453] = { + [447] = { + [ts_builtin_sym_end] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), [anon_sym_BANG] = ACTIONS(2208), [anon_sym_DQUOTE] = ACTIONS(2208), [anon_sym_POUND] = ACTIONS(2208), @@ -71131,9 +70660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2208), [anon_sym__] = ACTIONS(2208), [anon_sym_BQUOTE] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), [anon_sym_TILDE] = ACTIONS(2208), [aux_sym__html_block_1_token1] = ACTIONS(2208), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2210), @@ -71156,7 +70683,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2208), [sym__digits] = ACTIONS(2208), [aux_sym__newline_token1] = ACTIONS(2208), - [sym__block_close] = ACTIONS(2208), [sym__block_quote_start] = ACTIONS(2208), [sym__indented_chunk_start] = ACTIONS(2208), [sym_atx_h1_marker] = ACTIONS(2208), @@ -71183,261 +70709,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2208), [sym__emphasis_open_underscore] = ACTIONS(2208), }, - [454] = { - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_DOT] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_COLON] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_EQ] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_QMARK] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_BSLASH] = ACTIONS(2216), - [anon_sym_RBRACK] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym__] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2214), - [aux_sym__html_block_1_token1] = ACTIONS(2214), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2216), - [anon_sym_LT_QMARK] = ACTIONS(2216), - [aux_sym__html_block_4_token1] = ACTIONS(2216), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2214), - [aux_sym__html_block_6_token1] = ACTIONS(2216), - [aux_sym__html_block_6_token2] = ACTIONS(2214), - [sym__open_tag_html_block] = ACTIONS(2214), - [sym__open_tag_html_block_newline] = ACTIONS(2214), - [sym__closing_tag_html_block] = ACTIONS(2214), - [sym__closing_tag_html_block_newline] = ACTIONS(2214), - [sym_backslash_escape] = ACTIONS(2214), - [sym_entity_reference] = ACTIONS(2214), - [sym_numeric_character_reference] = ACTIONS(2214), - [sym_uri_autolink] = ACTIONS(2214), - [sym_email_autolink] = ACTIONS(2214), - [sym__whitespace_ge_2] = ACTIONS(2214), - [aux_sym__whitespace_token1] = ACTIONS(2216), - [sym__word_no_digit] = ACTIONS(2214), - [sym__digits] = ACTIONS(2214), - [aux_sym__newline_token1] = ACTIONS(2214), - [sym__block_close] = ACTIONS(2214), - [sym__block_quote_start] = ACTIONS(2214), - [sym__indented_chunk_start] = ACTIONS(2214), - [sym_atx_h1_marker] = ACTIONS(2214), - [sym_atx_h2_marker] = ACTIONS(2214), - [sym_atx_h3_marker] = ACTIONS(2214), - [sym_atx_h4_marker] = ACTIONS(2214), - [sym_atx_h5_marker] = ACTIONS(2214), - [sym_atx_h6_marker] = ACTIONS(2214), - [sym__thematic_break] = ACTIONS(2214), - [sym__list_marker_minus] = ACTIONS(2214), - [sym__list_marker_plus] = ACTIONS(2214), - [sym__list_marker_star] = ACTIONS(2214), - [sym__list_marker_parenthesis] = ACTIONS(2214), - [sym__list_marker_dot] = ACTIONS(2214), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2214), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2214), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2214), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2214), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2214), - [sym__fenced_code_block_start_backtick] = ACTIONS(2214), - [sym__fenced_code_block_start_tilde] = ACTIONS(2214), - [sym__blank_line_start] = ACTIONS(2214), - [sym__code_span_start] = ACTIONS(2214), - [sym__emphasis_open_star] = ACTIONS(2214), - [sym__emphasis_open_underscore] = ACTIONS(2214), + [448] = { + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2230), + [anon_sym_COLON] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_QMARK] = ACTIONS(2230), + [anon_sym_AT] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_RBRACK] = ACTIONS(2230), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym__] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [aux_sym__html_block_1_token1] = ACTIONS(2230), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2232), + [anon_sym_LT_QMARK] = ACTIONS(2232), + [aux_sym__html_block_4_token1] = ACTIONS(2232), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2230), + [aux_sym__html_block_6_token1] = ACTIONS(2232), + [aux_sym__html_block_6_token2] = ACTIONS(2230), + [sym__open_tag_html_block] = ACTIONS(2230), + [sym__open_tag_html_block_newline] = ACTIONS(2230), + [sym__closing_tag_html_block] = ACTIONS(2230), + [sym__closing_tag_html_block_newline] = ACTIONS(2230), + [sym_backslash_escape] = ACTIONS(2230), + [sym_entity_reference] = ACTIONS(2230), + [sym_numeric_character_reference] = ACTIONS(2230), + [sym_uri_autolink] = ACTIONS(2230), + [sym_email_autolink] = ACTIONS(2230), + [sym__whitespace_ge_2] = ACTIONS(2230), + [aux_sym__whitespace_token1] = ACTIONS(2232), + [sym__word_no_digit] = ACTIONS(2230), + [sym__digits] = ACTIONS(2230), + [aux_sym__newline_token1] = ACTIONS(2230), + [sym__block_close] = ACTIONS(2230), + [sym__block_quote_start] = ACTIONS(2230), + [sym__indented_chunk_start] = ACTIONS(2230), + [sym_atx_h1_marker] = ACTIONS(2230), + [sym_atx_h2_marker] = ACTIONS(2230), + [sym_atx_h3_marker] = ACTIONS(2230), + [sym_atx_h4_marker] = ACTIONS(2230), + [sym_atx_h5_marker] = ACTIONS(2230), + [sym_atx_h6_marker] = ACTIONS(2230), + [sym__thematic_break] = ACTIONS(2230), + [sym__list_marker_minus] = ACTIONS(2230), + [sym__list_marker_plus] = ACTIONS(2230), + [sym__list_marker_star] = ACTIONS(2230), + [sym__list_marker_parenthesis] = ACTIONS(2230), + [sym__list_marker_dot] = ACTIONS(2230), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2230), + [sym__fenced_code_block_start_backtick] = ACTIONS(2230), + [sym__fenced_code_block_start_tilde] = ACTIONS(2230), + [sym__blank_line_start] = ACTIONS(2230), + [sym__code_span_start] = ACTIONS(2230), + [sym__emphasis_open_star] = ACTIONS(2230), + [sym__emphasis_open_underscore] = ACTIONS(2230), + }, + [449] = { + [sym__link_text] = STATE(2213), + [sym__link_text_non_empty] = STATE(791), + [sym_shortcut_link] = STATE(396), + [sym_full_reference_link] = STATE(396), + [sym_collapsed_reference_link] = STATE(396), + [sym_inline_link] = STATE(396), + [sym_image] = STATE(396), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(788), + [sym_html_tag] = STATE(396), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(396), + [sym__whitespace] = STATE(396), + [sym__word] = STATE(396), + [sym__text_inline_no_underscore] = STATE(396), + [sym__inline_element_no_newline_no_underscore] = STATE(396), + [aux_sym__inline_no_newline_no_underscore] = STATE(396), + [sym__emphasis_star_no_newline] = STATE(1021), + [sym__strong_emphasis_star_no_newline] = STATE(396), + [sym__emphasis_underscore_no_newline] = STATE(1021), + [sym__strong_emphasis_underscore_no_newline] = STATE(396), + [sym__code_span_no_newline] = STATE(396), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(800), + [anon_sym_PERCENT] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(800), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_CARET] = ACTIONS(800), + [anon_sym__] = ACTIONS(800), + [anon_sym_BQUOTE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1942), + [anon_sym_LT_QMARK] = ACTIONS(1944), + [aux_sym__html_block_4_token1] = ACTIONS(1946), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1948), + [sym_backslash_escape] = ACTIONS(2254), + [sym_entity_reference] = ACTIONS(2254), + [sym_numeric_character_reference] = ACTIONS(2254), + [sym_uri_autolink] = ACTIONS(2254), + [sym_email_autolink] = ACTIONS(2254), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2254), + [sym__digits] = ACTIONS(2254), + [sym__code_span_start] = ACTIONS(1954), + [sym__emphasis_open_star] = ACTIONS(1956), + [sym__emphasis_open_underscore] = ACTIONS(1958), + }, + [450] = { + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_POUND] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_QMARK] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2252), + [anon_sym_RBRACK] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym__] = ACTIONS(2250), + [anon_sym_BQUOTE] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [aux_sym__html_block_1_token1] = ACTIONS(2250), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2252), + [anon_sym_LT_QMARK] = ACTIONS(2252), + [aux_sym__html_block_4_token1] = ACTIONS(2252), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2250), + [aux_sym__html_block_6_token1] = ACTIONS(2252), + [aux_sym__html_block_6_token2] = ACTIONS(2250), + [sym__open_tag_html_block] = ACTIONS(2250), + [sym__open_tag_html_block_newline] = ACTIONS(2250), + [sym__closing_tag_html_block] = ACTIONS(2250), + [sym__closing_tag_html_block_newline] = ACTIONS(2250), + [sym_backslash_escape] = ACTIONS(2250), + [sym_entity_reference] = ACTIONS(2250), + [sym_numeric_character_reference] = ACTIONS(2250), + [sym_uri_autolink] = ACTIONS(2250), + [sym_email_autolink] = ACTIONS(2250), + [sym__whitespace_ge_2] = ACTIONS(2250), + [aux_sym__whitespace_token1] = ACTIONS(2252), + [sym__word_no_digit] = ACTIONS(2250), + [sym__digits] = ACTIONS(2250), + [aux_sym__newline_token1] = ACTIONS(2250), + [sym__block_close] = ACTIONS(2250), + [sym__block_quote_start] = ACTIONS(2250), + [sym__indented_chunk_start] = ACTIONS(2250), + [sym_atx_h1_marker] = ACTIONS(2250), + [sym_atx_h2_marker] = ACTIONS(2250), + [sym_atx_h3_marker] = ACTIONS(2250), + [sym_atx_h4_marker] = ACTIONS(2250), + [sym_atx_h5_marker] = ACTIONS(2250), + [sym_atx_h6_marker] = ACTIONS(2250), + [sym__thematic_break] = ACTIONS(2250), + [sym__list_marker_minus] = ACTIONS(2250), + [sym__list_marker_plus] = ACTIONS(2250), + [sym__list_marker_star] = ACTIONS(2250), + [sym__list_marker_parenthesis] = ACTIONS(2250), + [sym__list_marker_dot] = ACTIONS(2250), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2250), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2250), + [sym__fenced_code_block_start_backtick] = ACTIONS(2250), + [sym__fenced_code_block_start_tilde] = ACTIONS(2250), + [sym__blank_line_start] = ACTIONS(2250), + [sym__code_span_start] = ACTIONS(2250), + [sym__emphasis_open_star] = ACTIONS(2250), + [sym__emphasis_open_underscore] = ACTIONS(2250), + }, + [451] = { + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2246), + [anon_sym_QMARK] = ACTIONS(2246), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_RBRACK] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym__] = ACTIONS(2246), + [anon_sym_BQUOTE] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2246), + [aux_sym__html_block_1_token1] = ACTIONS(2246), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2248), + [anon_sym_LT_QMARK] = ACTIONS(2248), + [aux_sym__html_block_4_token1] = ACTIONS(2248), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2246), + [aux_sym__html_block_6_token1] = ACTIONS(2248), + [aux_sym__html_block_6_token2] = ACTIONS(2246), + [sym__open_tag_html_block] = ACTIONS(2246), + [sym__open_tag_html_block_newline] = ACTIONS(2246), + [sym__closing_tag_html_block] = ACTIONS(2246), + [sym__closing_tag_html_block_newline] = ACTIONS(2246), + [sym_backslash_escape] = ACTIONS(2246), + [sym_entity_reference] = ACTIONS(2246), + [sym_numeric_character_reference] = ACTIONS(2246), + [sym_uri_autolink] = ACTIONS(2246), + [sym_email_autolink] = ACTIONS(2246), + [sym__whitespace_ge_2] = ACTIONS(2246), + [aux_sym__whitespace_token1] = ACTIONS(2248), + [sym__word_no_digit] = ACTIONS(2246), + [sym__digits] = ACTIONS(2246), + [aux_sym__newline_token1] = ACTIONS(2246), + [sym__block_close] = ACTIONS(2246), + [sym__block_quote_start] = ACTIONS(2246), + [sym__indented_chunk_start] = ACTIONS(2246), + [sym_atx_h1_marker] = ACTIONS(2246), + [sym_atx_h2_marker] = ACTIONS(2246), + [sym_atx_h3_marker] = ACTIONS(2246), + [sym_atx_h4_marker] = ACTIONS(2246), + [sym_atx_h5_marker] = ACTIONS(2246), + [sym_atx_h6_marker] = ACTIONS(2246), + [sym__thematic_break] = ACTIONS(2246), + [sym__list_marker_minus] = ACTIONS(2246), + [sym__list_marker_plus] = ACTIONS(2246), + [sym__list_marker_star] = ACTIONS(2246), + [sym__list_marker_parenthesis] = ACTIONS(2246), + [sym__list_marker_dot] = ACTIONS(2246), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2246), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2246), + [sym__fenced_code_block_start_backtick] = ACTIONS(2246), + [sym__fenced_code_block_start_tilde] = ACTIONS(2246), + [sym__blank_line_start] = ACTIONS(2246), + [sym__code_span_start] = ACTIONS(2246), + [sym__emphasis_open_star] = ACTIONS(2246), + [sym__emphasis_open_underscore] = ACTIONS(2246), + }, + [452] = { + [ts_builtin_sym_end] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2226), + [anon_sym_QMARK] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_RBRACK] = ACTIONS(2226), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym__] = ACTIONS(2226), + [anon_sym_BQUOTE] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [aux_sym__html_block_1_token1] = ACTIONS(2226), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2228), + [anon_sym_LT_QMARK] = ACTIONS(2228), + [aux_sym__html_block_4_token1] = ACTIONS(2228), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2226), + [aux_sym__html_block_6_token1] = ACTIONS(2228), + [aux_sym__html_block_6_token2] = ACTIONS(2226), + [sym__open_tag_html_block] = ACTIONS(2226), + [sym__open_tag_html_block_newline] = ACTIONS(2226), + [sym__closing_tag_html_block] = ACTIONS(2226), + [sym__closing_tag_html_block_newline] = ACTIONS(2226), + [sym_backslash_escape] = ACTIONS(2226), + [sym_entity_reference] = ACTIONS(2226), + [sym_numeric_character_reference] = ACTIONS(2226), + [sym_uri_autolink] = ACTIONS(2226), + [sym_email_autolink] = ACTIONS(2226), + [sym__whitespace_ge_2] = ACTIONS(2226), + [aux_sym__whitespace_token1] = ACTIONS(2228), + [sym__word_no_digit] = ACTIONS(2226), + [sym__digits] = ACTIONS(2226), + [aux_sym__newline_token1] = ACTIONS(2226), + [sym__block_quote_start] = ACTIONS(2226), + [sym__indented_chunk_start] = ACTIONS(2226), + [sym_atx_h1_marker] = ACTIONS(2226), + [sym_atx_h2_marker] = ACTIONS(2226), + [sym_atx_h3_marker] = ACTIONS(2226), + [sym_atx_h4_marker] = ACTIONS(2226), + [sym_atx_h5_marker] = ACTIONS(2226), + [sym_atx_h6_marker] = ACTIONS(2226), + [sym__thematic_break] = ACTIONS(2226), + [sym__list_marker_minus] = ACTIONS(2226), + [sym__list_marker_plus] = ACTIONS(2226), + [sym__list_marker_star] = ACTIONS(2226), + [sym__list_marker_parenthesis] = ACTIONS(2226), + [sym__list_marker_dot] = ACTIONS(2226), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2226), + [sym__fenced_code_block_start_backtick] = ACTIONS(2226), + [sym__fenced_code_block_start_tilde] = ACTIONS(2226), + [sym__blank_line_start] = ACTIONS(2226), + [sym__code_span_start] = ACTIONS(2226), + [sym__emphasis_open_star] = ACTIONS(2226), + [sym__emphasis_open_underscore] = ACTIONS(2226), + }, + [453] = { + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_COMMA] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_DOT] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_COLON] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_EQ] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_QMARK] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_BSLASH] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2152), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym__] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [aux_sym__html_block_1_token1] = ACTIONS(2152), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2154), + [anon_sym_LT_QMARK] = ACTIONS(2154), + [aux_sym__html_block_4_token1] = ACTIONS(2154), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2152), + [aux_sym__html_block_6_token1] = ACTIONS(2154), + [aux_sym__html_block_6_token2] = ACTIONS(2152), + [sym__open_tag_html_block] = ACTIONS(2152), + [sym__open_tag_html_block_newline] = ACTIONS(2152), + [sym__closing_tag_html_block] = ACTIONS(2152), + [sym__closing_tag_html_block_newline] = ACTIONS(2152), + [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(2152), + [aux_sym__whitespace_token1] = ACTIONS(2154), + [sym__word_no_digit] = ACTIONS(2152), + [sym__digits] = ACTIONS(2152), + [aux_sym__newline_token1] = ACTIONS(2152), + [sym__block_close] = ACTIONS(2152), + [sym__block_quote_start] = ACTIONS(2152), + [sym__indented_chunk_start] = ACTIONS(2152), + [sym_atx_h1_marker] = ACTIONS(2152), + [sym_atx_h2_marker] = ACTIONS(2152), + [sym_atx_h3_marker] = ACTIONS(2152), + [sym_atx_h4_marker] = ACTIONS(2152), + [sym_atx_h5_marker] = ACTIONS(2152), + [sym_atx_h6_marker] = ACTIONS(2152), + [sym__thematic_break] = ACTIONS(2152), + [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__list_marker_minus_dont_interrupt] = ACTIONS(2152), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2152), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2152), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2152), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2152), + [sym__fenced_code_block_start_backtick] = ACTIONS(2152), + [sym__fenced_code_block_start_tilde] = ACTIONS(2152), + [sym__blank_line_start] = ACTIONS(2152), + [sym__code_span_start] = ACTIONS(2152), + [sym__emphasis_open_star] = ACTIONS(2152), + [sym__emphasis_open_underscore] = ACTIONS(2152), + }, + [454] = { + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_EQ] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2164), + [anon_sym_QMARK] = ACTIONS(2164), + [anon_sym_AT] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_BSLASH] = ACTIONS(2166), + [anon_sym_RBRACK] = ACTIONS(2164), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym__] = ACTIONS(2164), + [anon_sym_BQUOTE] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_TILDE] = ACTIONS(2164), + [aux_sym__html_block_1_token1] = ACTIONS(2164), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2166), + [anon_sym_LT_QMARK] = ACTIONS(2166), + [aux_sym__html_block_4_token1] = ACTIONS(2166), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2164), + [aux_sym__html_block_6_token1] = ACTIONS(2166), + [aux_sym__html_block_6_token2] = ACTIONS(2164), + [sym__open_tag_html_block] = ACTIONS(2164), + [sym__open_tag_html_block_newline] = ACTIONS(2164), + [sym__closing_tag_html_block] = ACTIONS(2164), + [sym__closing_tag_html_block_newline] = ACTIONS(2164), + [sym_backslash_escape] = ACTIONS(2164), + [sym_entity_reference] = ACTIONS(2164), + [sym_numeric_character_reference] = ACTIONS(2164), + [sym_uri_autolink] = ACTIONS(2164), + [sym_email_autolink] = ACTIONS(2164), + [sym__whitespace_ge_2] = ACTIONS(2164), + [aux_sym__whitespace_token1] = ACTIONS(2166), + [sym__word_no_digit] = ACTIONS(2164), + [sym__digits] = ACTIONS(2164), + [aux_sym__newline_token1] = ACTIONS(2164), + [sym__block_close] = ACTIONS(2164), + [sym__block_quote_start] = ACTIONS(2164), + [sym__indented_chunk_start] = ACTIONS(2164), + [sym_atx_h1_marker] = ACTIONS(2164), + [sym_atx_h2_marker] = ACTIONS(2164), + [sym_atx_h3_marker] = ACTIONS(2164), + [sym_atx_h4_marker] = ACTIONS(2164), + [sym_atx_h5_marker] = ACTIONS(2164), + [sym_atx_h6_marker] = ACTIONS(2164), + [sym__thematic_break] = ACTIONS(2164), + [sym__list_marker_minus] = ACTIONS(2164), + [sym__list_marker_plus] = ACTIONS(2164), + [sym__list_marker_star] = ACTIONS(2164), + [sym__list_marker_parenthesis] = ACTIONS(2164), + [sym__list_marker_dot] = ACTIONS(2164), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2164), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2164), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2164), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2164), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2164), + [sym__fenced_code_block_start_backtick] = ACTIONS(2164), + [sym__fenced_code_block_start_tilde] = ACTIONS(2164), + [sym__blank_line_start] = ACTIONS(2164), + [sym__code_span_start] = ACTIONS(2164), + [sym__emphasis_open_star] = ACTIONS(2164), + [sym__emphasis_open_underscore] = ACTIONS(2164), }, [455] = { - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_DOT] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_COLON] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2222), - [anon_sym_QMARK] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_BSLASH] = ACTIONS(2224), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym__] = ACTIONS(2222), - [anon_sym_BQUOTE] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [aux_sym__html_block_1_token1] = ACTIONS(2222), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2224), - [anon_sym_LT_QMARK] = ACTIONS(2224), - [aux_sym__html_block_4_token1] = ACTIONS(2224), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2222), - [aux_sym__html_block_6_token1] = ACTIONS(2224), - [aux_sym__html_block_6_token2] = ACTIONS(2222), - [sym__open_tag_html_block] = ACTIONS(2222), - [sym__open_tag_html_block_newline] = ACTIONS(2222), - [sym__closing_tag_html_block] = ACTIONS(2222), - [sym__closing_tag_html_block_newline] = ACTIONS(2222), - [sym_backslash_escape] = ACTIONS(2222), - [sym_entity_reference] = ACTIONS(2222), - [sym_numeric_character_reference] = ACTIONS(2222), - [sym_uri_autolink] = ACTIONS(2222), - [sym_email_autolink] = ACTIONS(2222), - [sym__whitespace_ge_2] = ACTIONS(2222), - [aux_sym__whitespace_token1] = ACTIONS(2224), - [sym__word_no_digit] = ACTIONS(2222), - [sym__digits] = ACTIONS(2222), - [aux_sym__newline_token1] = ACTIONS(2222), - [sym__block_close] = ACTIONS(2222), - [sym__block_quote_start] = ACTIONS(2222), - [sym__indented_chunk_start] = ACTIONS(2222), - [sym_atx_h1_marker] = ACTIONS(2222), - [sym_atx_h2_marker] = ACTIONS(2222), - [sym_atx_h3_marker] = ACTIONS(2222), - [sym_atx_h4_marker] = ACTIONS(2222), - [sym_atx_h5_marker] = ACTIONS(2222), - [sym_atx_h6_marker] = ACTIONS(2222), - [sym__thematic_break] = ACTIONS(2222), - [sym__list_marker_minus] = ACTIONS(2222), - [sym__list_marker_plus] = ACTIONS(2222), - [sym__list_marker_star] = ACTIONS(2222), - [sym__list_marker_parenthesis] = ACTIONS(2222), - [sym__list_marker_dot] = ACTIONS(2222), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2222), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2222), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2222), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2222), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2222), - [sym__fenced_code_block_start_backtick] = ACTIONS(2222), - [sym__fenced_code_block_start_tilde] = ACTIONS(2222), - [sym__blank_line_start] = ACTIONS(2222), - [sym__code_span_start] = ACTIONS(2222), - [sym__emphasis_open_star] = ACTIONS(2222), - [sym__emphasis_open_underscore] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_QMARK] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym__] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [aux_sym__html_block_1_token1] = ACTIONS(2242), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2244), + [anon_sym_LT_QMARK] = ACTIONS(2244), + [aux_sym__html_block_4_token1] = ACTIONS(2244), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2242), + [aux_sym__html_block_6_token1] = ACTIONS(2244), + [aux_sym__html_block_6_token2] = ACTIONS(2242), + [sym__open_tag_html_block] = ACTIONS(2242), + [sym__open_tag_html_block_newline] = ACTIONS(2242), + [sym__closing_tag_html_block] = ACTIONS(2242), + [sym__closing_tag_html_block_newline] = ACTIONS(2242), + [sym_backslash_escape] = ACTIONS(2242), + [sym_entity_reference] = ACTIONS(2242), + [sym_numeric_character_reference] = ACTIONS(2242), + [sym_uri_autolink] = ACTIONS(2242), + [sym_email_autolink] = ACTIONS(2242), + [sym__whitespace_ge_2] = ACTIONS(2242), + [aux_sym__whitespace_token1] = ACTIONS(2244), + [sym__word_no_digit] = ACTIONS(2242), + [sym__digits] = ACTIONS(2242), + [aux_sym__newline_token1] = ACTIONS(2242), + [sym__block_quote_start] = ACTIONS(2242), + [sym__indented_chunk_start] = ACTIONS(2242), + [sym_atx_h1_marker] = ACTIONS(2242), + [sym_atx_h2_marker] = ACTIONS(2242), + [sym_atx_h3_marker] = ACTIONS(2242), + [sym_atx_h4_marker] = ACTIONS(2242), + [sym_atx_h5_marker] = ACTIONS(2242), + [sym_atx_h6_marker] = ACTIONS(2242), + [sym__thematic_break] = ACTIONS(2242), + [sym__list_marker_minus] = ACTIONS(2242), + [sym__list_marker_plus] = ACTIONS(2242), + [sym__list_marker_star] = ACTIONS(2242), + [sym__list_marker_parenthesis] = ACTIONS(2242), + [sym__list_marker_dot] = ACTIONS(2242), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2242), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2242), + [sym__fenced_code_block_start_backtick] = ACTIONS(2242), + [sym__fenced_code_block_start_tilde] = ACTIONS(2242), + [sym__blank_line_start] = ACTIONS(2242), + [sym__code_span_start] = ACTIONS(2242), + [sym__emphasis_open_star] = ACTIONS(2242), + [sym__emphasis_open_underscore] = ACTIONS(2242), }, [456] = { - [sym__block_interrupt_paragraph] = STATE(1792), - [sym_thematic_break] = STATE(1792), - [sym_atx_heading] = STATE(1792), - [sym_fenced_code_block] = STATE(1792), - [sym__html_block_1] = STATE(1792), - [sym__html_block_2] = STATE(1792), - [sym__html_block_3] = STATE(1792), - [sym__html_block_4] = STATE(1792), - [sym__html_block_5] = STATE(1792), - [sym__html_block_6] = STATE(1792), - [sym__blank_line] = STATE(1792), - [sym_block_quote] = STATE(1792), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(2256), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2258), - [anon_sym_LT_QMARK] = ACTIONS(2260), - [aux_sym__html_block_4_token1] = ACTIONS(2262), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2264), - [aux_sym__html_block_6_token1] = ACTIONS(2266), - [aux_sym__html_block_6_token2] = ACTIONS(2268), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(2270), - [sym_atx_h1_marker] = ACTIONS(2272), - [sym_atx_h2_marker] = ACTIONS(2272), - [sym_atx_h3_marker] = ACTIONS(2272), - [sym_atx_h4_marker] = ACTIONS(2272), - [sym_atx_h5_marker] = ACTIONS(2272), - [sym_atx_h6_marker] = ACTIONS(2272), - [sym_setext_h1_underline] = ACTIONS(2274), - [sym_setext_h2_underline] = ACTIONS(2274), - [sym__thematic_break] = ACTIONS(2276), - [sym__list_marker_minus] = ACTIONS(2274), - [sym__list_marker_plus] = ACTIONS(2274), - [sym__list_marker_star] = ACTIONS(2274), - [sym__list_marker_parenthesis] = ACTIONS(2274), - [sym__list_marker_dot] = ACTIONS(2274), - [sym__fenced_code_block_start_backtick] = ACTIONS(2278), - [sym__fenced_code_block_start_tilde] = ACTIONS(2280), - [sym__blank_line_start] = ACTIONS(2282), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_close] = ACTIONS(481), - [sym__last_token_whitespace] = ACTIONS(2284), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(487), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [anon_sym_DOLLAR] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_EQ] = ACTIONS(2256), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_QMARK] = ACTIONS(2256), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_BSLASH] = ACTIONS(2268), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2256), + [anon_sym__] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2256), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2274), + [anon_sym_LT_QMARK] = ACTIONS(2277), + [aux_sym__html_block_4_token1] = ACTIONS(2280), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2283), + [sym_backslash_escape] = ACTIONS(2286), + [sym_entity_reference] = ACTIONS(2286), + [sym_numeric_character_reference] = ACTIONS(2286), + [sym_uri_autolink] = ACTIONS(2286), + [sym_email_autolink] = ACTIONS(2286), + [sym__whitespace_ge_2] = ACTIONS(2289), + [aux_sym__whitespace_token1] = ACTIONS(2292), + [sym__word_no_digit] = ACTIONS(2286), + [sym__digits] = ACTIONS(2286), + [aux_sym__newline_token1] = ACTIONS(606), + [sym__code_span_start] = ACTIONS(2295), + [sym__emphasis_open_star] = ACTIONS(2298), + [sym__emphasis_open_underscore] = ACTIONS(2301), + [sym__emphasis_close_star] = ACTIONS(618), + [sym__last_token_punctuation] = ACTIONS(2304), }, [457] = { - [sym__block_interrupt_paragraph] = STATE(1793), - [sym_thematic_break] = STATE(1793), - [sym_atx_heading] = STATE(1793), - [sym_fenced_code_block] = STATE(1793), - [sym__html_block_1] = STATE(1793), - [sym__html_block_2] = STATE(1793), - [sym__html_block_3] = STATE(1793), - [sym__html_block_4] = STATE(1793), - [sym__html_block_5] = STATE(1793), - [sym__html_block_6] = STATE(1793), - [sym__blank_line] = STATE(1793), - [sym_block_quote] = STATE(1793), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1066), + [sym__word] = STATE(1066), + [sym__newline] = STATE(1103), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(475), + [sym__text_inline_no_link] = STATE(1066), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [aux_sym_link_label_repeat1] = STATE(902), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2306), + [anon_sym_AMP] = ACTIONS(2312), + [anon_sym_SQUOTE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_AT] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_BQUOTE] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_TILDE] = ACTIONS(2306), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2324), + [anon_sym_LT_QMARK] = ACTIONS(2327), + [aux_sym__html_block_4_token1] = ACTIONS(2330), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2333), + [sym_backslash_escape] = ACTIONS(2336), + [sym_entity_reference] = ACTIONS(2339), + [sym_numeric_character_reference] = ACTIONS(2339), + [sym_uri_autolink] = ACTIONS(2339), + [sym_email_autolink] = ACTIONS(2339), + [sym__whitespace_ge_2] = ACTIONS(2342), + [aux_sym__whitespace_token1] = ACTIONS(2345), + [sym__word_no_digit] = ACTIONS(2336), + [sym__digits] = ACTIONS(2336), + [aux_sym__newline_token1] = ACTIONS(2348), + [sym__code_span_start] = ACTIONS(2351), + [sym__emphasis_open_star] = ACTIONS(2354), + [sym__emphasis_open_underscore] = ACTIONS(2357), + [sym__last_token_punctuation] = ACTIONS(2360), + }, + [458] = { + [sym__block_interrupt_paragraph] = STATE(1812), + [sym_thematic_break] = STATE(1812), + [sym_atx_heading] = STATE(1812), + [sym_fenced_code_block] = STATE(1812), + [sym__html_block_1] = STATE(1812), + [sym__html_block_2] = STATE(1812), + [sym__html_block_3] = STATE(1812), + [sym__html_block_4] = STATE(1812), + [sym__html_block_5] = STATE(1812), + [sym__html_block_6] = STATE(1812), + [sym__blank_line] = STATE(1812), + [sym_block_quote] = STATE(1812), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -71466,616 +71560,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2256), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2258), - [anon_sym_LT_QMARK] = ACTIONS(2260), - [aux_sym__html_block_4_token1] = ACTIONS(2262), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2264), - [aux_sym__html_block_6_token1] = ACTIONS(2266), - [aux_sym__html_block_6_token2] = ACTIONS(2268), + [aux_sym__html_block_1_token1] = ACTIONS(2362), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2364), + [anon_sym_LT_QMARK] = ACTIONS(2366), + [aux_sym__html_block_4_token1] = ACTIONS(2368), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2370), + [aux_sym__html_block_6_token1] = ACTIONS(2372), + [aux_sym__html_block_6_token2] = ACTIONS(2374), [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(2270), - [sym_atx_h1_marker] = ACTIONS(2272), - [sym_atx_h2_marker] = ACTIONS(2272), - [sym_atx_h3_marker] = ACTIONS(2272), - [sym_atx_h4_marker] = ACTIONS(2272), - [sym_atx_h5_marker] = ACTIONS(2272), - [sym_atx_h6_marker] = ACTIONS(2272), - [sym_setext_h1_underline] = ACTIONS(2286), - [sym_setext_h2_underline] = ACTIONS(2286), - [sym__thematic_break] = ACTIONS(2276), - [sym__list_marker_minus] = ACTIONS(2286), - [sym__list_marker_plus] = ACTIONS(2286), - [sym__list_marker_star] = ACTIONS(2286), - [sym__list_marker_parenthesis] = ACTIONS(2286), - [sym__list_marker_dot] = ACTIONS(2286), - [sym__fenced_code_block_start_backtick] = ACTIONS(2278), - [sym__fenced_code_block_start_tilde] = ACTIONS(2280), - [sym__blank_line_start] = ACTIONS(2282), + [sym__block_quote_start] = ACTIONS(2376), + [sym_atx_h1_marker] = ACTIONS(2378), + [sym_atx_h2_marker] = ACTIONS(2378), + [sym_atx_h3_marker] = ACTIONS(2378), + [sym_atx_h4_marker] = ACTIONS(2378), + [sym_atx_h5_marker] = ACTIONS(2378), + [sym_atx_h6_marker] = ACTIONS(2378), + [sym_setext_h1_underline] = ACTIONS(2380), + [sym_setext_h2_underline] = ACTIONS(2380), + [sym__thematic_break] = ACTIONS(2382), + [sym__list_marker_minus] = ACTIONS(2380), + [sym__list_marker_plus] = ACTIONS(2380), + [sym__list_marker_star] = ACTIONS(2380), + [sym__list_marker_parenthesis] = ACTIONS(2380), + [sym__list_marker_dot] = ACTIONS(2380), + [sym__fenced_code_block_start_backtick] = ACTIONS(2384), + [sym__fenced_code_block_start_tilde] = ACTIONS(2386), + [sym__blank_line_start] = ACTIONS(2388), [sym__split_token] = ACTIONS(447), [sym__soft_line_break_marker] = ACTIONS(447), [sym__code_span_close] = ACTIONS(415), - [sym__last_token_whitespace] = ACTIONS(2288), - }, - [458] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(485), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_RPAREN] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_COMMA] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_AT] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_BSLASH] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2293), - [anon_sym__] = ACTIONS(2293), - [anon_sym_BQUOTE] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2308), - [anon_sym_LT_QMARK] = ACTIONS(2311), - [aux_sym__html_block_4_token1] = ACTIONS(2314), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2317), - [sym_backslash_escape] = ACTIONS(2320), - [sym_entity_reference] = ACTIONS(2320), - [sym_numeric_character_reference] = ACTIONS(2320), - [sym_uri_autolink] = ACTIONS(2320), - [sym_email_autolink] = ACTIONS(2320), - [sym__whitespace_ge_2] = ACTIONS(2323), - [aux_sym__whitespace_token1] = ACTIONS(2326), - [sym__word_no_digit] = ACTIONS(2320), - [sym__digits] = ACTIONS(2320), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2329), - [sym__emphasis_open_star] = ACTIONS(2332), - [sym__emphasis_open_underscore] = ACTIONS(2335), - [sym__emphasis_close_underscore] = ACTIONS(667), - [sym__last_token_punctuation] = ACTIONS(2338), + [sym__last_token_whitespace] = ACTIONS(2390), }, [459] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(987), - [sym__word] = STATE(987), - [sym__newline] = STATE(1102), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(486), - [sym__text_inline_no_link] = STATE(987), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [aux_sym_link_label_repeat1] = STATE(923), - [anon_sym_BANG] = ACTIONS(2340), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_SLASH] = ACTIONS(2343), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2343), - [anon_sym_GT] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_BSLASH] = ACTIONS(2352), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_CARET] = ACTIONS(2343), - [anon_sym__] = ACTIONS(2343), - [anon_sym_BQUOTE] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_PIPE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2358), - [anon_sym_LT_QMARK] = ACTIONS(2361), - [aux_sym__html_block_4_token1] = ACTIONS(2364), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2367), - [sym_backslash_escape] = ACTIONS(2370), - [sym_entity_reference] = ACTIONS(2373), - [sym_numeric_character_reference] = ACTIONS(2373), - [sym_uri_autolink] = ACTIONS(2373), - [sym_email_autolink] = ACTIONS(2373), - [sym__whitespace_ge_2] = ACTIONS(2376), - [aux_sym__whitespace_token1] = ACTIONS(2379), - [sym__word_no_digit] = ACTIONS(2370), - [sym__digits] = ACTIONS(2370), - [aux_sym__newline_token1] = ACTIONS(2382), - [sym__code_span_start] = ACTIONS(2385), - [sym__emphasis_open_star] = ACTIONS(2388), - [sym__emphasis_open_underscore] = ACTIONS(2391), - [sym__last_token_punctuation] = ACTIONS(2394), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(490), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_COLON] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(2404), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym__] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2410), + [anon_sym_LT_QMARK] = ACTIONS(2413), + [aux_sym__html_block_4_token1] = ACTIONS(2416), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2419), + [sym_backslash_escape] = ACTIONS(2422), + [sym_entity_reference] = ACTIONS(2422), + [sym_numeric_character_reference] = ACTIONS(2422), + [sym_uri_autolink] = ACTIONS(2422), + [sym_email_autolink] = ACTIONS(2422), + [sym__whitespace_ge_2] = ACTIONS(2425), + [aux_sym__whitespace_token1] = ACTIONS(2428), + [sym__word_no_digit] = ACTIONS(2422), + [sym__digits] = ACTIONS(2422), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2431), + [sym__emphasis_open_star] = ACTIONS(2434), + [sym__emphasis_open_underscore] = ACTIONS(2437), + [sym__emphasis_close_underscore] = ACTIONS(673), + [sym__last_token_punctuation] = ACTIONS(2440), }, [460] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(485), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_RPAREN] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_COMMA] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_AT] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_BSLASH] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2293), - [anon_sym__] = ACTIONS(2293), - [anon_sym_BQUOTE] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2308), - [anon_sym_LT_QMARK] = ACTIONS(2311), - [aux_sym__html_block_4_token1] = ACTIONS(2314), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2317), - [sym_backslash_escape] = ACTIONS(2320), - [sym_entity_reference] = ACTIONS(2320), - [sym_numeric_character_reference] = ACTIONS(2320), - [sym_uri_autolink] = ACTIONS(2320), - [sym_email_autolink] = ACTIONS(2320), - [sym__whitespace_ge_2] = ACTIONS(2323), - [aux_sym__whitespace_token1] = ACTIONS(2326), - [sym__word_no_digit] = ACTIONS(2320), - [sym__digits] = ACTIONS(2320), - [aux_sym__newline_token1] = ACTIONS(655), - [sym__code_span_start] = ACTIONS(2329), - [sym__emphasis_open_star] = ACTIONS(2332), - [sym__emphasis_open_underscore] = ACTIONS(2335), - [sym__emphasis_close_underscore] = ACTIONS(667), - [sym__last_token_punctuation] = ACTIONS(2338), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(490), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_COLON] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(2404), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym__] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2410), + [anon_sym_LT_QMARK] = ACTIONS(2413), + [aux_sym__html_block_4_token1] = ACTIONS(2416), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2419), + [sym_backslash_escape] = ACTIONS(2422), + [sym_entity_reference] = ACTIONS(2422), + [sym_numeric_character_reference] = ACTIONS(2422), + [sym_uri_autolink] = ACTIONS(2422), + [sym_email_autolink] = ACTIONS(2422), + [sym__whitespace_ge_2] = ACTIONS(2425), + [aux_sym__whitespace_token1] = ACTIONS(2428), + [sym__word_no_digit] = ACTIONS(2422), + [sym__digits] = ACTIONS(2422), + [aux_sym__newline_token1] = ACTIONS(661), + [sym__code_span_start] = ACTIONS(2431), + [sym__emphasis_open_star] = ACTIONS(2434), + [sym__emphasis_open_underscore] = ACTIONS(2437), + [sym__emphasis_close_underscore] = ACTIONS(673), + [sym__last_token_punctuation] = ACTIONS(2440), }, [461] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(480), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2399), - [anon_sym_POUND] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_PERCENT] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2399), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_COLON] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_BSLASH] = ACTIONS(2408), - [anon_sym_RBRACK] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2399), - [anon_sym__] = ACTIONS(2399), - [anon_sym_BQUOTE] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2414), - [anon_sym_LT_QMARK] = ACTIONS(2417), - [aux_sym__html_block_4_token1] = ACTIONS(2420), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2423), - [sym_backslash_escape] = ACTIONS(2426), - [sym_entity_reference] = ACTIONS(2426), - [sym_numeric_character_reference] = ACTIONS(2426), - [sym_uri_autolink] = ACTIONS(2426), - [sym_email_autolink] = ACTIONS(2426), - [sym__whitespace_ge_2] = ACTIONS(2429), - [aux_sym__whitespace_token1] = ACTIONS(2432), - [sym__word_no_digit] = ACTIONS(2426), - [sym__digits] = ACTIONS(2426), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(487), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [anon_sym_DOLLAR] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_EQ] = ACTIONS(2256), + [anon_sym_GT] = ACTIONS(2256), + [anon_sym_QMARK] = ACTIONS(2256), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_BSLASH] = ACTIONS(2268), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2256), + [anon_sym__] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2256), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2274), + [anon_sym_LT_QMARK] = ACTIONS(2277), + [aux_sym__html_block_4_token1] = ACTIONS(2280), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2283), + [sym_backslash_escape] = ACTIONS(2286), + [sym_entity_reference] = ACTIONS(2286), + [sym_numeric_character_reference] = ACTIONS(2286), + [sym_uri_autolink] = ACTIONS(2286), + [sym_email_autolink] = ACTIONS(2286), + [sym__whitespace_ge_2] = ACTIONS(2289), + [aux_sym__whitespace_token1] = ACTIONS(2292), + [sym__word_no_digit] = ACTIONS(2286), + [sym__digits] = ACTIONS(2286), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2435), - [sym__emphasis_open_star] = ACTIONS(2438), - [sym__emphasis_open_underscore] = ACTIONS(2441), - [sym__emphasis_close_star] = ACTIONS(612), - [sym__last_token_punctuation] = ACTIONS(2444), + [sym__code_span_start] = ACTIONS(2295), + [sym__emphasis_open_star] = ACTIONS(2298), + [sym__emphasis_open_underscore] = ACTIONS(2301), + [sym__emphasis_close_star] = ACTIONS(618), + [sym__last_token_punctuation] = ACTIONS(2304), }, [462] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(480), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2399), - [anon_sym_POUND] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_PERCENT] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2399), - [anon_sym_SLASH] = ACTIONS(2399), - [anon_sym_COLON] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_BSLASH] = ACTIONS(2408), - [anon_sym_RBRACK] = ACTIONS(2411), - [anon_sym_CARET] = ACTIONS(2399), - [anon_sym__] = ACTIONS(2399), - [anon_sym_BQUOTE] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2414), - [anon_sym_LT_QMARK] = ACTIONS(2417), - [aux_sym__html_block_4_token1] = ACTIONS(2420), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2423), - [sym_backslash_escape] = ACTIONS(2426), - [sym_entity_reference] = ACTIONS(2426), - [sym_numeric_character_reference] = ACTIONS(2426), - [sym_uri_autolink] = ACTIONS(2426), - [sym_email_autolink] = ACTIONS(2426), - [sym__whitespace_ge_2] = ACTIONS(2429), - [aux_sym__whitespace_token1] = ACTIONS(2432), - [sym__word_no_digit] = ACTIONS(2426), - [sym__digits] = ACTIONS(2426), - [aux_sym__newline_token1] = ACTIONS(600), - [sym__code_span_start] = ACTIONS(2435), - [sym__emphasis_open_star] = ACTIONS(2438), - [sym__emphasis_open_underscore] = ACTIONS(2441), - [sym__emphasis_close_star] = ACTIONS(612), - [sym__last_token_punctuation] = ACTIONS(2444), + [sym__block_interrupt_paragraph] = STATE(1811), + [sym_thematic_break] = STATE(1811), + [sym_atx_heading] = STATE(1811), + [sym_fenced_code_block] = STATE(1811), + [sym__html_block_1] = STATE(1811), + [sym__html_block_2] = STATE(1811), + [sym__html_block_3] = STATE(1811), + [sym__html_block_4] = STATE(1811), + [sym__html_block_5] = STATE(1811), + [sym__html_block_6] = STATE(1811), + [sym__blank_line] = STATE(1811), + [sym_block_quote] = STATE(1811), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_AT] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_BSLASH] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym__] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [aux_sym__html_block_1_token1] = ACTIONS(2362), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2364), + [anon_sym_LT_QMARK] = ACTIONS(2366), + [aux_sym__html_block_4_token1] = ACTIONS(2368), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2370), + [aux_sym__html_block_6_token1] = ACTIONS(2372), + [aux_sym__html_block_6_token2] = ACTIONS(2374), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(451), + [sym__digits] = ACTIONS(451), + [aux_sym__newline_token1] = ACTIONS(451), + [sym__block_quote_start] = ACTIONS(2376), + [sym_atx_h1_marker] = ACTIONS(2378), + [sym_atx_h2_marker] = ACTIONS(2378), + [sym_atx_h3_marker] = ACTIONS(2378), + [sym_atx_h4_marker] = ACTIONS(2378), + [sym_atx_h5_marker] = ACTIONS(2378), + [sym_atx_h6_marker] = ACTIONS(2378), + [sym_setext_h1_underline] = ACTIONS(2442), + [sym_setext_h2_underline] = ACTIONS(2442), + [sym__thematic_break] = ACTIONS(2382), + [sym__list_marker_minus] = ACTIONS(2442), + [sym__list_marker_plus] = ACTIONS(2442), + [sym__list_marker_star] = ACTIONS(2442), + [sym__list_marker_parenthesis] = ACTIONS(2442), + [sym__list_marker_dot] = ACTIONS(2442), + [sym__fenced_code_block_start_backtick] = ACTIONS(2384), + [sym__fenced_code_block_start_tilde] = ACTIONS(2386), + [sym__blank_line_start] = ACTIONS(2388), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_close] = ACTIONS(451), + [sym__last_token_whitespace] = ACTIONS(2444), }, [463] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(486), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2340), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_SLASH] = ACTIONS(2343), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2343), - [anon_sym_GT] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_BSLASH] = ACTIONS(2352), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_CARET] = ACTIONS(2343), - [anon_sym__] = ACTIONS(2343), - [anon_sym_BQUOTE] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_PIPE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2358), - [anon_sym_LT_QMARK] = ACTIONS(2361), - [aux_sym__html_block_4_token1] = ACTIONS(2364), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2367), - [sym_backslash_escape] = ACTIONS(2373), - [sym_entity_reference] = ACTIONS(2373), - [sym_numeric_character_reference] = ACTIONS(2373), - [sym_uri_autolink] = ACTIONS(2373), - [sym_email_autolink] = ACTIONS(2373), - [sym__whitespace_ge_2] = ACTIONS(2376), - [aux_sym__whitespace_token1] = ACTIONS(2379), - [sym__word_no_digit] = ACTIONS(2373), - [sym__digits] = ACTIONS(2373), - [aux_sym__newline_token1] = ACTIONS(1318), - [sym__code_span_start] = ACTIONS(2385), - [sym__emphasis_open_star] = ACTIONS(2388), - [sym__emphasis_open_underscore] = ACTIONS(2391), - [sym__last_token_punctuation] = ACTIONS(2394), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(475), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2306), + [anon_sym_AMP] = ACTIONS(2312), + [anon_sym_SQUOTE] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_AT] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_BQUOTE] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_TILDE] = ACTIONS(2306), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2324), + [anon_sym_LT_QMARK] = ACTIONS(2327), + [aux_sym__html_block_4_token1] = ACTIONS(2330), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2333), + [sym_backslash_escape] = ACTIONS(2339), + [sym_entity_reference] = ACTIONS(2339), + [sym_numeric_character_reference] = ACTIONS(2339), + [sym_uri_autolink] = ACTIONS(2339), + [sym_email_autolink] = ACTIONS(2339), + [sym__whitespace_ge_2] = ACTIONS(2342), + [aux_sym__whitespace_token1] = ACTIONS(2345), + [sym__word_no_digit] = ACTIONS(2339), + [sym__digits] = ACTIONS(2339), + [aux_sym__newline_token1] = ACTIONS(720), + [sym__code_span_start] = ACTIONS(2351), + [sym__emphasis_open_star] = ACTIONS(2354), + [sym__emphasis_open_underscore] = ACTIONS(2357), + [sym__last_token_punctuation] = ACTIONS(2360), }, [464] = { - [sym__block_interrupt_paragraph] = STATE(1729), - [sym_thematic_break] = STATE(1729), - [sym_atx_heading] = STATE(1729), - [sym_fenced_code_block] = STATE(1729), - [sym__html_block_1] = STATE(1729), - [sym__html_block_2] = STATE(1729), - [sym__html_block_3] = STATE(1729), - [sym__html_block_4] = STATE(1729), - [sym__html_block_5] = STATE(1729), - [sym__html_block_6] = STATE(1729), - [sym__blank_line] = STATE(1729), - [sym_block_quote] = STATE(1729), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(2000), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_QMARK] = ACTIONS(2004), - [aux_sym__html_block_4_token1] = ACTIONS(2006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2008), - [aux_sym__html_block_6_token1] = ACTIONS(2010), - [aux_sym__html_block_6_token2] = ACTIONS(2012), - [sym_backslash_escape] = ACTIONS(481), - [sym_entity_reference] = ACTIONS(481), - [sym_numeric_character_reference] = ACTIONS(481), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(2014), - [sym_atx_h1_marker] = ACTIONS(2016), - [sym_atx_h2_marker] = ACTIONS(2016), - [sym_atx_h3_marker] = ACTIONS(2016), - [sym_atx_h4_marker] = ACTIONS(2016), - [sym_atx_h5_marker] = ACTIONS(2016), - [sym_atx_h6_marker] = ACTIONS(2016), - [sym_setext_h1_underline] = ACTIONS(2018), - [sym_setext_h2_underline] = ACTIONS(2018), - [sym__thematic_break] = ACTIONS(2020), - [sym__list_marker_minus] = ACTIONS(2018), - [sym__list_marker_plus] = ACTIONS(2018), - [sym__list_marker_star] = ACTIONS(2018), - [sym__list_marker_parenthesis] = ACTIONS(2018), - [sym__list_marker_dot] = ACTIONS(2018), - [sym__fenced_code_block_start_backtick] = ACTIONS(2022), - [sym__fenced_code_block_start_tilde] = ACTIONS(2024), - [sym__blank_line_start] = ACTIONS(2026), - }, - [465] = { - [sym__block_interrupt_paragraph] = STATE(1835), - [sym_thematic_break] = STATE(1835), - [sym_atx_heading] = STATE(1835), - [sym_fenced_code_block] = STATE(1835), - [sym__html_block_1] = STATE(1835), - [sym__html_block_2] = STATE(1835), - [sym__html_block_3] = STATE(1835), - [sym__html_block_4] = STATE(1835), - [sym__html_block_5] = STATE(1835), - [sym__html_block_6] = STATE(1835), - [sym__blank_line] = STATE(1835), - [sym_block_quote] = STATE(1835), + [sym__block_interrupt_paragraph] = STATE(1832), + [sym_thematic_break] = STATE(1832), + [sym_atx_heading] = STATE(1832), + [sym_fenced_code_block] = STATE(1832), + [sym__html_block_1] = STATE(1832), + [sym__html_block_2] = STATE(1832), + [sym__html_block_3] = STATE(1832), + [sym__html_block_4] = STATE(1832), + [sym__html_block_5] = STATE(1832), + [sym__html_block_6] = STATE(1832), + [sym__blank_line] = STATE(1832), + [sym_block_quote] = STATE(1832), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -72104,9 +72039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2446), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), @@ -72142,130 +72075,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_break_marker] = ACTIONS(447), [sym__last_token_whitespace] = ACTIONS(2474), }, - [466] = { - [sym__block_interrupt_paragraph] = STATE(1747), - [sym_thematic_break] = STATE(1747), - [sym_atx_heading] = STATE(1747), - [sym_fenced_code_block] = STATE(1747), - [sym__html_block_1] = STATE(1747), - [sym__html_block_2] = STATE(1747), - [sym__html_block_3] = STATE(1747), - [sym__html_block_4] = STATE(1747), - [sym__html_block_5] = STATE(1747), - [sym__html_block_6] = STATE(1747), - [sym__blank_line] = STATE(1747), - [sym_block_quote] = STATE(1747), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_BSLASH] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [aux_sym__html_block_1_token1] = ACTIONS(2000), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_QMARK] = ACTIONS(2004), - [aux_sym__html_block_4_token1] = ACTIONS(2006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2008), - [aux_sym__html_block_6_token1] = ACTIONS(2010), - [aux_sym__html_block_6_token2] = ACTIONS(2012), - [sym_backslash_escape] = ACTIONS(689), - [sym_entity_reference] = ACTIONS(689), - [sym_numeric_character_reference] = ACTIONS(689), - [sym__whitespace_ge_2] = ACTIONS(689), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(689), - [sym__digits] = ACTIONS(689), - [aux_sym__newline_token1] = ACTIONS(689), - [sym__block_quote_start] = ACTIONS(2014), - [sym_atx_h1_marker] = ACTIONS(2016), - [sym_atx_h2_marker] = ACTIONS(2016), - [sym_atx_h3_marker] = ACTIONS(2016), - [sym_atx_h4_marker] = ACTIONS(2016), - [sym_atx_h5_marker] = ACTIONS(2016), - [sym_atx_h6_marker] = ACTIONS(2016), - [sym_setext_h1_underline] = ACTIONS(2476), - [sym_setext_h2_underline] = ACTIONS(2476), - [sym__thematic_break] = ACTIONS(2020), - [sym__list_marker_minus] = ACTIONS(2476), - [sym__list_marker_plus] = ACTIONS(2476), - [sym__list_marker_star] = ACTIONS(2476), - [sym__list_marker_parenthesis] = ACTIONS(2476), - [sym__list_marker_dot] = ACTIONS(2476), - [sym__fenced_code_block_start_backtick] = ACTIONS(2022), - [sym__fenced_code_block_start_tilde] = ACTIONS(2024), - [sym__blank_line_start] = ACTIONS(2026), + [465] = { + [sym__block_interrupt_paragraph] = STATE(1744), + [sym_thematic_break] = STATE(1744), + [sym_atx_heading] = STATE(1744), + [sym_fenced_code_block] = STATE(1744), + [sym__html_block_1] = STATE(1744), + [sym__html_block_2] = STATE(1744), + [sym__html_block_3] = STATE(1744), + [sym__html_block_4] = STATE(1744), + [sym__html_block_5] = STATE(1744), + [sym__html_block_6] = STATE(1744), + [sym__blank_line] = STATE(1744), + [sym_block_quote] = STATE(1744), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(2112), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2114), + [anon_sym_LT_QMARK] = ACTIONS(2116), + [aux_sym__html_block_4_token1] = ACTIONS(2118), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2120), + [aux_sym__html_block_6_token1] = ACTIONS(2122), + [aux_sym__html_block_6_token2] = ACTIONS(2124), + [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(2126), + [sym_atx_h1_marker] = ACTIONS(2128), + [sym_atx_h2_marker] = ACTIONS(2128), + [sym_atx_h3_marker] = ACTIONS(2128), + [sym_atx_h4_marker] = ACTIONS(2128), + [sym_atx_h5_marker] = ACTIONS(2128), + [sym_atx_h6_marker] = ACTIONS(2128), + [sym_setext_h1_underline] = ACTIONS(2130), + [sym_setext_h2_underline] = ACTIONS(2130), + [sym__thematic_break] = ACTIONS(2132), + [sym__list_marker_minus] = ACTIONS(2130), + [sym__list_marker_plus] = ACTIONS(2130), + [sym__list_marker_star] = ACTIONS(2130), + [sym__list_marker_parenthesis] = ACTIONS(2130), + [sym__list_marker_dot] = ACTIONS(2130), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym__fenced_code_block_start_tilde] = ACTIONS(2136), + [sym__blank_line_start] = ACTIONS(2138), }, - [467] = { - [sym__block_interrupt_paragraph] = STATE(1826), - [sym_thematic_break] = STATE(1826), - [sym_atx_heading] = STATE(1826), - [sym_fenced_code_block] = STATE(1826), - [sym__html_block_1] = STATE(1826), - [sym__html_block_2] = STATE(1826), - [sym__html_block_3] = STATE(1826), - [sym__html_block_4] = STATE(1826), - [sym__html_block_5] = STATE(1826), - [sym__html_block_6] = STATE(1826), - [sym__blank_line] = STATE(1826), - [sym_block_quote] = STATE(1826), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), + [466] = { + [sym__block_interrupt_paragraph] = STATE(1835), + [sym_thematic_break] = STATE(1835), + [sym_atx_heading] = STATE(1835), + [sym_fenced_code_block] = STATE(1835), + [sym__html_block_1] = STATE(1835), + [sym__html_block_2] = STATE(1835), + [sym__html_block_3] = STATE(1835), + [sym__html_block_4] = STATE(1835), + [sym__html_block_5] = STATE(1835), + [sym__html_block_6] = STATE(1835), + [sym__blank_line] = STATE(1835), + [sym_block_quote] = STATE(1835), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_AT] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_BSLASH] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym__] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), [aux_sym__html_block_1_token1] = ACTIONS(2446), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), [anon_sym_LT_QMARK] = ACTIONS(2450), @@ -72273,11 +72206,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), [aux_sym__html_block_6_token1] = ACTIONS(2456), [aux_sym__html_block_6_token2] = ACTIONS(2458), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(451), + [sym__digits] = ACTIONS(451), + [aux_sym__newline_token1] = ACTIONS(451), [sym__block_quote_start] = ACTIONS(2460), [sym_atx_h1_marker] = ACTIONS(2462), [sym_atx_h2_marker] = ACTIONS(2462), @@ -72285,79 +72218,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(2462), [sym_atx_h5_marker] = ACTIONS(2462), [sym_atx_h6_marker] = ACTIONS(2462), - [sym_setext_h1_underline] = ACTIONS(2478), - [sym_setext_h2_underline] = ACTIONS(2478), + [sym_setext_h1_underline] = ACTIONS(2476), + [sym_setext_h2_underline] = ACTIONS(2476), [sym__thematic_break] = ACTIONS(2466), - [sym__list_marker_minus] = ACTIONS(2478), - [sym__list_marker_plus] = ACTIONS(2478), - [sym__list_marker_star] = ACTIONS(2478), - [sym__list_marker_parenthesis] = ACTIONS(2478), - [sym__list_marker_dot] = ACTIONS(2478), + [sym__list_marker_minus] = ACTIONS(2476), + [sym__list_marker_plus] = ACTIONS(2476), + [sym__list_marker_star] = ACTIONS(2476), + [sym__list_marker_parenthesis] = ACTIONS(2476), + [sym__list_marker_dot] = ACTIONS(2476), [sym__fenced_code_block_start_backtick] = ACTIONS(2468), [sym__fenced_code_block_start_tilde] = ACTIONS(2470), [sym__blank_line_start] = ACTIONS(2472), [sym__split_token] = ACTIONS(447), [sym__soft_line_break_marker] = ACTIONS(447), - [sym__last_token_whitespace] = ACTIONS(2480), + [sym__last_token_whitespace] = ACTIONS(2478), + }, + [467] = { + [sym__block_interrupt_paragraph] = STATE(1747), + [sym_thematic_break] = STATE(1747), + [sym_atx_heading] = STATE(1747), + [sym_fenced_code_block] = STATE(1747), + [sym__html_block_1] = STATE(1747), + [sym__html_block_2] = STATE(1747), + [sym__html_block_3] = STATE(1747), + [sym__html_block_4] = STATE(1747), + [sym__html_block_5] = STATE(1747), + [sym__html_block_6] = STATE(1747), + [sym__blank_line] = STATE(1747), + [sym_block_quote] = STATE(1747), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_BSLASH] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [aux_sym__html_block_1_token1] = ACTIONS(2112), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2114), + [anon_sym_LT_QMARK] = ACTIONS(2116), + [aux_sym__html_block_4_token1] = ACTIONS(2118), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2120), + [aux_sym__html_block_6_token1] = ACTIONS(2122), + [aux_sym__html_block_6_token2] = ACTIONS(2124), + [sym_backslash_escape] = ACTIONS(734), + [sym_entity_reference] = ACTIONS(734), + [sym_numeric_character_reference] = ACTIONS(734), + [sym__whitespace_ge_2] = ACTIONS(734), + [aux_sym__whitespace_token1] = ACTIONS(736), + [sym__word_no_digit] = ACTIONS(734), + [sym__digits] = ACTIONS(734), + [aux_sym__newline_token1] = ACTIONS(734), + [sym__block_quote_start] = ACTIONS(2126), + [sym_atx_h1_marker] = ACTIONS(2128), + [sym_atx_h2_marker] = ACTIONS(2128), + [sym_atx_h3_marker] = ACTIONS(2128), + [sym_atx_h4_marker] = ACTIONS(2128), + [sym_atx_h5_marker] = ACTIONS(2128), + [sym_atx_h6_marker] = ACTIONS(2128), + [sym_setext_h1_underline] = ACTIONS(2480), + [sym_setext_h2_underline] = ACTIONS(2480), + [sym__thematic_break] = ACTIONS(2132), + [sym__list_marker_minus] = ACTIONS(2480), + [sym__list_marker_plus] = ACTIONS(2480), + [sym__list_marker_star] = ACTIONS(2480), + [sym__list_marker_parenthesis] = ACTIONS(2480), + [sym__list_marker_dot] = ACTIONS(2480), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym__fenced_code_block_start_tilde] = ACTIONS(2136), + [sym__blank_line_start] = ACTIONS(2138), }, [468] = { - [sym__soft_line_break] = STATE(491), - [sym_image] = STATE(491), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(491), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(491), - [sym__whitespace] = STATE(491), - [sym__word] = STATE(491), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(491), - [aux_sym__inline_no_star_no_link] = STATE(491), - [sym__text_inline_no_star_no_link] = STATE(491), - [sym__emphasis_star_no_link] = STATE(1056), - [sym__strong_emphasis_star_no_link] = STATE(491), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(491), - [sym__code_span] = STATE(491), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), + [sym__soft_line_break] = STATE(486), + [sym_image] = STATE(486), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(486), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(486), + [sym__whitespace] = STATE(486), + [sym__word] = STATE(486), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(486), + [aux_sym__inline_no_underscore_no_link] = STATE(486), + [sym__text_inline_no_underscore_no_link] = STATE(486), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(486), + [sym__emphasis_underscore_no_link] = STATE(1081), + [sym__strong_emphasis_underscore_no_link] = STATE(486), + [sym__code_span] = STATE(486), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_RPAREN] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_SLASH] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), + [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(2491), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_GT] = ACTIONS(2485), - [anon_sym_QMARK] = ACTIONS(2485), - [anon_sym_AT] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_QMARK] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym__] = ACTIONS(2485), - [anon_sym_BQUOTE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym__] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2497), [anon_sym_LT_QMARK] = ACTIONS(2500), [aux_sym__html_block_4_token1] = ACTIONS(2503), @@ -72375,1225 +72387,1302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(2521), [sym__emphasis_open_star] = ACTIONS(2524), [sym__emphasis_open_underscore] = ACTIONS(2527), - [sym__emphasis_close_underscore] = ACTIONS(2530), + [sym__emphasis_close_star] = ACTIONS(2530), [sym__last_token_punctuation] = ACTIONS(2532), }, [469] = { + [sym__soft_line_break] = STATE(472), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(472), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(472), + [sym__word] = STATE(472), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(472), + [aux_sym__inline_no_star_no_link] = STATE(472), + [sym__text_inline_no_star_no_link] = STATE(472), + [sym__emphasis_star_no_link] = STATE(1034), + [sym__strong_emphasis_star_no_link] = STATE(472), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(472), + [sym__code_span] = STATE(472), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_DOLLAR] = ACTIONS(2534), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_SLASH] = ACTIONS(2534), + [anon_sym_COLON] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2534), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2546), + [anon_sym_RBRACK] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2534), + [anon_sym_BQUOTE] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2551), + [anon_sym_LT_QMARK] = ACTIONS(2554), + [aux_sym__html_block_4_token1] = ACTIONS(2557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2560), + [sym_backslash_escape] = ACTIONS(2563), + [sym_entity_reference] = ACTIONS(2563), + [sym_numeric_character_reference] = ACTIONS(2563), + [sym_uri_autolink] = ACTIONS(2563), + [sym_email_autolink] = ACTIONS(2563), + [sym__whitespace_ge_2] = ACTIONS(2566), + [aux_sym__whitespace_token1] = ACTIONS(2569), + [sym__word_no_digit] = ACTIONS(2563), + [sym__digits] = ACTIONS(2563), + [aux_sym__newline_token1] = ACTIONS(2572), + [sym__code_span_start] = ACTIONS(2575), + [sym__emphasis_open_star] = ACTIONS(2578), + [sym__emphasis_open_underscore] = ACTIONS(2581), + [sym__last_token_punctuation] = ACTIONS(2584), + }, + [470] = { + [sym__soft_line_break] = STATE(478), + [sym_image] = STATE(478), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(478), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(478), + [sym__whitespace] = STATE(478), + [sym__word] = STATE(478), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(478), + [aux_sym__inline_no_underscore_no_link] = STATE(478), + [sym__text_inline_no_underscore_no_link] = STATE(478), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(478), + [sym__emphasis_underscore_no_link] = STATE(1039), + [sym__strong_emphasis_underscore_no_link] = STATE(478), + [sym__code_span] = STATE(478), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_DOLLAR] = ACTIONS(2586), + [anon_sym_PERCENT] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2586), + [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_BSLASH] = ACTIONS(2598), + [anon_sym_RBRACK] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(2586), + [anon_sym__] = ACTIONS(2586), + [anon_sym_BQUOTE] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2601), + [anon_sym_LT_QMARK] = ACTIONS(2604), + [aux_sym__html_block_4_token1] = ACTIONS(2607), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2610), + [sym_backslash_escape] = ACTIONS(2613), + [sym_entity_reference] = ACTIONS(2613), + [sym_numeric_character_reference] = ACTIONS(2613), + [sym_uri_autolink] = ACTIONS(2613), + [sym_email_autolink] = ACTIONS(2613), + [sym__whitespace_ge_2] = ACTIONS(2616), + [aux_sym__whitespace_token1] = ACTIONS(2619), + [sym__word_no_digit] = ACTIONS(2613), + [sym__digits] = ACTIONS(2613), + [aux_sym__newline_token1] = ACTIONS(2572), + [sym__code_span_start] = ACTIONS(2622), + [sym__emphasis_open_star] = ACTIONS(2625), + [sym__emphasis_open_underscore] = ACTIONS(2628), + [sym__last_token_punctuation] = ACTIONS(2631), + }, + [471] = { + [sym__soft_line_break] = STATE(491), + [sym_image] = STATE(491), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(491), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(491), + [sym__whitespace] = STATE(491), + [sym__word] = STATE(491), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(491), + [aux_sym__inline_no_star_no_link] = STATE(491), + [sym__text_inline_no_star_no_link] = STATE(491), + [sym__emphasis_star_no_link] = STATE(1071), + [sym__strong_emphasis_star_no_link] = STATE(491), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(491), + [sym__code_span] = STATE(491), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2633), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_COLON] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_QMARK] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_BSLASH] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym__] = ACTIONS(2633), + [anon_sym_BQUOTE] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2648), + [anon_sym_LT_QMARK] = ACTIONS(2651), + [aux_sym__html_block_4_token1] = ACTIONS(2654), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2657), + [sym_backslash_escape] = ACTIONS(2660), + [sym_entity_reference] = ACTIONS(2660), + [sym_numeric_character_reference] = ACTIONS(2660), + [sym_uri_autolink] = ACTIONS(2660), + [sym_email_autolink] = ACTIONS(2660), + [sym__whitespace_ge_2] = ACTIONS(2663), + [aux_sym__whitespace_token1] = ACTIONS(2666), + [sym__word_no_digit] = ACTIONS(2660), + [sym__digits] = ACTIONS(2660), + [aux_sym__newline_token1] = ACTIONS(2669), + [sym__code_span_start] = ACTIONS(2672), + [sym__emphasis_open_star] = ACTIONS(2675), + [sym__emphasis_open_underscore] = ACTIONS(2678), + [sym__emphasis_close_underscore] = ACTIONS(2681), + [sym__last_token_punctuation] = ACTIONS(2683), + }, + [472] = { [sym__soft_line_break] = STATE(484), [sym_image] = STATE(484), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), [sym_html_tag] = STATE(484), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), [sym_hard_line_break] = STATE(484), [sym__whitespace] = STATE(484), [sym__word] = STATE(484), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(484), - [aux_sym__inline_no_underscore_no_link] = STATE(484), - [sym__text_inline_no_underscore_no_link] = STATE(484), - [sym__emphasis_star_no_link] = STATE(1060), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), [sym__strong_emphasis_star_no_link] = STATE(484), - [sym__emphasis_underscore_no_link] = STATE(1071), + [sym__emphasis_underscore_no_link] = STATE(1044), [sym__strong_emphasis_underscore_no_link] = STATE(484), [sym__code_span] = STATE(484), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_PERCENT] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_DOT] = ACTIONS(2537), - [anon_sym_SLASH] = ACTIONS(2537), - [anon_sym_COLON] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_EQ] = ACTIONS(2537), - [anon_sym_GT] = ACTIONS(2537), - [anon_sym_QMARK] = ACTIONS(2537), - [anon_sym_AT] = ACTIONS(2537), - [anon_sym_BSLASH] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2537), - [anon_sym__] = ACTIONS(2537), - [anon_sym_BQUOTE] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2549), - [anon_sym_LT_QMARK] = ACTIONS(2552), - [aux_sym__html_block_4_token1] = ACTIONS(2555), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2558), - [sym_backslash_escape] = ACTIONS(2561), - [sym_entity_reference] = ACTIONS(2561), - [sym_numeric_character_reference] = ACTIONS(2561), - [sym_uri_autolink] = ACTIONS(2561), - [sym_email_autolink] = ACTIONS(2561), - [sym__whitespace_ge_2] = ACTIONS(2564), - [aux_sym__whitespace_token1] = ACTIONS(2567), - [sym__word_no_digit] = ACTIONS(2561), - [sym__digits] = ACTIONS(2561), - [aux_sym__newline_token1] = ACTIONS(2570), - [sym__code_span_start] = ACTIONS(2573), - [sym__emphasis_open_star] = ACTIONS(2576), - [sym__emphasis_open_underscore] = ACTIONS(2579), - [sym__emphasis_close_star] = ACTIONS(2582), - [sym__last_token_punctuation] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), + [anon_sym_BSLASH] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), + [anon_sym_LT_QMARK] = ACTIONS(2697), + [aux_sym__html_block_4_token1] = ACTIONS(2699), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), + [sym_backslash_escape] = ACTIONS(2703), + [sym_entity_reference] = ACTIONS(2703), + [sym_numeric_character_reference] = ACTIONS(2703), + [sym_uri_autolink] = ACTIONS(2703), + [sym_email_autolink] = ACTIONS(2703), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(2703), + [sym__digits] = ACTIONS(2703), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2709), + [sym__emphasis_close_star] = ACTIONS(2711), }, - [470] = { - [sym__soft_line_break] = STATE(483), - [sym_image] = STATE(483), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(483), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(483), - [sym__whitespace] = STATE(483), - [sym__word] = STATE(483), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(483), - [aux_sym__inline_no_underscore_no_link] = STATE(483), - [sym__text_inline_no_underscore_no_link] = STATE(483), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(483), - [sym__emphasis_underscore_no_link] = STATE(1061), - [sym__strong_emphasis_underscore_no_link] = STATE(483), - [sym__code_span] = STATE(483), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2589), - [anon_sym_PERCENT] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_RPAREN] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_COMMA] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_DOT] = ACTIONS(2589), - [anon_sym_SLASH] = ACTIONS(2589), - [anon_sym_COLON] = ACTIONS(2589), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_EQ] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), - [anon_sym_QMARK] = ACTIONS(2589), - [anon_sym_AT] = ACTIONS(2589), - [anon_sym_BSLASH] = ACTIONS(2598), - [anon_sym_RBRACK] = ACTIONS(2601), - [anon_sym_CARET] = ACTIONS(2589), - [anon_sym__] = ACTIONS(2589), - [anon_sym_BQUOTE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2603), - [anon_sym_LT_QMARK] = ACTIONS(2606), - [aux_sym__html_block_4_token1] = ACTIONS(2609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2612), - [sym_backslash_escape] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [sym_uri_autolink] = ACTIONS(2615), - [sym_email_autolink] = ACTIONS(2615), - [sym__whitespace_ge_2] = ACTIONS(2618), - [aux_sym__whitespace_token1] = ACTIONS(2621), - [sym__word_no_digit] = ACTIONS(2615), - [sym__digits] = ACTIONS(2615), - [aux_sym__newline_token1] = ACTIONS(2624), - [sym__code_span_start] = ACTIONS(2627), - [sym__emphasis_open_star] = ACTIONS(2630), - [sym__emphasis_open_underscore] = ACTIONS(2633), - [sym__last_token_punctuation] = ACTIONS(2636), + [473] = { + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2731), + [sym_entity_reference] = ACTIONS(2731), + [sym_numeric_character_reference] = ACTIONS(2731), + [sym_uri_autolink] = ACTIONS(2731), + [sym_email_autolink] = ACTIONS(2731), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2731), + [sym__digits] = ACTIONS(2731), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_close_underscore] = ACTIONS(2739), + }, + [474] = { + [sym__soft_line_break] = STATE(484), + [sym_image] = STATE(484), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(484), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(484), + [sym__whitespace] = STATE(484), + [sym__word] = STATE(484), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(484), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(484), + [sym__code_span] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), + [anon_sym_BSLASH] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), + [anon_sym_LT_QMARK] = ACTIONS(2697), + [aux_sym__html_block_4_token1] = ACTIONS(2699), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), + [sym_backslash_escape] = ACTIONS(2703), + [sym_entity_reference] = ACTIONS(2703), + [sym_numeric_character_reference] = ACTIONS(2703), + [sym_uri_autolink] = ACTIONS(2703), + [sym_email_autolink] = ACTIONS(2703), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(2703), + [sym__digits] = ACTIONS(2703), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2709), + [sym__emphasis_close_star] = ACTIONS(2741), + }, + [475] = { + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(481), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_DOLLAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_RPAREN] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_COLON] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_EQ] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_BSLASH] = ACTIONS(2751), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym__] = ACTIONS(2743), + [anon_sym_BQUOTE] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2755), + [anon_sym_LT_QMARK] = ACTIONS(2757), + [aux_sym__html_block_4_token1] = ACTIONS(2759), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2761), + [sym_backslash_escape] = ACTIONS(2763), + [sym_entity_reference] = ACTIONS(2763), + [sym_numeric_character_reference] = ACTIONS(2763), + [sym_uri_autolink] = ACTIONS(2763), + [sym_email_autolink] = ACTIONS(2763), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(2763), + [sym__digits] = ACTIONS(2763), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2767), + [sym__emphasis_open_underscore] = ACTIONS(2769), + }, + [476] = { + [sym__block_interrupt_paragraph] = STATE(1812), + [sym_thematic_break] = STATE(1812), + [sym_atx_heading] = STATE(1812), + [sym_fenced_code_block] = STATE(1812), + [sym__html_block_1] = STATE(1812), + [sym__html_block_2] = STATE(1812), + [sym__html_block_3] = STATE(1812), + [sym__html_block_4] = STATE(1812), + [sym__html_block_5] = STATE(1812), + [sym__html_block_6] = STATE(1812), + [sym__blank_line] = STATE(1812), + [sym_block_quote] = STATE(1812), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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(415), + [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(415), + [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym__] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(2362), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2364), + [anon_sym_LT_QMARK] = ACTIONS(2366), + [aux_sym__html_block_4_token1] = ACTIONS(2368), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2370), + [aux_sym__html_block_6_token1] = ACTIONS(2372), + [aux_sym__html_block_6_token2] = ACTIONS(2374), + [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(2376), + [sym_atx_h1_marker] = ACTIONS(2378), + [sym_atx_h2_marker] = ACTIONS(2378), + [sym_atx_h3_marker] = ACTIONS(2378), + [sym_atx_h4_marker] = ACTIONS(2378), + [sym_atx_h5_marker] = ACTIONS(2378), + [sym_atx_h6_marker] = ACTIONS(2378), + [sym_setext_h1_underline] = ACTIONS(2380), + [sym_setext_h2_underline] = ACTIONS(2380), + [sym__thematic_break] = ACTIONS(2382), + [sym__list_marker_minus] = ACTIONS(2380), + [sym__list_marker_plus] = ACTIONS(2380), + [sym__list_marker_star] = ACTIONS(2380), + [sym__list_marker_parenthesis] = ACTIONS(2380), + [sym__list_marker_dot] = ACTIONS(2380), + [sym__fenced_code_block_start_backtick] = ACTIONS(2384), + [sym__fenced_code_block_start_tilde] = ACTIONS(2386), + [sym__blank_line_start] = ACTIONS(2388), + [sym__code_span_close] = ACTIONS(415), }, - [471] = { + [477] = { [sym__soft_line_break] = STATE(493), [sym_image] = STATE(493), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), [sym_html_tag] = STATE(493), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), [sym_hard_line_break] = STATE(493), [sym__whitespace] = STATE(493), [sym__word] = STATE(493), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(493), - [aux_sym__inline_no_star_no_link] = STATE(493), - [sym__text_inline_no_star_no_link] = STATE(493), - [sym__emphasis_star_no_link] = STATE(1015), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(493), + [aux_sym__inline_no_underscore_no_link] = STATE(493), + [sym__text_inline_no_underscore_no_link] = STATE(493), + [sym__emphasis_star_no_link] = STATE(1038), [sym__strong_emphasis_star_no_link] = STATE(493), - [sym__emphasis_underscore_no_link] = STATE(1016), + [sym__emphasis_underscore_no_link] = STATE(1073), [sym__strong_emphasis_underscore_no_link] = STATE(493), [sym__code_span] = STATE(493), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_QMARK] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_BSLASH] = ACTIONS(2650), - [anon_sym_RBRACK] = ACTIONS(2601), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym__] = ACTIONS(2641), - [anon_sym_BQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2653), - [anon_sym_LT_QMARK] = ACTIONS(2656), - [aux_sym__html_block_4_token1] = ACTIONS(2659), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2662), - [sym_backslash_escape] = ACTIONS(2665), - [sym_entity_reference] = ACTIONS(2665), - [sym_numeric_character_reference] = ACTIONS(2665), - [sym_uri_autolink] = ACTIONS(2665), - [sym_email_autolink] = ACTIONS(2665), - [sym__whitespace_ge_2] = ACTIONS(2668), - [aux_sym__whitespace_token1] = ACTIONS(2671), - [sym__word_no_digit] = ACTIONS(2665), - [sym__digits] = ACTIONS(2665), - [aux_sym__newline_token1] = ACTIONS(2624), - [sym__code_span_start] = ACTIONS(2674), - [sym__emphasis_open_star] = ACTIONS(2677), - [sym__emphasis_open_underscore] = ACTIONS(2680), - [sym__last_token_punctuation] = ACTIONS(2683), - }, - [472] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), - [anon_sym_LT_QMARK] = ACTIONS(2697), - [aux_sym__html_block_4_token1] = ACTIONS(2699), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), - [sym_backslash_escape] = ACTIONS(2703), - [sym_entity_reference] = ACTIONS(2703), - [sym_numeric_character_reference] = ACTIONS(2703), - [sym_uri_autolink] = ACTIONS(2703), - [sym_email_autolink] = ACTIONS(2703), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2703), - [sym__digits] = ACTIONS(2703), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_close_underscore] = ACTIONS(2711), - }, - [473] = { - [sym__soft_line_break] = STATE(473), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(473), - [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(473), - [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_QMARK] = ACTIONS(2716), - [anon_sym_AT] = ACTIONS(2716), - [anon_sym_BSLASH] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2716), - [anon_sym_BQUOTE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2728), - [anon_sym_LT_QMARK] = ACTIONS(2731), - [aux_sym__html_block_4_token1] = ACTIONS(2734), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2737), - [sym_backslash_escape] = ACTIONS(2740), - [sym_entity_reference] = ACTIONS(2740), - [sym_numeric_character_reference] = ACTIONS(2740), - [sym_uri_autolink] = ACTIONS(2740), - [sym_email_autolink] = ACTIONS(2740), - [sym__whitespace_ge_2] = ACTIONS(2743), - [aux_sym__whitespace_token1] = ACTIONS(2746), - [sym__word_no_digit] = ACTIONS(2740), - [sym__digits] = ACTIONS(2740), - [aux_sym__newline_token1] = ACTIONS(2749), - [sym__code_span_start] = ACTIONS(2752), - [sym__emphasis_open_star] = ACTIONS(2755), - [sym__emphasis_open_underscore] = ACTIONS(2758), - [sym__emphasis_close_star] = ACTIONS(2761), - }, - [474] = { - [sym__soft_line_break] = STATE(473), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(473), - [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(473), - [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2781), - [sym_entity_reference] = ACTIONS(2781), - [sym_numeric_character_reference] = ACTIONS(2781), - [sym_uri_autolink] = ACTIONS(2781), - [sym_email_autolink] = ACTIONS(2781), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2781), - [sym__digits] = ACTIONS(2781), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__emphasis_close_star] = ACTIONS(2789), - }, - [475] = { - [sym__block_interrupt_paragraph] = STATE(1792), - [sym_thematic_break] = STATE(1792), - [sym_atx_heading] = STATE(1792), - [sym_fenced_code_block] = STATE(1792), - [sym__html_block_1] = STATE(1792), - [sym__html_block_2] = STATE(1792), - [sym__html_block_3] = STATE(1792), - [sym__html_block_4] = STATE(1792), - [sym__html_block_5] = STATE(1792), - [sym__html_block_6] = STATE(1792), - [sym__blank_line] = STATE(1792), - [sym_block_quote] = STATE(1792), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [aux_sym__html_block_1_token1] = ACTIONS(2256), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2258), - [anon_sym_LT_QMARK] = ACTIONS(2260), - [aux_sym__html_block_4_token1] = ACTIONS(2262), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2264), - [aux_sym__html_block_6_token1] = ACTIONS(2266), - [aux_sym__html_block_6_token2] = ACTIONS(2268), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(2270), - [sym_atx_h1_marker] = ACTIONS(2272), - [sym_atx_h2_marker] = ACTIONS(2272), - [sym_atx_h3_marker] = ACTIONS(2272), - [sym_atx_h4_marker] = ACTIONS(2272), - [sym_atx_h5_marker] = ACTIONS(2272), - [sym_atx_h6_marker] = ACTIONS(2272), - [sym_setext_h1_underline] = ACTIONS(2274), - [sym_setext_h2_underline] = ACTIONS(2274), - [sym__thematic_break] = ACTIONS(2276), - [sym__list_marker_minus] = ACTIONS(2274), - [sym__list_marker_plus] = ACTIONS(2274), - [sym__list_marker_star] = ACTIONS(2274), - [sym__list_marker_parenthesis] = ACTIONS(2274), - [sym__list_marker_dot] = ACTIONS(2274), - [sym__fenced_code_block_start_backtick] = ACTIONS(2278), - [sym__fenced_code_block_start_tilde] = ACTIONS(2280), - [sym__blank_line_start] = ACTIONS(2282), - [sym__code_span_close] = ACTIONS(481), - }, - [476] = { - [sym__soft_line_break] = STATE(473), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(473), - [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(473), - [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2781), - [sym_entity_reference] = ACTIONS(2781), - [sym_numeric_character_reference] = ACTIONS(2781), - [sym_uri_autolink] = ACTIONS(2781), - [sym_email_autolink] = ACTIONS(2781), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2781), - [sym__digits] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2771), + [sym_entity_reference] = ACTIONS(2771), + [sym_numeric_character_reference] = ACTIONS(2771), + [sym_uri_autolink] = ACTIONS(2771), + [sym_email_autolink] = ACTIONS(2771), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2771), + [sym__digits] = ACTIONS(2771), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__emphasis_close_star] = ACTIONS(2791), - }, - [477] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(477), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_DOLLAR] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_COLON] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_BSLASH] = ACTIONS(2805), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym__] = ACTIONS(2796), - [anon_sym_BQUOTE] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2810), - [anon_sym_LT_QMARK] = ACTIONS(2813), - [aux_sym__html_block_4_token1] = ACTIONS(2816), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2819), - [sym_backslash_escape] = ACTIONS(2822), - [sym_entity_reference] = ACTIONS(2822), - [sym_numeric_character_reference] = ACTIONS(2822), - [sym_uri_autolink] = ACTIONS(2822), - [sym_email_autolink] = ACTIONS(2822), - [sym__whitespace_ge_2] = ACTIONS(2825), - [aux_sym__whitespace_token1] = ACTIONS(2828), - [sym__word_no_digit] = ACTIONS(2822), - [sym__digits] = ACTIONS(2822), - [aux_sym__newline_token1] = ACTIONS(2831), - [sym__code_span_start] = ACTIONS(2834), - [sym__emphasis_open_star] = ACTIONS(2837), - [sym__emphasis_open_underscore] = ACTIONS(2840), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__last_token_punctuation] = ACTIONS(2773), }, [478] = { - [sym__soft_line_break] = STATE(473), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(473), - [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(473), - [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2781), - [sym_entity_reference] = ACTIONS(2781), - [sym_numeric_character_reference] = ACTIONS(2781), - [sym_uri_autolink] = ACTIONS(2781), - [sym_email_autolink] = ACTIONS(2781), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2781), - [sym__digits] = ACTIONS(2781), + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2731), + [sym_entity_reference] = ACTIONS(2731), + [sym_numeric_character_reference] = ACTIONS(2731), + [sym_uri_autolink] = ACTIONS(2731), + [sym_email_autolink] = ACTIONS(2731), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2731), + [sym__digits] = ACTIONS(2731), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__emphasis_close_star] = ACTIONS(2843), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_close_underscore] = ACTIONS(2775), }, [479] = { - [sym__soft_line_break] = STATE(473), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(473), - [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(473), - [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2781), - [sym_entity_reference] = ACTIONS(2781), - [sym_numeric_character_reference] = ACTIONS(2781), - [sym_uri_autolink] = ACTIONS(2781), - [sym_email_autolink] = ACTIONS(2781), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2781), - [sym__digits] = ACTIONS(2781), + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2731), + [sym_entity_reference] = ACTIONS(2731), + [sym_numeric_character_reference] = ACTIONS(2731), + [sym_uri_autolink] = ACTIONS(2731), + [sym_email_autolink] = ACTIONS(2731), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2731), + [sym__digits] = ACTIONS(2731), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__emphasis_close_star] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_close_underscore] = ACTIONS(2777), }, [480] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(477), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2849), - [anon_sym_POUND] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_COMMA] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_COLON] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_EQ] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [anon_sym_AT] = ACTIONS(2849), - [anon_sym_BSLASH] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym__] = ACTIONS(2849), - [anon_sym_BQUOTE] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2859), - [anon_sym_LT_QMARK] = ACTIONS(2861), - [aux_sym__html_block_4_token1] = ACTIONS(2863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2865), - [sym_backslash_escape] = ACTIONS(2867), - [sym_entity_reference] = ACTIONS(2867), - [sym_numeric_character_reference] = ACTIONS(2867), - [sym_uri_autolink] = ACTIONS(2867), - [sym_email_autolink] = ACTIONS(2867), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(2867), - [sym__digits] = ACTIONS(2867), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2869), - [sym__emphasis_open_star] = ACTIONS(2871), - [sym__emphasis_open_underscore] = ACTIONS(2873), + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_DOLLAR] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_RPAREN] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_EQ] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_BSLASH] = ACTIONS(2791), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym__] = ACTIONS(2779), + [anon_sym_BQUOTE] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2794), + [anon_sym_LT_QMARK] = ACTIONS(2797), + [aux_sym__html_block_4_token1] = ACTIONS(2800), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2803), + [sym_backslash_escape] = ACTIONS(2806), + [sym_entity_reference] = ACTIONS(2806), + [sym_numeric_character_reference] = ACTIONS(2806), + [sym_uri_autolink] = ACTIONS(2806), + [sym_email_autolink] = ACTIONS(2806), + [sym__whitespace_ge_2] = ACTIONS(2809), + [aux_sym__whitespace_token1] = ACTIONS(2812), + [sym__word_no_digit] = ACTIONS(2806), + [sym__digits] = ACTIONS(2806), + [aux_sym__newline_token1] = ACTIONS(2815), + [sym__code_span_start] = ACTIONS(2818), + [sym__emphasis_open_star] = ACTIONS(2821), + [sym__emphasis_open_underscore] = ACTIONS(2824), + [sym__emphasis_close_underscore] = ACTIONS(2827), }, [481] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2878), - [anon_sym_BSLASH] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym__] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2890), - [anon_sym_LT_QMARK] = ACTIONS(2893), - [aux_sym__html_block_4_token1] = ACTIONS(2896), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2899), - [sym_backslash_escape] = ACTIONS(2902), - [sym_entity_reference] = ACTIONS(2902), - [sym_numeric_character_reference] = ACTIONS(2902), - [sym_uri_autolink] = ACTIONS(2902), - [sym_email_autolink] = ACTIONS(2902), - [sym__whitespace_ge_2] = ACTIONS(2905), - [aux_sym__whitespace_token1] = ACTIONS(2908), - [sym__word_no_digit] = ACTIONS(2902), - [sym__digits] = ACTIONS(2902), - [aux_sym__newline_token1] = ACTIONS(2911), - [sym__code_span_start] = ACTIONS(2914), - [sym__emphasis_open_star] = ACTIONS(2917), - [sym__emphasis_open_underscore] = ACTIONS(2920), - [sym__emphasis_close_underscore] = ACTIONS(2923), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(481), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_DOLLAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_BSLASH] = ACTIONS(2841), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym__] = ACTIONS(2829), + [anon_sym_BQUOTE] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2846), + [anon_sym_LT_QMARK] = ACTIONS(2849), + [aux_sym__html_block_4_token1] = ACTIONS(2852), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2855), + [sym_backslash_escape] = ACTIONS(2858), + [sym_entity_reference] = ACTIONS(2858), + [sym_numeric_character_reference] = ACTIONS(2858), + [sym_uri_autolink] = ACTIONS(2858), + [sym_email_autolink] = ACTIONS(2858), + [sym__whitespace_ge_2] = ACTIONS(2861), + [aux_sym__whitespace_token1] = ACTIONS(2864), + [sym__word_no_digit] = ACTIONS(2858), + [sym__digits] = ACTIONS(2858), + [aux_sym__newline_token1] = ACTIONS(2867), + [sym__code_span_start] = ACTIONS(2870), + [sym__emphasis_open_star] = ACTIONS(2873), + [sym__emphasis_open_underscore] = ACTIONS(2876), }, [482] = { - [sym__block_interrupt_paragraph] = STATE(1807), - [sym_thematic_break] = STATE(1807), - [sym_atx_heading] = STATE(1807), - [sym_fenced_code_block] = STATE(1807), - [sym__html_block_1] = STATE(1807), - [sym__html_block_2] = STATE(1807), - [sym__html_block_3] = STATE(1807), - [sym__html_block_4] = STATE(1807), - [sym__html_block_5] = STATE(1807), - [sym__html_block_6] = STATE(1807), - [sym__blank_line] = STATE(1807), - [sym_block_quote] = STATE(1807), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_BSLASH] = ACTIONS(689), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [aux_sym__html_block_1_token1] = ACTIONS(2256), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2258), - [anon_sym_LT_QMARK] = ACTIONS(2260), - [aux_sym__html_block_4_token1] = ACTIONS(2262), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2264), - [aux_sym__html_block_6_token1] = ACTIONS(2266), - [aux_sym__html_block_6_token2] = ACTIONS(2268), - [sym__whitespace_ge_2] = ACTIONS(689), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(689), - [sym__digits] = ACTIONS(689), - [aux_sym__newline_token1] = ACTIONS(689), - [sym__block_quote_start] = ACTIONS(2270), - [sym_atx_h1_marker] = ACTIONS(2272), - [sym_atx_h2_marker] = ACTIONS(2272), - [sym_atx_h3_marker] = ACTIONS(2272), - [sym_atx_h4_marker] = ACTIONS(2272), - [sym_atx_h5_marker] = ACTIONS(2272), - [sym_atx_h6_marker] = ACTIONS(2272), - [sym_setext_h1_underline] = ACTIONS(2925), - [sym_setext_h2_underline] = ACTIONS(2925), - [sym__thematic_break] = ACTIONS(2276), - [sym__list_marker_minus] = ACTIONS(2925), - [sym__list_marker_plus] = ACTIONS(2925), - [sym__list_marker_star] = ACTIONS(2925), - [sym__list_marker_parenthesis] = ACTIONS(2925), - [sym__list_marker_dot] = ACTIONS(2925), - [sym__fenced_code_block_start_backtick] = ACTIONS(2278), - [sym__fenced_code_block_start_tilde] = ACTIONS(2280), - [sym__blank_line_start] = ACTIONS(2282), - [sym__code_span_close] = ACTIONS(689), - }, - [483] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [sym__soft_line_break] = STATE(488), + [sym_image] = STATE(488), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(488), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(488), + [sym__whitespace] = STATE(488), + [sym__word] = STATE(488), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(488), + [aux_sym__inline_no_star_no_link] = STATE(488), + [sym__text_inline_no_star_no_link] = STATE(488), + [sym__emphasis_star_no_link] = STATE(1080), + [sym__strong_emphasis_star_no_link] = STATE(488), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(488), + [sym__code_span] = STATE(488), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), - [sym_backslash_escape] = ACTIONS(2703), - [sym_entity_reference] = ACTIONS(2703), - [sym_numeric_character_reference] = ACTIONS(2703), - [sym_uri_autolink] = ACTIONS(2703), - [sym_email_autolink] = ACTIONS(2703), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2703), - [sym__digits] = ACTIONS(2703), + [sym_backslash_escape] = ACTIONS(2879), + [sym_entity_reference] = ACTIONS(2879), + [sym_numeric_character_reference] = ACTIONS(2879), + [sym_uri_autolink] = ACTIONS(2879), + [sym_email_autolink] = ACTIONS(2879), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(2879), + [sym__digits] = ACTIONS(2879), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2705), [sym__emphasis_open_star] = ACTIONS(2707), [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_close_underscore] = ACTIONS(2927), + [sym__last_token_punctuation] = ACTIONS(2881), + }, + [483] = { + [sym__block_interrupt_paragraph] = STATE(1827), + [sym_thematic_break] = STATE(1827), + [sym_atx_heading] = STATE(1827), + [sym_fenced_code_block] = STATE(1827), + [sym__html_block_1] = STATE(1827), + [sym__html_block_2] = STATE(1827), + [sym__html_block_3] = STATE(1827), + [sym__html_block_4] = STATE(1827), + [sym__html_block_5] = STATE(1827), + [sym__html_block_6] = STATE(1827), + [sym__blank_line] = STATE(1827), + [sym_block_quote] = STATE(1827), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_BSLASH] = ACTIONS(734), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [aux_sym__html_block_1_token1] = ACTIONS(2362), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2364), + [anon_sym_LT_QMARK] = ACTIONS(2366), + [aux_sym__html_block_4_token1] = ACTIONS(2368), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2370), + [aux_sym__html_block_6_token1] = ACTIONS(2372), + [aux_sym__html_block_6_token2] = ACTIONS(2374), + [sym__whitespace_ge_2] = ACTIONS(734), + [aux_sym__whitespace_token1] = ACTIONS(736), + [sym__word_no_digit] = ACTIONS(734), + [sym__digits] = ACTIONS(734), + [aux_sym__newline_token1] = ACTIONS(734), + [sym__block_quote_start] = ACTIONS(2376), + [sym_atx_h1_marker] = ACTIONS(2378), + [sym_atx_h2_marker] = ACTIONS(2378), + [sym_atx_h3_marker] = ACTIONS(2378), + [sym_atx_h4_marker] = ACTIONS(2378), + [sym_atx_h5_marker] = ACTIONS(2378), + [sym_atx_h6_marker] = ACTIONS(2378), + [sym_setext_h1_underline] = ACTIONS(2883), + [sym_setext_h2_underline] = ACTIONS(2883), + [sym__thematic_break] = ACTIONS(2382), + [sym__list_marker_minus] = ACTIONS(2883), + [sym__list_marker_plus] = ACTIONS(2883), + [sym__list_marker_star] = ACTIONS(2883), + [sym__list_marker_parenthesis] = ACTIONS(2883), + [sym__list_marker_dot] = ACTIONS(2883), + [sym__fenced_code_block_start_backtick] = ACTIONS(2384), + [sym__fenced_code_block_start_tilde] = ACTIONS(2386), + [sym__blank_line_start] = ACTIONS(2388), + [sym__code_span_close] = ACTIONS(734), }, [484] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [sym__soft_line_break] = STATE(484), + [sym_image] = STATE(484), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(484), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(484), + [sym__whitespace] = STATE(484), + [sym__word] = STATE(484), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(484), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(484), + [sym__code_span] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2885), + [anon_sym_DOLLAR] = ACTIONS(2885), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_RPAREN] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_DOT] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_BSLASH] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym__] = ACTIONS(2885), + [anon_sym_BQUOTE] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2900), + [anon_sym_LT_QMARK] = ACTIONS(2903), + [aux_sym__html_block_4_token1] = ACTIONS(2906), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2909), + [sym_backslash_escape] = ACTIONS(2912), + [sym_entity_reference] = ACTIONS(2912), + [sym_numeric_character_reference] = ACTIONS(2912), + [sym_uri_autolink] = ACTIONS(2912), + [sym_email_autolink] = ACTIONS(2912), + [sym__whitespace_ge_2] = ACTIONS(2915), + [aux_sym__whitespace_token1] = ACTIONS(2918), + [sym__word_no_digit] = ACTIONS(2912), + [sym__digits] = ACTIONS(2912), + [aux_sym__newline_token1] = ACTIONS(2921), + [sym__code_span_start] = ACTIONS(2924), + [sym__emphasis_open_star] = ACTIONS(2927), + [sym__emphasis_open_underscore] = ACTIONS(2930), + [sym__emphasis_close_star] = ACTIONS(2933), + }, + [485] = { + [sym__soft_line_break] = STATE(484), + [sym_image] = STATE(484), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(484), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(484), + [sym__whitespace] = STATE(484), + [sym__word] = STATE(484), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(484), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(484), + [sym__code_span] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), @@ -73603,228 +73692,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_numeric_character_reference] = ACTIONS(2703), [sym_uri_autolink] = ACTIONS(2703), [sym_email_autolink] = ACTIONS(2703), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2703), [sym__digits] = ACTIONS(2703), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2705), [sym__emphasis_open_star] = ACTIONS(2707), [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_close_underscore] = ACTIONS(2929), - }, - [485] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(477), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2849), - [anon_sym_POUND] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_COMMA] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_COLON] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_EQ] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [anon_sym_AT] = ACTIONS(2849), - [anon_sym_BSLASH] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym__] = ACTIONS(2849), - [anon_sym_BQUOTE] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2859), - [anon_sym_LT_QMARK] = ACTIONS(2861), - [aux_sym__html_block_4_token1] = ACTIONS(2863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2865), - [sym_backslash_escape] = ACTIONS(2867), - [sym_entity_reference] = ACTIONS(2867), - [sym_numeric_character_reference] = ACTIONS(2867), - [sym_uri_autolink] = ACTIONS(2867), - [sym_email_autolink] = ACTIONS(2867), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(2867), - [sym__digits] = ACTIONS(2867), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2869), - [sym__emphasis_open_star] = ACTIONS(2871), - [sym__emphasis_open_underscore] = ACTIONS(2873), + [sym__emphasis_close_star] = ACTIONS(2935), }, [486] = { - [sym__soft_line_break] = STATE(1039), - [sym_image] = STATE(1039), - [sym__image_inline_link] = STATE(897), - [sym__image_shortcut_link] = STATE(897), - [sym__image_full_reference_link] = STATE(897), - [sym__image_collapsed_reference_link] = STATE(897), - [sym__image_description] = STATE(2224), - [sym__image_description_non_empty] = STATE(891), - [sym_html_tag] = STATE(1039), - [sym__open_tag] = STATE(892), - [sym__closing_tag] = STATE(892), - [sym__html_comment] = STATE(892), - [sym__processing_instruction] = STATE(892), - [sym__declaration] = STATE(892), - [sym__cdata_section] = STATE(892), - [sym_hard_line_break] = STATE(1039), - [sym__whitespace] = STATE(1039), - [sym__word] = STATE(1039), - [sym__newline] = STATE(2220), - [sym__inline_element_no_link] = STATE(1039), - [aux_sym__inline_no_link] = STATE(477), - [sym__text_inline_no_link] = STATE(1039), - [sym__emphasis_star_no_link] = STATE(1042), - [sym__strong_emphasis_star_no_link] = STATE(1039), - [sym__emphasis_underscore_no_link] = STATE(1042), - [sym__strong_emphasis_underscore_no_link] = STATE(1039), - [sym__code_span] = STATE(1039), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2849), - [anon_sym_POUND] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_COMMA] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_COLON] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_EQ] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [anon_sym_AT] = ACTIONS(2849), - [anon_sym_BSLASH] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym__] = ACTIONS(2849), - [anon_sym_BQUOTE] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2859), - [anon_sym_LT_QMARK] = ACTIONS(2861), - [aux_sym__html_block_4_token1] = ACTIONS(2863), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2865), - [sym_backslash_escape] = ACTIONS(2867), - [sym_entity_reference] = ACTIONS(2867), - [sym_numeric_character_reference] = ACTIONS(2867), - [sym_uri_autolink] = ACTIONS(2867), - [sym_email_autolink] = ACTIONS(2867), - [sym__whitespace_ge_2] = ACTIONS(883), - [aux_sym__whitespace_token1] = ACTIONS(885), - [sym__word_no_digit] = ACTIONS(2867), - [sym__digits] = ACTIONS(2867), + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2731), + [sym_entity_reference] = ACTIONS(2731), + [sym_numeric_character_reference] = ACTIONS(2731), + [sym_uri_autolink] = ACTIONS(2731), + [sym_email_autolink] = ACTIONS(2731), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2731), + [sym__digits] = ACTIONS(2731), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2869), - [sym__emphasis_open_star] = ACTIONS(2871), - [sym__emphasis_open_underscore] = ACTIONS(2873), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_close_underscore] = ACTIONS(2937), }, [487] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(481), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_DOLLAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_RPAREN] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_COLON] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_EQ] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_BSLASH] = ACTIONS(2751), + [anon_sym_RBRACK] = ACTIONS(2939), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym__] = ACTIONS(2743), + [anon_sym_BQUOTE] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2755), + [anon_sym_LT_QMARK] = ACTIONS(2757), + [aux_sym__html_block_4_token1] = ACTIONS(2759), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2761), + [sym_backslash_escape] = ACTIONS(2763), + [sym_entity_reference] = ACTIONS(2763), + [sym_numeric_character_reference] = ACTIONS(2763), + [sym_uri_autolink] = ACTIONS(2763), + [sym_email_autolink] = ACTIONS(2763), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(2763), + [sym__digits] = ACTIONS(2763), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2767), + [sym__emphasis_open_underscore] = ACTIONS(2769), + }, + [488] = { + [sym__soft_line_break] = STATE(484), + [sym_image] = STATE(484), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(484), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(484), + [sym__whitespace] = STATE(484), + [sym__word] = STATE(484), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(484), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(484), + [sym__code_span] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), @@ -73834,74 +73923,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_numeric_character_reference] = ACTIONS(2703), [sym_uri_autolink] = ACTIONS(2703), [sym_email_autolink] = ACTIONS(2703), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2703), [sym__digits] = ACTIONS(2703), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2705), [sym__emphasis_open_star] = ACTIONS(2707), [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_close_underscore] = ACTIONS(2935), + [sym__emphasis_close_star] = ACTIONS(2941), }, - [488] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [489] = { + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2731), + [sym_entity_reference] = ACTIONS(2731), + [sym_numeric_character_reference] = ACTIONS(2731), + [sym_uri_autolink] = ACTIONS(2731), + [sym_email_autolink] = ACTIONS(2731), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2731), + [sym__digits] = ACTIONS(2731), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_close_underscore] = ACTIONS(2943), + }, + [490] = { + [sym__soft_line_break] = STATE(1095), + [sym_image] = STATE(1095), + [sym__image_inline_link] = STATE(935), + [sym__image_shortcut_link] = STATE(935), + [sym__image_full_reference_link] = STATE(935), + [sym__image_collapsed_reference_link] = STATE(935), + [sym__image_description] = STATE(2223), + [sym__image_description_non_empty] = STATE(931), + [sym_html_tag] = STATE(1095), + [sym__open_tag] = STATE(930), + [sym__closing_tag] = STATE(930), + [sym__html_comment] = STATE(930), + [sym__processing_instruction] = STATE(930), + [sym__declaration] = STATE(930), + [sym__cdata_section] = STATE(930), + [sym_hard_line_break] = STATE(1095), + [sym__whitespace] = STATE(1095), + [sym__word] = STATE(1095), + [sym__newline] = STATE(2221), + [sym__inline_element_no_link] = STATE(1095), + [aux_sym__inline_no_link] = STATE(481), + [sym__text_inline_no_link] = STATE(1095), + [sym__emphasis_star_no_link] = STATE(1084), + [sym__strong_emphasis_star_no_link] = STATE(1095), + [sym__emphasis_underscore_no_link] = STATE(1084), + [sym__strong_emphasis_underscore_no_link] = STATE(1095), + [sym__code_span] = STATE(1095), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_DOLLAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_RPAREN] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_COLON] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_EQ] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_BSLASH] = ACTIONS(2751), + [anon_sym_RBRACK] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym__] = ACTIONS(2743), + [anon_sym_BQUOTE] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2755), + [anon_sym_LT_QMARK] = ACTIONS(2757), + [aux_sym__html_block_4_token1] = ACTIONS(2759), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2761), + [sym_backslash_escape] = ACTIONS(2763), + [sym_entity_reference] = ACTIONS(2763), + [sym_numeric_character_reference] = ACTIONS(2763), + [sym_uri_autolink] = ACTIONS(2763), + [sym_email_autolink] = ACTIONS(2763), + [sym__whitespace_ge_2] = ACTIONS(947), + [aux_sym__whitespace_token1] = ACTIONS(949), + [sym__word_no_digit] = ACTIONS(2763), + [sym__digits] = ACTIONS(2763), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2767), + [sym__emphasis_open_underscore] = ACTIONS(2769), + }, + [491] = { + [sym__soft_line_break] = STATE(484), + [sym_image] = STATE(484), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(484), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(484), + [sym__whitespace] = STATE(484), + [sym__word] = STATE(484), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(484), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(484), + [sym__code_span] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), @@ -73911,74 +74154,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_numeric_character_reference] = ACTIONS(2703), [sym_uri_autolink] = ACTIONS(2703), [sym_email_autolink] = ACTIONS(2703), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2703), [sym__digits] = ACTIONS(2703), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2705), [sym__emphasis_open_star] = ACTIONS(2707), [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_close_underscore] = ACTIONS(2937), + [sym__emphasis_close_star] = ACTIONS(2947), }, - [489] = { - [sym__soft_line_break] = STATE(481), - [sym_image] = STATE(481), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(481), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(481), - [sym__whitespace] = STATE(481), - [sym__word] = STATE(481), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(481), - [aux_sym__inline_no_underscore_no_link] = STATE(481), - [sym__text_inline_no_underscore_no_link] = STATE(481), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(481), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(481), - [sym__code_span] = STATE(481), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [492] = { + [sym__soft_line_break] = STATE(484), + [sym_image] = STATE(484), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(484), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(484), + [sym__whitespace] = STATE(484), + [sym__word] = STATE(484), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(484), + [aux_sym__inline_no_star_no_link] = STATE(484), + [sym__text_inline_no_star_no_link] = STATE(484), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(484), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(484), + [sym__code_span] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), @@ -73988,445 +74231,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_numeric_character_reference] = ACTIONS(2703), [sym_uri_autolink] = ACTIONS(2703), [sym_email_autolink] = ACTIONS(2703), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2703), [sym__digits] = ACTIONS(2703), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2705), [sym__emphasis_open_star] = ACTIONS(2707), [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_close_underscore] = ACTIONS(2939), + [sym__emphasis_close_star] = ACTIONS(2949), }, - [490] = { - [sym__soft_line_break] = STATE(489), - [sym_image] = STATE(489), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(489), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(489), - [sym__whitespace] = STATE(489), - [sym__word] = STATE(489), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(489), - [aux_sym__inline_no_underscore_no_link] = STATE(489), - [sym__text_inline_no_underscore_no_link] = STATE(489), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(489), - [sym__emphasis_underscore_no_link] = STATE(1017), - [sym__strong_emphasis_underscore_no_link] = STATE(489), - [sym__code_span] = STATE(489), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), - [anon_sym_LT_QMARK] = ACTIONS(2697), - [aux_sym__html_block_4_token1] = ACTIONS(2699), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), - [sym_backslash_escape] = ACTIONS(2941), - [sym_entity_reference] = ACTIONS(2941), - [sym_numeric_character_reference] = ACTIONS(2941), - [sym_uri_autolink] = ACTIONS(2941), - [sym_email_autolink] = ACTIONS(2941), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2941), - [sym__digits] = ACTIONS(2941), + [493] = { + [sym__soft_line_break] = STATE(480), + [sym_image] = STATE(480), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(480), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(480), + [sym__whitespace] = STATE(480), + [sym__word] = STATE(480), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(480), + [aux_sym__inline_no_underscore_no_link] = STATE(480), + [sym__text_inline_no_underscore_no_link] = STATE(480), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(480), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(480), + [sym__code_span] = STATE(480), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2731), + [sym_entity_reference] = ACTIONS(2731), + [sym_numeric_character_reference] = ACTIONS(2731), + [sym_uri_autolink] = ACTIONS(2731), + [sym_email_autolink] = ACTIONS(2731), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2731), + [sym__digits] = ACTIONS(2731), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym__last_token_punctuation] = ACTIONS(2943), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_close_underscore] = ACTIONS(2951), }, - [491] = { + [494] = { [sym__soft_line_break] = STATE(473), [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), [sym_hard_line_break] = STATE(473), [sym__whitespace] = STATE(473), [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(473), + [aux_sym__inline_no_underscore_no_link] = STATE(473), + [sym__text_inline_no_underscore_no_link] = STATE(473), + [sym__emphasis_star_no_link] = STATE(1038), [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), + [sym__emphasis_underscore_no_link] = STATE(1038), [sym__strong_emphasis_underscore_no_link] = STATE(473), [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2781), - [sym_entity_reference] = ACTIONS(2781), - [sym_numeric_character_reference] = ACTIONS(2781), - [sym_uri_autolink] = ACTIONS(2781), - [sym_email_autolink] = ACTIONS(2781), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2781), - [sym__digits] = ACTIONS(2781), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__emphasis_close_star] = ACTIONS(2945), - }, - [492] = { - [sym__soft_line_break] = STATE(478), - [sym_image] = STATE(478), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(478), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(478), - [sym__whitespace] = STATE(478), - [sym__word] = STATE(478), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(478), - [aux_sym__inline_no_star_no_link] = STATE(478), - [sym__text_inline_no_star_no_link] = STATE(478), - [sym__emphasis_star_no_link] = STATE(1082), - [sym__strong_emphasis_star_no_link] = STATE(478), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(478), - [sym__code_span] = STATE(478), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2947), - [sym_entity_reference] = ACTIONS(2947), - [sym_numeric_character_reference] = ACTIONS(2947), - [sym_uri_autolink] = ACTIONS(2947), - [sym_email_autolink] = ACTIONS(2947), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2947), - [sym__digits] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2953), + [sym_entity_reference] = ACTIONS(2953), + [sym_numeric_character_reference] = ACTIONS(2953), + [sym_uri_autolink] = ACTIONS(2953), + [sym_email_autolink] = ACTIONS(2953), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2953), + [sym__digits] = ACTIONS(2953), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__last_token_punctuation] = ACTIONS(2949), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), }, - [493] = { - [sym__soft_line_break] = STATE(473), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(473), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(473), - [sym__word] = STATE(473), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(473), - [aux_sym__inline_no_star_no_link] = STATE(473), - [sym__text_inline_no_star_no_link] = STATE(473), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(473), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(473), - [sym__code_span] = STATE(473), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2781), - [sym_entity_reference] = ACTIONS(2781), - [sym_numeric_character_reference] = ACTIONS(2781), - [sym_uri_autolink] = ACTIONS(2781), - [sym_email_autolink] = ACTIONS(2781), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2781), - [sym__digits] = ACTIONS(2781), + [495] = { + [sym__soft_line_break] = STATE(485), + [sym_image] = STATE(485), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(485), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(485), + [sym__whitespace] = STATE(485), + [sym__word] = STATE(485), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(485), + [aux_sym__inline_no_star_no_link] = STATE(485), + [sym__text_inline_no_star_no_link] = STATE(485), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(485), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(485), + [sym__code_span] = STATE(485), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), + [anon_sym_BSLASH] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), + [anon_sym_LT_QMARK] = ACTIONS(2697), + [aux_sym__html_block_4_token1] = ACTIONS(2699), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), + [sym_backslash_escape] = ACTIONS(2955), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [sym_uri_autolink] = ACTIONS(2955), + [sym_email_autolink] = ACTIONS(2955), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(2955), + [sym__digits] = ACTIONS(2955), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - [sym__emphasis_close_star] = ACTIONS(2951), + [sym__code_span_start] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2709), }, - [494] = { + [496] = { [sym__soft_line_break] = STATE(479), [sym_image] = STATE(479), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), [sym_html_tag] = STATE(479), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), [sym_hard_line_break] = STATE(479), [sym__whitespace] = STATE(479), [sym__word] = STATE(479), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(479), - [aux_sym__inline_no_star_no_link] = STATE(479), - [sym__text_inline_no_star_no_link] = STATE(479), - [sym__emphasis_star_no_link] = STATE(1016), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(479), + [aux_sym__inline_no_underscore_no_link] = STATE(479), + [sym__text_inline_no_underscore_no_link] = STATE(479), + [sym__emphasis_star_no_link] = STATE(1038), [sym__strong_emphasis_star_no_link] = STATE(479), - [sym__emphasis_underscore_no_link] = STATE(1016), + [sym__emphasis_underscore_no_link] = STATE(1038), [sym__strong_emphasis_underscore_no_link] = STATE(479), [sym__code_span] = STATE(479), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2953), - [sym_entity_reference] = ACTIONS(2953), - [sym_numeric_character_reference] = ACTIONS(2953), - [sym_uri_autolink] = ACTIONS(2953), - [sym_email_autolink] = ACTIONS(2953), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2953), - [sym__digits] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2957), + [sym_entity_reference] = ACTIONS(2957), + [sym_numeric_character_reference] = ACTIONS(2957), + [sym_uri_autolink] = ACTIONS(2957), + [sym_email_autolink] = ACTIONS(2957), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2957), + [sym__digits] = ACTIONS(2957), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), }, - [495] = { - [sym__block_interrupt_paragraph] = STATE(1825), - [sym_thematic_break] = STATE(1825), - [sym_atx_heading] = STATE(1825), - [sym_fenced_code_block] = STATE(1825), - [sym__html_block_1] = STATE(1825), - [sym__html_block_2] = STATE(1825), - [sym__html_block_3] = STATE(1825), - [sym__html_block_4] = STATE(1825), - [sym__html_block_5] = STATE(1825), - [sym__html_block_6] = STATE(1825), - [sym__blank_line] = STATE(1825), - [sym_block_quote] = STATE(1825), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(689), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_BSLASH] = ACTIONS(689), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym__] = ACTIONS(689), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), + [497] = { + [sym__block_interrupt_paragraph] = STATE(1832), + [sym_thematic_break] = STATE(1832), + [sym_atx_heading] = STATE(1832), + [sym_fenced_code_block] = STATE(1832), + [sym__html_block_1] = STATE(1832), + [sym__html_block_2] = STATE(1832), + [sym__html_block_3] = STATE(1832), + [sym__html_block_4] = STATE(1832), + [sym__html_block_5] = STATE(1832), + [sym__html_block_6] = STATE(1832), + [sym__blank_line] = STATE(1832), + [sym_block_quote] = STATE(1832), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [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(415), + [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(415), + [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym__] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), [aux_sym__html_block_1_token1] = ACTIONS(2446), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), [anon_sym_LT_QMARK] = ACTIONS(2450), @@ -74434,11 +74598,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), [aux_sym__html_block_6_token1] = ACTIONS(2456), [aux_sym__html_block_6_token2] = ACTIONS(2458), - [sym__whitespace_ge_2] = ACTIONS(689), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(689), - [sym__digits] = ACTIONS(689), - [aux_sym__newline_token1] = ACTIONS(689), + [sym__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(2460), [sym_atx_h1_marker] = ACTIONS(2462), [sym_atx_h2_marker] = ACTIONS(2462), @@ -74446,63 +74610,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(2462), [sym_atx_h5_marker] = ACTIONS(2462), [sym_atx_h6_marker] = ACTIONS(2462), - [sym_setext_h1_underline] = ACTIONS(2955), - [sym_setext_h2_underline] = ACTIONS(2955), + [sym_setext_h1_underline] = ACTIONS(2464), + [sym_setext_h2_underline] = ACTIONS(2464), [sym__thematic_break] = ACTIONS(2466), - [sym__list_marker_minus] = ACTIONS(2955), - [sym__list_marker_plus] = ACTIONS(2955), - [sym__list_marker_star] = ACTIONS(2955), - [sym__list_marker_parenthesis] = ACTIONS(2955), - [sym__list_marker_dot] = ACTIONS(2955), + [sym__list_marker_minus] = ACTIONS(2464), + [sym__list_marker_plus] = ACTIONS(2464), + [sym__list_marker_star] = ACTIONS(2464), + [sym__list_marker_parenthesis] = ACTIONS(2464), + [sym__list_marker_dot] = ACTIONS(2464), [sym__fenced_code_block_start_backtick] = ACTIONS(2468), [sym__fenced_code_block_start_tilde] = ACTIONS(2470), [sym__blank_line_start] = ACTIONS(2472), }, - [496] = { - [sym__block_interrupt_paragraph] = STATE(1826), - [sym_thematic_break] = STATE(1826), - [sym_atx_heading] = STATE(1826), - [sym_fenced_code_block] = STATE(1826), - [sym__html_block_1] = STATE(1826), - [sym__html_block_2] = STATE(1826), - [sym__html_block_3] = STATE(1826), - [sym__html_block_4] = STATE(1826), - [sym__html_block_5] = STATE(1826), - [sym__html_block_6] = STATE(1826), - [sym__blank_line] = STATE(1826), - [sym_block_quote] = STATE(1826), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym__] = ACTIONS(481), - [anon_sym_BQUOTE] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), + [498] = { + [sym__block_interrupt_paragraph] = STATE(1845), + [sym_thematic_break] = STATE(1845), + [sym_atx_heading] = STATE(1845), + [sym_fenced_code_block] = STATE(1845), + [sym__html_block_1] = STATE(1845), + [sym__html_block_2] = STATE(1845), + [sym__html_block_3] = STATE(1845), + [sym__html_block_4] = STATE(1845), + [sym__html_block_5] = STATE(1845), + [sym__html_block_6] = STATE(1845), + [sym__blank_line] = STATE(1845), + [sym_block_quote] = STATE(1845), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_BSLASH] = ACTIONS(734), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), [aux_sym__html_block_1_token1] = ACTIONS(2446), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), [anon_sym_LT_QMARK] = ACTIONS(2450), @@ -74510,11 +74674,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), [aux_sym__html_block_6_token1] = ACTIONS(2456), [aux_sym__html_block_6_token2] = ACTIONS(2458), - [sym__whitespace_ge_2] = ACTIONS(481), - [aux_sym__whitespace_token1] = ACTIONS(483), - [sym__word_no_digit] = ACTIONS(481), - [sym__digits] = ACTIONS(481), - [aux_sym__newline_token1] = ACTIONS(481), + [sym__whitespace_ge_2] = ACTIONS(734), + [aux_sym__whitespace_token1] = ACTIONS(736), + [sym__word_no_digit] = ACTIONS(734), + [sym__digits] = ACTIONS(734), + [aux_sym__newline_token1] = ACTIONS(734), [sym__block_quote_start] = ACTIONS(2460), [sym_atx_h1_marker] = ACTIONS(2462), [sym_atx_h2_marker] = ACTIONS(2462), @@ -74522,407 +74686,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(2462), [sym_atx_h5_marker] = ACTIONS(2462), [sym_atx_h6_marker] = ACTIONS(2462), - [sym_setext_h1_underline] = ACTIONS(2478), - [sym_setext_h2_underline] = ACTIONS(2478), + [sym_setext_h1_underline] = ACTIONS(2959), + [sym_setext_h2_underline] = ACTIONS(2959), [sym__thematic_break] = ACTIONS(2466), - [sym__list_marker_minus] = ACTIONS(2478), - [sym__list_marker_plus] = ACTIONS(2478), - [sym__list_marker_star] = ACTIONS(2478), - [sym__list_marker_parenthesis] = ACTIONS(2478), - [sym__list_marker_dot] = ACTIONS(2478), + [sym__list_marker_minus] = ACTIONS(2959), + [sym__list_marker_plus] = ACTIONS(2959), + [sym__list_marker_star] = ACTIONS(2959), + [sym__list_marker_parenthesis] = ACTIONS(2959), + [sym__list_marker_dot] = ACTIONS(2959), [sym__fenced_code_block_start_backtick] = ACTIONS(2468), [sym__fenced_code_block_start_tilde] = ACTIONS(2470), [sym__blank_line_start] = ACTIONS(2472), }, - [497] = { - [sym__soft_line_break] = STATE(487), - [sym_image] = STATE(487), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(487), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(487), - [sym__whitespace] = STATE(487), - [sym__word] = STATE(487), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(487), - [aux_sym__inline_no_underscore_no_link] = STATE(487), - [sym__text_inline_no_underscore_no_link] = STATE(487), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(487), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(487), - [sym__code_span] = STATE(487), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [499] = { + [sym__soft_line_break] = STATE(492), + [sym_image] = STATE(492), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), + [sym_html_tag] = STATE(492), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), + [sym_hard_line_break] = STATE(492), + [sym__whitespace] = STATE(492), + [sym__word] = STATE(492), + [sym__newline] = STATE(2215), + [sym__inline_element_no_star_no_link] = STATE(492), + [aux_sym__inline_no_star_no_link] = STATE(492), + [sym__text_inline_no_star_no_link] = STATE(492), + [sym__emphasis_star_no_link] = STATE(1044), + [sym__strong_emphasis_star_no_link] = STATE(492), + [sym__emphasis_underscore_no_link] = STATE(1044), + [sym__strong_emphasis_underscore_no_link] = STATE(492), + [sym__code_span] = STATE(492), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), - [sym_backslash_escape] = ACTIONS(2957), - [sym_entity_reference] = ACTIONS(2957), - [sym_numeric_character_reference] = ACTIONS(2957), - [sym_uri_autolink] = ACTIONS(2957), - [sym_email_autolink] = ACTIONS(2957), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2957), - [sym__digits] = ACTIONS(2957), + [sym_backslash_escape] = ACTIONS(2961), + [sym_entity_reference] = ACTIONS(2961), + [sym_numeric_character_reference] = ACTIONS(2961), + [sym_uri_autolink] = ACTIONS(2961), + [sym_email_autolink] = ACTIONS(2961), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), + [sym__word_no_digit] = ACTIONS(2961), + [sym__digits] = ACTIONS(2961), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2705), [sym__emphasis_open_star] = ACTIONS(2707), [sym__emphasis_open_underscore] = ACTIONS(2709), }, - [498] = { - [sym__soft_line_break] = STATE(472), - [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(472), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(472), - [sym__word] = STATE(472), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(472), - [aux_sym__inline_no_underscore_no_link] = STATE(472), - [sym__text_inline_no_underscore_no_link] = STATE(472), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(472), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(472), - [sym__code_span] = STATE(472), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), - [anon_sym_LT_QMARK] = ACTIONS(2697), - [aux_sym__html_block_4_token1] = ACTIONS(2699), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), - [sym_backslash_escape] = ACTIONS(2959), - [sym_entity_reference] = ACTIONS(2959), - [sym_numeric_character_reference] = ACTIONS(2959), - [sym_uri_autolink] = ACTIONS(2959), - [sym_email_autolink] = ACTIONS(2959), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2959), - [sym__digits] = ACTIONS(2959), + [500] = { + [sym__soft_line_break] = STATE(489), + [sym_image] = STATE(489), + [sym__image_inline_link] = STATE(790), + [sym__image_shortcut_link] = STATE(790), + [sym__image_full_reference_link] = STATE(790), + [sym__image_collapsed_reference_link] = STATE(790), + [sym__image_description] = STATE(2214), + [sym__image_description_non_empty] = STATE(915), + [sym_html_tag] = STATE(489), + [sym__open_tag] = STATE(787), + [sym__closing_tag] = STATE(787), + [sym__html_comment] = STATE(787), + [sym__processing_instruction] = STATE(787), + [sym__declaration] = STATE(787), + [sym__cdata_section] = STATE(787), + [sym_hard_line_break] = STATE(489), + [sym__whitespace] = STATE(489), + [sym__word] = STATE(489), + [sym__newline] = STATE(2210), + [sym__inline_element_no_underscore_no_link] = STATE(489), + [aux_sym__inline_no_underscore_no_link] = STATE(489), + [sym__text_inline_no_underscore_no_link] = STATE(489), + [sym__emphasis_star_no_link] = STATE(1038), + [sym__strong_emphasis_star_no_link] = STATE(489), + [sym__emphasis_underscore_no_link] = STATE(1038), + [sym__strong_emphasis_underscore_no_link] = STATE(489), + [sym__code_span] = STATE(489), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_DOT] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_BSLASH] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym__] = ACTIONS(2713), + [anon_sym_BQUOTE] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2723), + [anon_sym_LT_QMARK] = ACTIONS(2725), + [aux_sym__html_block_4_token1] = ACTIONS(2727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2729), + [sym_backslash_escape] = ACTIONS(2963), + [sym_entity_reference] = ACTIONS(2963), + [sym_numeric_character_reference] = ACTIONS(2963), + [sym_uri_autolink] = ACTIONS(2963), + [sym_email_autolink] = ACTIONS(2963), + [sym__whitespace_ge_2] = ACTIONS(822), + [aux_sym__whitespace_token1] = ACTIONS(824), + [sym__word_no_digit] = ACTIONS(2963), + [sym__digits] = ACTIONS(2963), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2709), + [sym__code_span_start] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2735), + [sym__emphasis_open_underscore] = ACTIONS(2737), }, - [499] = { + [501] = { [sym__soft_line_break] = STATE(474), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), + [sym__image_inline_link] = STATE(761), + [sym__image_shortcut_link] = STATE(761), + [sym__image_full_reference_link] = STATE(761), + [sym__image_collapsed_reference_link] = STATE(761), + [sym__image_description] = STATE(2228), + [sym__image_description_non_empty] = STATE(884), [sym_html_tag] = STATE(474), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), + [sym__open_tag] = STATE(763), + [sym__closing_tag] = STATE(763), + [sym__html_comment] = STATE(763), + [sym__processing_instruction] = STATE(763), + [sym__declaration] = STATE(763), + [sym__cdata_section] = STATE(763), [sym_hard_line_break] = STATE(474), [sym__whitespace] = STATE(474), [sym__word] = STATE(474), - [sym__newline] = STATE(2206), + [sym__newline] = STATE(2215), [sym__inline_element_no_star_no_link] = STATE(474), [aux_sym__inline_no_star_no_link] = STATE(474), [sym__text_inline_no_star_no_link] = STATE(474), - [sym__emphasis_star_no_link] = STATE(1016), + [sym__emphasis_star_no_link] = STATE(1044), [sym__strong_emphasis_star_no_link] = STATE(474), - [sym__emphasis_underscore_no_link] = STATE(1016), + [sym__emphasis_underscore_no_link] = STATE(1044), [sym__strong_emphasis_underscore_no_link] = STATE(474), [sym__code_span] = STATE(474), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), - [sym_backslash_escape] = ACTIONS(2961), - [sym_entity_reference] = ACTIONS(2961), - [sym_numeric_character_reference] = ACTIONS(2961), - [sym_uri_autolink] = ACTIONS(2961), - [sym_email_autolink] = ACTIONS(2961), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), - [sym__word_no_digit] = ACTIONS(2961), - [sym__digits] = ACTIONS(2961), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), - }, - [500] = { - [sym__soft_line_break] = STATE(488), - [sym_image] = STATE(488), - [sym__image_inline_link] = STATE(828), - [sym__image_shortcut_link] = STATE(828), - [sym__image_full_reference_link] = STATE(828), - [sym__image_collapsed_reference_link] = STATE(828), - [sym__image_description] = STATE(2213), - [sym__image_description_non_empty] = STATE(918), - [sym_html_tag] = STATE(488), - [sym__open_tag] = STATE(822), - [sym__closing_tag] = STATE(822), - [sym__html_comment] = STATE(822), - [sym__processing_instruction] = STATE(822), - [sym__declaration] = STATE(822), - [sym__cdata_section] = STATE(822), - [sym_hard_line_break] = STATE(488), - [sym__whitespace] = STATE(488), - [sym__word] = STATE(488), - [sym__newline] = STATE(2211), - [sym__inline_element_no_underscore_no_link] = STATE(488), - [aux_sym__inline_no_underscore_no_link] = STATE(488), - [sym__text_inline_no_underscore_no_link] = STATE(488), - [sym__emphasis_star_no_link] = STATE(1060), - [sym__strong_emphasis_star_no_link] = STATE(488), - [sym__emphasis_underscore_no_link] = STATE(1060), - [sym__strong_emphasis_underscore_no_link] = STATE(488), - [sym__code_span] = STATE(488), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_POUND] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2685), [anon_sym_LT] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), [anon_sym_BSLASH] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym__] = ACTIONS(2687), - [anon_sym_BQUOTE] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym__] = ACTIONS(2685), + [anon_sym_BQUOTE] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2695), [anon_sym_LT_QMARK] = ACTIONS(2697), [aux_sym__html_block_4_token1] = ACTIONS(2699), [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2701), - [sym_backslash_escape] = ACTIONS(2963), - [sym_entity_reference] = ACTIONS(2963), - [sym_numeric_character_reference] = ACTIONS(2963), - [sym_uri_autolink] = ACTIONS(2963), - [sym_email_autolink] = ACTIONS(2963), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(2963), - [sym__digits] = ACTIONS(2963), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2709), - }, - [501] = { - [sym__soft_line_break] = STATE(476), - [sym_image] = STATE(476), - [sym__image_inline_link] = STATE(734), - [sym__image_shortcut_link] = STATE(734), - [sym__image_full_reference_link] = STATE(734), - [sym__image_collapsed_reference_link] = STATE(734), - [sym__image_description] = STATE(2221), - [sym__image_description_non_empty] = STATE(877), - [sym_html_tag] = STATE(476), - [sym__open_tag] = STATE(736), - [sym__closing_tag] = STATE(736), - [sym__html_comment] = STATE(736), - [sym__processing_instruction] = STATE(736), - [sym__declaration] = STATE(736), - [sym__cdata_section] = STATE(736), - [sym_hard_line_break] = STATE(476), - [sym__whitespace] = STATE(476), - [sym__word] = STATE(476), - [sym__newline] = STATE(2206), - [sym__inline_element_no_star_no_link] = STATE(476), - [aux_sym__inline_no_star_no_link] = STATE(476), - [sym__text_inline_no_star_no_link] = STATE(476), - [sym__emphasis_star_no_link] = STATE(1016), - [sym__strong_emphasis_star_no_link] = STATE(476), - [sym__emphasis_underscore_no_link] = STATE(1016), - [sym__strong_emphasis_underscore_no_link] = STATE(476), - [sym__code_span] = STATE(476), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_GT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_BSLASH] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym__] = ACTIONS(2765), - [anon_sym_BQUOTE] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2773), - [anon_sym_LT_QMARK] = ACTIONS(2775), - [aux_sym__html_block_4_token1] = ACTIONS(2777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2779), [sym_backslash_escape] = ACTIONS(2965), [sym_entity_reference] = ACTIONS(2965), [sym_numeric_character_reference] = ACTIONS(2965), [sym_uri_autolink] = ACTIONS(2965), [sym_email_autolink] = ACTIONS(2965), - [sym__whitespace_ge_2] = ACTIONS(717), - [aux_sym__whitespace_token1] = ACTIONS(719), + [sym__whitespace_ge_2] = ACTIONS(780), + [aux_sym__whitespace_token1] = ACTIONS(782), [sym__word_no_digit] = ACTIONS(2965), [sym__digits] = ACTIONS(2965), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2783), - [sym__emphasis_open_star] = ACTIONS(2785), - [sym__emphasis_open_underscore] = ACTIONS(2787), + [sym__code_span_start] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2709), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 14, - ACTIONS(75), 1, + ACTIONS(17), 1, aux_sym__html_block_1_token1, - ACTIONS(85), 1, + ACTIONS(27), 1, aux_sym__html_block_6_token1, - ACTIONS(87), 1, + ACTIONS(29), 1, aux_sym__html_block_6_token2, ACTIONS(2969), 1, anon_sym_LBRACK, @@ -74934,12 +74946,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_4_token1, ACTIONS(2978), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - STATE(2612), 1, + STATE(2470), 1, sym_link_label, - ACTIONS(89), 2, + ACTIONS(31), 2, sym__open_tag_html_block, sym__closing_tag_html_block, - ACTIONS(91), 2, + ACTIONS(33), 2, sym__open_tag_html_block_newline, sym__closing_tag_html_block_newline, ACTIONS(2967), 4, @@ -74947,7 +74959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(441), 7, + STATE(455), 7, sym__html_block_1, sym__html_block_2, sym__html_block_3, @@ -74955,10 +74967,12 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_5, sym__html_block_6, sym__html_block_7, - ACTIONS(1767), 40, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74983,9 +74997,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -74997,11 +75009,11 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [93] = 14, - ACTIONS(17), 1, + ACTIONS(75), 1, aux_sym__html_block_1_token1, - ACTIONS(27), 1, + ACTIONS(85), 1, aux_sym__html_block_6_token1, - ACTIONS(29), 1, + ACTIONS(87), 1, aux_sym__html_block_6_token2, ACTIONS(2969), 1, anon_sym_LBRACK, @@ -75013,12 +75025,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_4_token1, ACTIONS(2986), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - STATE(2479), 1, + STATE(2617), 1, sym_link_label, - ACTIONS(31), 2, + ACTIONS(89), 2, sym__open_tag_html_block, sym__closing_tag_html_block, - ACTIONS(33), 2, + ACTIONS(91), 2, sym__open_tag_html_block_newline, sym__closing_tag_html_block_newline, ACTIONS(2967), 4, @@ -75026,7 +75038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(411), 7, + STATE(444), 7, sym__html_block_1, sym__html_block_2, sym__html_block_3, @@ -75034,10 +75046,12 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_5, sym__html_block_6, sym__html_block_7, - ACTIONS(1767), 40, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75062,9 +75076,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -75080,9 +75092,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__newline_token1, ACTIONS(2995), 1, sym__last_token_whitespace, - STATE(922), 1, + STATE(900), 1, sym__soft_line_break, - STATE(2220), 1, + STATE(2221), 1, sym__newline, ACTIONS(2990), 8, anon_sym_AMP, @@ -75097,90 +75109,8 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [258] = 11, - ACTIONS(600), 1, - aux_sym__newline_token1, - ACTIONS(3005), 1, - sym__whitespace_ge_2, - ACTIONS(3008), 1, - aux_sym__whitespace_token1, - ACTIONS(3014), 1, - sym__code_span_close, - STATE(2205), 1, - sym__newline, - ACTIONS(3011), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3000), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(3003), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - STATE(1244), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(612), 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(2997), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75206,53 +75136,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + 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, + [258] = 3, + ACTIONS(2995), 1, + sym__last_token_whitespace, + ACTIONS(2990), 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(2988), 48, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_PIPE, anon_sym_TILDE, - [338] = 12, - ACTIONS(2518), 1, + 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, aux_sym__newline_token1, - ACTIONS(3026), 1, + [322] = 11, + ACTIONS(606), 1, + aux_sym__newline_token1, + ACTIONS(3005), 1, sym__whitespace_ge_2, - ACTIONS(3029), 1, + ACTIONS(3008), 1, aux_sym__whitespace_token1, - ACTIONS(3035), 1, + ACTIONS(3014), 1, sym__code_span_close, - STATE(2205), 1, + STATE(2225), 1, sym__newline, - ACTIONS(3022), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3032), 2, + ACTIONS(3011), 2, sym__word_no_digit, sym__digits, - ACTIONS(3019), 3, + ACTIONS(3000), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(3024), 3, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1255), 5, + STATE(1201), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2530), 10, + ACTIONS(618), 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(3016), 27, + ACTIONS(2997), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75273,56 +75276,58 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [420] = 12, - ACTIONS(2570), 1, + [402] = 12, + ACTIONS(2669), 1, aux_sym__newline_token1, - ACTIONS(3014), 1, - sym__code_span_close, - ACTIONS(3045), 1, + ACTIONS(3026), 1, sym__whitespace_ge_2, - ACTIONS(3048), 1, + ACTIONS(3029), 1, aux_sym__whitespace_token1, - STATE(2205), 1, + ACTIONS(3035), 1, + sym__code_span_close, + STATE(2225), 1, sym__newline, ACTIONS(3022), 2, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3051), 2, + ACTIONS(3032), 2, sym__word_no_digit, sym__digits, - ACTIONS(3040), 3, + ACTIONS(3019), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(3043), 3, + ACTIONS(3024), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1244), 5, + STATE(1237), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2582), 10, + ACTIONS(2681), 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(3037), 27, + ACTIONS(3016), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75346,39 +75351,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [502] = 11, - ACTIONS(655), 1, + [484] = 11, + ACTIONS(661), 1, aux_sym__newline_token1, ACTIONS(3035), 1, sym__code_span_close, - ACTIONS(3062), 1, + ACTIONS(3045), 1, sym__whitespace_ge_2, - ACTIONS(3065), 1, + ACTIONS(3048), 1, aux_sym__whitespace_token1, - STATE(2205), 1, + STATE(2225), 1, sym__newline, - ACTIONS(3068), 2, + ACTIONS(3051), 2, sym__word_no_digit, sym__digits, - ACTIONS(3057), 3, + ACTIONS(3040), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(3060), 3, + ACTIONS(3043), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1255), 5, + STATE(1237), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(667), 10, + ACTIONS(673), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75389,7 +75392,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3054), 29, + ACTIONS(3037), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75415,26 +75420,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [582] = 3, - ACTIONS(2995), 1, - sym__last_token_whitespace, - ACTIONS(2990), 8, + [564] = 12, + ACTIONS(2518), 1, + aux_sym__newline_token1, + ACTIONS(3014), 1, + sym__code_span_close, + ACTIONS(3062), 1, + sym__whitespace_ge_2, + ACTIONS(3065), 1, + aux_sym__whitespace_token1, + STATE(2225), 1, + sym__newline, + ACTIONS(3022), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3068), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3057), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + ACTIONS(3060), 3, 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(2988), 48, + STATE(1201), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(2530), 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(3054), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75455,60 +75487,42 @@ 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, - anon_sym_LBRACE, 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] = 12, + ACTIONS(2572), 1, aux_sym__newline_token1, - [646] = 11, - ACTIONS(1318), 1, - aux_sym__newline_token1, - ACTIONS(3077), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(3079), 1, sym__whitespace_ge_2, - ACTIONS(3080), 1, + ACTIONS(3082), 1, aux_sym__whitespace_token1, - ACTIONS(3086), 1, + ACTIONS(3088), 1, sym__code_span_close, - STATE(2205), 1, + STATE(2225), 1, sym__newline, - ACTIONS(3083), 2, + ACTIONS(3085), 2, sym__word_no_digit, sym__digits, - ACTIONS(2967), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, ACTIONS(3074), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1251), 5, + ACTIONS(3077), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + STATE(1194), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(1767), 9, + ACTIONS(2549), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75518,7 +75532,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3071), 29, + ACTIONS(3071), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75539,46 +75555,41 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [725] = 12, - ACTIONS(2624), 1, + [727] = 11, + ACTIONS(720), 1, aux_sym__newline_token1, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3086), 1, + ACTIONS(3088), 1, sym__code_span_close, ACTIONS(3096), 1, sym__whitespace_ge_2, ACTIONS(3099), 1, aux_sym__whitespace_token1, - STATE(2205), 1, + STATE(2225), 1, sym__newline, ACTIONS(3102), 2, sym__word_no_digit, sym__digits, - ACTIONS(3091), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(3094), 3, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1251), 5, + ACTIONS(3093), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1194), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2601), 9, + ACTIONS(1745), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75588,7 +75599,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3088), 28, + ACTIONS(3090), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75609,13 +75622,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, [806] = 2, ACTIONS(3107), 8, @@ -75631,6 +75643,8 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75656,9 +75670,7 @@ static const uint16_t ts_small_parse_table[] = { 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_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, @@ -75676,37 +75688,38 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [867] = 10, + [867] = 11, ACTIONS(3115), 1, - anon_sym_QMARK_GT, + anon_sym_RBRACK_RBRACK_GT, ACTIONS(3117), 1, sym__whitespace_ge_2, ACTIONS(3120), 1, aux_sym__whitespace_token1, ACTIONS(3126), 1, aux_sym__newline_token1, + ACTIONS(3129), 1, + sym__open_block, ACTIONS(3123), 2, sym__word_no_digit, sym__digits, - ACTIONS(3003), 3, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, ACTIONS(3112), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1557), 4, + anon_sym_RBRACK, + STATE(1618), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(612), 10, + ACTIONS(1745), 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, @@ -75714,6 +75727,8 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, ACTIONS(3109), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75732,55 +75747,54 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [943] = 11, - ACTIONS(3135), 1, - anon_sym_QMARK_GT, + [945] = 10, ACTIONS(3137), 1, + anon_sym_QMARK_GT, + ACTIONS(3139), 1, sym__whitespace_ge_2, - ACTIONS(3140), 1, + ACTIONS(3142), 1, aux_sym__whitespace_token1, - ACTIONS(3146), 1, + ACTIONS(3148), 1, aux_sym__newline_token1, - ACTIONS(3149), 1, - sym__open_block, - ACTIONS(3143), 2, + ACTIONS(3145), 2, sym__word_no_digit, sym__digits, - ACTIONS(2967), 3, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3132), 4, + ACTIONS(3134), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1486), 4, + STATE(1576), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(1767), 9, + ACTIONS(618), 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(3129), 28, + ACTIONS(3131), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75805,26 +75819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, [1021] = 11, - ACTIONS(3159), 1, + ACTIONS(3157), 1, anon_sym_QMARK_GT, - ACTIONS(3161), 1, + ACTIONS(3159), 1, sym__whitespace_ge_2, - ACTIONS(3164), 1, + ACTIONS(3162), 1, aux_sym__whitespace_token1, - ACTIONS(3170), 1, + ACTIONS(3168), 1, aux_sym__newline_token1, - ACTIONS(3157), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3167), 2, + ACTIONS(3171), 1, + sym__open_block, + ACTIONS(3165), 2, sym__word_no_digit, sym__digits, - ACTIONS(3024), 3, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, @@ -75833,23 +75844,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1494), 4, + STATE(1628), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(2530), 10, + ACTIONS(1745), 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(3151), 26, + ACTIONS(3151), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75869,12 +75881,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, [1099] = 10, ACTIONS(3179), 1, @@ -75888,7 +75900,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3187), 2, sym__word_no_digit, sym__digits, - ACTIONS(3060), 3, + ACTIONS(3043), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, @@ -75897,12 +75909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1497), 4, + STATE(1451), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(667), 10, + ACTIONS(673), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75914,6 +75926,8 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, ACTIONS(3173), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75938,37 +75952,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, [1175] = 10, - ACTIONS(3159), 1, + ACTIONS(3198), 1, anon_sym_QMARK_GT, - ACTIONS(3199), 1, + ACTIONS(3200), 1, sym__whitespace_ge_2, - ACTIONS(3202), 1, + ACTIONS(3203), 1, aux_sym__whitespace_token1, - ACTIONS(3208), 1, + ACTIONS(3209), 1, aux_sym__newline_token1, - ACTIONS(3205), 2, + ACTIONS(3206), 2, sym__word_no_digit, sym__digits, - ACTIONS(3060), 3, + ACTIONS(3043), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3196), 4, + ACTIONS(3195), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1494), 4, + STATE(1455), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(667), 10, + ACTIONS(673), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75979,7 +75991,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3193), 28, + ACTIONS(3192), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76004,37 +76018,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, [1251] = 10, - ACTIONS(3217), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3219), 1, + ACTIONS(3137), 1, + anon_sym_QMARK_GT, + ACTIONS(3139), 1, sym__whitespace_ge_2, - ACTIONS(3222), 1, + ACTIONS(3142), 1, aux_sym__whitespace_token1, - ACTIONS(3228), 1, + ACTIONS(3209), 1, aux_sym__newline_token1, - ACTIONS(3225), 2, + ACTIONS(3145), 2, sym__word_no_digit, sym__digits, ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3214), 4, + ACTIONS(3134), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1551), 4, + STATE(1576), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(612), 10, + ACTIONS(618), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76045,7 +76057,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3211), 28, + ACTIONS(3131), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76064,55 +76078,38 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1327] = 11, - ACTIONS(3135), 1, - anon_sym_QMARK_GT, - ACTIONS(3137), 1, - sym__whitespace_ge_2, - ACTIONS(3140), 1, - aux_sym__whitespace_token1, - ACTIONS(3146), 1, - aux_sym__newline_token1, - ACTIONS(3231), 1, - sym__open_block, - ACTIONS(3143), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2967), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3132), 4, + [1327] = 5, + ACTIONS(3211), 1, + sym__line_ending, + STATE(606), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3213), 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(1486), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(1767), 9, + 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, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3129), 28, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76131,22 +76128,31 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1405] = 5, - ACTIONS(3233), 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, + [1393] = 5, + ACTIONS(3215), 1, sym__line_ending, - STATE(560), 1, + STATE(612), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3235), 3, + ACTIONS(3217), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -76163,6 +76169,8 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76188,9 +76196,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -76202,45 +76208,49 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [1471] = 11, - ACTIONS(3243), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3245), 1, + [1459] = 11, + ACTIONS(3137), 1, + anon_sym_QMARK_GT, + ACTIONS(3227), 1, sym__whitespace_ge_2, - ACTIONS(3248), 1, + ACTIONS(3230), 1, aux_sym__whitespace_token1, - ACTIONS(3254), 1, + ACTIONS(3236), 1, aux_sym__newline_token1, - ACTIONS(3257), 1, - sym__open_block, - ACTIONS(3251), 2, + ACTIONS(3225), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3233), 2, sym__word_no_digit, sym__digits, - ACTIONS(2967), 3, + ACTIONS(3060), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3240), 4, + ACTIONS(3222), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1498), 4, + STATE(1576), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(1767), 9, + ACTIONS(2530), 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(3237), 28, + ACTIONS(3219), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76259,38 +76269,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1549] = 5, - ACTIONS(3259), 1, - sym__line_ending, - STATE(574), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3261), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(379), 7, + [1537] = 12, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3247), 1, + anon_sym_RBRACK, + ACTIONS(3249), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3251), 1, + sym__whitespace_ge_2, + ACTIONS(3254), 1, + aux_sym__whitespace_token1, + ACTIONS(3260), 1, + aux_sym__newline_token1, + ACTIONS(3257), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3060), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3242), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + STATE(1573), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(2530), 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(3239), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [1617] = 10, + ACTIONS(3190), 1, + aux_sym__newline_token1, + ACTIONS(3249), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3269), 1, + sym__whitespace_ge_2, + ACTIONS(3272), 1, + aux_sym__whitespace_token1, + ACTIONS(3275), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(377), 43, + ACTIONS(3266), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_RBRACK, + STATE(1573), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(618), 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(3263), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76312,65 +76404,118 @@ 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, + [1693] = 10, + ACTIONS(3179), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3181), 1, + sym__whitespace_ge_2, + ACTIONS(3184), 1, + aux_sym__whitespace_token1, + ACTIONS(3278), 1, + aux_sym__newline_token1, + ACTIONS(3187), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3043), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3176), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_RBRACK, + STATE(1451), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(673), 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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [1615] = 12, - ACTIONS(3179), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3269), 1, + ACTIONS(3173), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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(3271), 1, - anon_sym_RBRACK, - ACTIONS(3273), 1, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [1769] = 11, + ACTIONS(3115), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3117), 1, sym__whitespace_ge_2, - ACTIONS(3276), 1, + ACTIONS(3120), 1, aux_sym__whitespace_token1, - ACTIONS(3282), 1, + ACTIONS(3126), 1, aux_sym__newline_token1, - ACTIONS(3279), 2, + ACTIONS(3281), 1, + sym__open_block, + ACTIONS(3123), 2, sym__word_no_digit, sym__digits, - ACTIONS(3024), 3, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3266), 3, + ACTIONS(3112), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1497), 4, + anon_sym_RBRACK, + STATE(1618), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(2530), 10, + ACTIONS(1745), 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(3263), 27, + ACTIONS(3109), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76391,40 +76536,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1695] = 10, - ACTIONS(3159), 1, + [1847] = 10, + ACTIONS(3198), 1, anon_sym_QMARK_GT, - ACTIONS(3199), 1, + ACTIONS(3200), 1, sym__whitespace_ge_2, - ACTIONS(3202), 1, + ACTIONS(3203), 1, aux_sym__whitespace_token1, - ACTIONS(3285), 1, + ACTIONS(3283), 1, aux_sym__newline_token1, - ACTIONS(3205), 2, + ACTIONS(3206), 2, sym__word_no_digit, sym__digits, - ACTIONS(3060), 3, + ACTIONS(3043), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3196), 4, + ACTIONS(3195), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1494), 4, + STATE(1455), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(667), 10, + ACTIONS(673), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76435,7 +76579,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3193), 28, + ACTIONS(3192), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76460,37 +76606,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1771] = 10, - ACTIONS(3179), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3181), 1, + [1923] = 11, + ACTIONS(3198), 1, + anon_sym_QMARK_GT, + ACTIONS(3292), 1, sym__whitespace_ge_2, - ACTIONS(3184), 1, + ACTIONS(3295), 1, aux_sym__whitespace_token1, - ACTIONS(3287), 1, + ACTIONS(3301), 1, aux_sym__newline_token1, - ACTIONS(3187), 2, + ACTIONS(3225), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3298), 2, sym__word_no_digit, sym__digits, - ACTIONS(3060), 3, + ACTIONS(3024), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3176), 4, + ACTIONS(3289), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1497), 4, + STATE(1455), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(667), 10, + ACTIONS(2681), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76501,7 +76648,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3173), 28, + ACTIONS(3286), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76520,46 +76669,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1847] = 11, - ACTIONS(3115), 1, - anon_sym_QMARK_GT, - ACTIONS(3295), 1, + [2001] = 10, + ACTIONS(3249), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3269), 1, sym__whitespace_ge_2, - ACTIONS(3298), 1, + ACTIONS(3272), 1, aux_sym__whitespace_token1, ACTIONS(3304), 1, aux_sym__newline_token1, - ACTIONS(3157), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3301), 2, + ACTIONS(3275), 2, sym__word_no_digit, sym__digits, - ACTIONS(3043), 3, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3292), 4, + ACTIONS(3266), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1557), 4, + anon_sym_RBRACK, + STATE(1573), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(2582), 10, + ACTIONS(618), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76570,7 +76712,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3289), 26, + ACTIONS(3263), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76589,43 +76733,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [1925] = 11, - ACTIONS(3243), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3245), 1, + [2077] = 11, + ACTIONS(3157), 1, + anon_sym_QMARK_GT, + ACTIONS(3159), 1, sym__whitespace_ge_2, - ACTIONS(3248), 1, + ACTIONS(3162), 1, aux_sym__whitespace_token1, - ACTIONS(3254), 1, + ACTIONS(3168), 1, aux_sym__newline_token1, ACTIONS(3307), 1, sym__open_block, - ACTIONS(3251), 2, + ACTIONS(3165), 2, sym__word_no_digit, sym__digits, ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3240), 4, + ACTIONS(3154), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1498), 4, + STATE(1628), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(1767), 9, + ACTIONS(1745), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76635,7 +76779,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3237), 28, + ACTIONS(3151), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76654,22 +76800,20 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [2003] = 12, - ACTIONS(3217), 1, + [2155] = 12, + ACTIONS(3179), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3269), 1, + ACTIONS(3245), 1, anon_sym_LBRACK, - ACTIONS(3271), 1, + ACTIONS(3247), 1, anon_sym_RBRACK, ACTIONS(3315), 1, sym__whitespace_ge_2, @@ -76680,7 +76824,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3321), 2, sym__word_no_digit, sym__digits, - ACTIONS(3043), 3, + ACTIONS(3024), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, @@ -76688,16 +76832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1551), 4, + STATE(1451), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(2582), 10, + ACTIONS(2681), 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, @@ -76705,6 +76849,8 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, ACTIONS(3309), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76728,48 +76874,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [2083] = 10, - ACTIONS(3115), 1, - anon_sym_QMARK_GT, - ACTIONS(3117), 1, - sym__whitespace_ge_2, - ACTIONS(3120), 1, - aux_sym__whitespace_token1, - ACTIONS(3285), 1, - aux_sym__newline_token1, - ACTIONS(3123), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3003), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3112), 4, + [2235] = 4, + STATE(613), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3327), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(925), 7, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1557), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(612), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(923), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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(3109), 28, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [2298] = 4, + STATE(563), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3329), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(993), 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(991), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76788,54 +76975,106 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [2159] = 10, - ACTIONS(3217), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3219), 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(3222), 1, - aux_sym__whitespace_token1, - ACTIONS(3287), 1, - aux_sym__newline_token1, - ACTIONS(3225), 2, sym__word_no_digit, sym__digits, - ACTIONS(3003), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3214), 4, + aux_sym__newline_token1, + [2361] = 4, + STATE(629), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3331), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1551), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(612), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(854), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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(3211), 28, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [2424] = 4, + STATE(607), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3333), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(897), 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(895), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76857,21 +77096,30 @@ 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, - [2235] = 4, - STATE(543), 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, + [2487] = 4, + STATE(550), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3327), 3, + ACTIONS(3335), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(897), 7, + ACTIONS(925), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76879,11 +77127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(895), 43, + ACTIONS(923), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76909,9 +77159,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -76923,14 +77171,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2298] = 4, - STATE(559), 1, + [2550] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3329), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1008), 7, + ACTIONS(969), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76938,11 +77186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1006), 43, + ACTIONS(967), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76968,9 +77218,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -76982,14 +77230,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2361] = 4, - STATE(606), 1, + [2613] = 4, + STATE(551), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3337), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(956), 7, + ACTIONS(969), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76997,11 +77245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(954), 43, + ACTIONS(967), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77027,9 +77277,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77041,40 +77289,38 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2424] = 12, - ACTIONS(3339), 1, + [2676] = 12, + ACTIONS(3345), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3348), 1, anon_sym_DASH_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3350), 1, sym__whitespace_ge_2, - ACTIONS(3349), 1, + ACTIONS(3353), 1, aux_sym__whitespace_token1, - ACTIONS(3355), 1, + ACTIONS(3359), 1, aux_sym__newline_token1, - ACTIONS(3342), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3352), 2, + ACTIONS(3362), 1, + sym__open_block, + ACTIONS(3356), 2, sym__word_no_digit, sym__digits, - ACTIONS(3024), 3, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3336), 3, + ACTIONS(3342), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1492), 3, + STATE(1632), 3, sym__whitespace, sym__word, sym__newline, - ACTIONS(2530), 11, + ACTIONS(1745), 10, 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, @@ -77082,7 +77328,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3333), 25, + ACTIONS(3339), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77101,52 +77349,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [2503] = 11, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(3364), 1, - anon_sym_DASH, - ACTIONS(3367), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3369), 1, - sym__whitespace_ge_2, - ACTIONS(3372), 1, - aux_sym__whitespace_token1, - ACTIONS(3375), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3003), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3361), 3, + [2755] = 4, + STATE(613), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3327), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(979), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1559), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(612), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(977), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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(3358), 27, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [2818] = 4, + STATE(553), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3364), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(979), 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(977), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77158,11 +77448,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, @@ -77170,18 +77462,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [2580] = 4, - STATE(542), 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, + [2881] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3378), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(809), 7, + ACTIONS(987), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77189,11 +77489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(807), 43, + ACTIONS(985), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77219,9 +77521,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77233,45 +77533,146 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2643] = 11, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(3344), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3386), 1, + [2944] = 4, + STATE(555), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3366), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(987), 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(985), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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(3389), 1, + 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_PIPE, + 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, - ACTIONS(3392), 1, - aux_sym__whitespace_token1, - ACTIONS(3395), 2, sym__word_no_digit, sym__digits, - ACTIONS(3060), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3383), 3, + aux_sym__newline_token1, + [3007] = 4, + STATE(613), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3327), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(993), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1492), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(667), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(991), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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(3380), 27, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [3070] = 4, + STATE(556), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3368), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(993), 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(991), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77283,11 +77684,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, @@ -77295,18 +77698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [2720] = 4, - STATE(606), 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, + [3133] = 4, + STATE(588), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3370), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(972), 7, + ACTIONS(874), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77314,11 +77725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(970), 43, + ACTIONS(872), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77344,9 +77757,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77358,14 +77769,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2783] = 4, - STATE(606), 1, + [3196] = 4, + STATE(534), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3372), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(968), 7, + ACTIONS(850), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77373,11 +77784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(966), 43, + ACTIONS(848), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77403,9 +77816,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77417,14 +77828,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2846] = 4, - STATE(606), 1, + [3259] = 4, + STATE(581), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3374), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(964), 7, + ACTIONS(880), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77432,11 +77843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(962), 43, + ACTIONS(878), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77462,9 +77875,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77476,14 +77887,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2909] = 4, - STATE(606), 1, + [3322] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(905), 7, + ACTIONS(1206), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77491,11 +77902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(903), 43, + ACTIONS(1204), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77521,9 +77934,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77535,14 +77946,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2972] = 4, - STATE(562), 1, + [3385] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1029), 7, + ACTIONS(1372), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77550,11 +77961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1027), 43, + ACTIONS(1370), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77580,9 +77993,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77594,14 +78005,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3035] = 4, - STATE(606), 1, + [3448] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(960), 7, + ACTIONS(1376), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77609,11 +78020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(958), 43, + ACTIONS(1374), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77639,9 +78052,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77653,45 +78064,87 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3098] = 11, - ACTIONS(3364), 1, - anon_sym_DASH, - ACTIONS(3367), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3369), 1, - sym__whitespace_ge_2, - ACTIONS(3372), 1, - aux_sym__whitespace_token1, - ACTIONS(3400), 1, - aux_sym__newline_token1, - ACTIONS(3375), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3003), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3361), 3, + [3511] = 4, + STATE(613), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3327), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1380), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1559), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(612), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(1378), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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(3358), 27, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [3574] = 4, + STATE(607), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3333), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1368), 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(1366), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77703,11 +78156,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, @@ -77715,18 +78170,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [3175] = 4, - STATE(566), 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, + [3637] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3403), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1029), 7, + ACTIONS(1368), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77734,11 +78197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1027), 43, + ACTIONS(1366), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77764,9 +78229,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77778,43 +78241,95 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3238] = 10, - ACTIONS(3243), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3245), 1, + [3700] = 12, + ACTIONS(3382), 1, + anon_sym_DASH, + ACTIONS(3387), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3389), 1, sym__whitespace_ge_2, - ACTIONS(3248), 1, + ACTIONS(3392), 1, aux_sym__whitespace_token1, - ACTIONS(3254), 1, + ACTIONS(3398), 1, aux_sym__newline_token1, - ACTIONS(3251), 2, + ACTIONS(3385), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3395), 2, sym__word_no_digit, sym__digits, - ACTIONS(2967), 3, + ACTIONS(3024), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3240), 4, + ACTIONS(3379), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1498), 4, + STATE(1456), 3, sym__whitespace, sym__word, sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(1767), 9, + ACTIONS(2681), 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(3237), 28, + ACTIONS(3376), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [3779] = 4, + STATE(613), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3327), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1307), 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(1305), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77836,21 +78351,30 @@ 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, - [3313] = 4, - STATE(570), 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, + [3842] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3405), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1267), 7, + ACTIONS(1242), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77858,11 +78382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1265), 43, + ACTIONS(1240), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77888,9 +78414,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77902,14 +78426,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3376] = 4, - STATE(578), 1, + [3905] = 4, + STATE(562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3407), 3, + ACTIONS(3401), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1115), 7, + ACTIONS(1242), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77917,11 +78441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1113), 43, + ACTIONS(1240), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77947,9 +78473,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + 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, + [3968] = 4, + STATE(610), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3403), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(868), 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(866), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_PIPE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -77961,14 +78544,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3439] = 4, - STATE(582), 1, + [4031] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3409), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1259), 7, + ACTIONS(1380), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77976,11 +78559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1257), 43, + ACTIONS(1378), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78006,9 +78591,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78020,14 +78603,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3502] = 4, - STATE(590), 1, + [4094] = 4, + STATE(586), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3411), 3, + ACTIONS(3405), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1186), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78035,11 +78618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1184), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78065,9 +78650,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78079,14 +78662,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3565] = 4, - STATE(629), 1, + [4157] = 4, + STATE(566), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3413), 3, + ACTIONS(3407), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 7, + ACTIONS(756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78094,11 +78677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1103), 43, + ACTIONS(754), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78124,9 +78709,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78138,14 +78721,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3628] = 4, - STATE(621), 1, + [4220] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3415), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1247), 7, + ACTIONS(756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78153,11 +78736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1245), 43, + ACTIONS(754), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78183,9 +78768,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78197,45 +78780,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3691] = 11, - ACTIONS(3344), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3386), 1, - anon_sym_DASH, - ACTIONS(3389), 1, - sym__whitespace_ge_2, - ACTIONS(3392), 1, - aux_sym__whitespace_token1, - ACTIONS(3417), 1, - aux_sym__newline_token1, - ACTIONS(3395), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3060), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3383), 3, + [4283] = 4, + STATE(607), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3333), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1242), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1492), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(667), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(1240), 43, 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(3380), 27, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78247,11 +78813,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, @@ -78259,18 +78827,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [3768] = 4, - STATE(610), 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, + [4346] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3420), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(825), 7, + ACTIONS(897), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78278,11 +78854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(823), 43, + ACTIONS(895), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78308,9 +78886,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78322,26 +78898,47 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3831] = 4, - STATE(617), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3422), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1259), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [4409] = 11, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(3387), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3415), 1, + anon_sym_DASH, + ACTIONS(3418), 1, + sym__whitespace_ge_2, + ACTIONS(3421), 1, + aux_sym__whitespace_token1, + ACTIONS(3424), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3043), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(1257), 43, + ACTIONS(3412), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1456), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(673), 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(3409), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78353,13 +78950,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, @@ -78367,28 +78962,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3894] = 4, - STATE(597), 1, + [4486] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3424), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(1064), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78396,11 +78979,13 @@ 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(1062), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78426,9 +79011,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78440,14 +79023,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3957] = 4, - STATE(573), 1, + [4549] = 4, + STATE(548), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3426), 3, + ACTIONS(3427), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1115), 7, + ACTIONS(794), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78455,11 +79038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1113), 43, + ACTIONS(792), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78485,9 +79070,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78499,14 +79082,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4020] = 4, - STATE(564), 1, + [4612] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3428), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(1376), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78514,11 +79097,13 @@ 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(1374), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78544,9 +79129,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78558,26 +79141,50 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4083] = 4, - STATE(606), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(920), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [4675] = 12, + ACTIONS(3435), 1, + anon_sym_DASH, + ACTIONS(3440), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3442), 1, + sym__whitespace_ge_2, + ACTIONS(3445), 1, + aux_sym__whitespace_token1, + ACTIONS(3451), 1, + aux_sym__newline_token1, + ACTIONS(3438), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3448), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3060), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(918), 43, + ACTIONS(3432), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1579), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(2530), 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(3429), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78589,42 +79196,26 @@ 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, - 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, - [4146] = 4, - STATE(562), 1, + [4754] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(969), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78632,11 +79223,13 @@ 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(967), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78662,9 +79255,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78676,14 +79267,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4209] = 4, - STATE(569), 1, + [4817] = 4, + STATE(572), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3430), 3, + ACTIONS(3454), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1267), 7, + ACTIONS(1064), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78691,11 +79282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1265), 43, + ACTIONS(1062), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78721,9 +79314,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78735,14 +79326,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4272] = 4, - STATE(562), 1, + [4880] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3432), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(405), 7, + ACTIONS(1175), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78750,11 +79341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(403), 43, + ACTIONS(1173), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78780,9 +79373,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78794,14 +79385,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4335] = 4, - STATE(587), 1, + [4943] = 4, + STATE(578), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3435), 3, + ACTIONS(3456), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1029), 7, + ACTIONS(1175), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78809,11 +79400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1027), 43, + ACTIONS(1173), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78839,9 +79432,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78853,14 +79444,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4398] = 4, - STATE(562), 1, + [5006] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(401), 7, + ACTIONS(794), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78868,11 +79459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(399), 43, + ACTIONS(792), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78898,9 +79491,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78912,14 +79503,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4461] = 4, - STATE(606), 1, + [5069] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1029), 7, + ACTIONS(1372), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78927,11 +79518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1027), 43, + ACTIONS(1370), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78957,9 +79550,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78971,14 +79562,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4524] = 4, - STATE(562), 1, + [5132] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1008), 7, + ACTIONS(1206), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78986,11 +79577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1006), 43, + ACTIONS(1204), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79016,9 +79609,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79030,14 +79621,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4587] = 4, - STATE(616), 1, + [5195] = 4, + STATE(543), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3437), 3, + ACTIONS(3458), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1008), 7, + ACTIONS(880), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79045,11 +79636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1006), 43, + ACTIONS(878), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79075,9 +79668,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79089,14 +79680,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4650] = 4, - STATE(606), 1, + [5258] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(851), 7, + ACTIONS(1050), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79104,11 +79695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(849), 43, + ACTIONS(1048), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79134,9 +79727,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79148,14 +79739,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4713] = 4, - STATE(606), 1, + [5321] = 4, + STATE(541), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3460), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(897), 7, + ACTIONS(874), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79163,11 +79754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(895), 43, + ACTIONS(872), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79193,9 +79786,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79207,10 +79798,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4776] = 4, - STATE(562), 1, + [5384] = 4, + STATE(549), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3462), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -79227,6 +79818,8 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79252,9 +79845,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79266,14 +79857,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4839] = 4, - STATE(602), 1, + [5447] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3439), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(950), 7, + ACTIONS(993), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79281,11 +79872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(948), 43, + ACTIONS(991), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79311,9 +79904,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79325,14 +79916,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4902] = 4, - STATE(624), 1, + [5510] = 4, + STATE(539), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3441), 3, + ACTIONS(3464), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1186), 7, + ACTIONS(868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79340,11 +79931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1184), 43, + ACTIONS(866), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79370,9 +79963,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79384,14 +79975,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4965] = 4, - STATE(606), 1, + [5573] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(857), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79399,11 +79990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(855), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79429,9 +80022,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79443,14 +80034,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5028] = 4, - STATE(606), 1, + [5636] = 4, + STATE(604), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3466), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(987), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79458,11 +80049,13 @@ 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(985), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79488,9 +80081,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79502,14 +80093,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5091] = 4, - STATE(614), 1, + [5699] = 4, + STATE(536), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3443), 3, + ACTIONS(3468), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(897), 7, + ACTIONS(862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79517,11 +80108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(895), 43, + ACTIONS(860), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79547,9 +80140,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79561,14 +80152,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5154] = 4, - STATE(565), 1, + [5762] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3445), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(809), 7, + ACTIONS(794), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79576,11 +80167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(807), 43, + ACTIONS(792), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79606,9 +80199,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79620,14 +80211,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5217] = 4, - STATE(618), 1, + [5825] = 4, + STATE(531), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3447), 3, + ACTIONS(3470), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(905), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79635,11 +80226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(903), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79665,9 +80258,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79679,14 +80270,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5280] = 4, - STATE(562), 1, + [5888] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(857), 7, + ACTIONS(987), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79694,11 +80285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(855), 43, + ACTIONS(985), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79724,9 +80317,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79738,14 +80329,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5343] = 4, - STATE(613), 1, + [5951] = 4, + STATE(564), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3449), 3, + ACTIONS(3472), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(857), 7, + ACTIONS(850), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79753,11 +80344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(855), 43, + ACTIONS(848), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79783,9 +80376,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79797,14 +80388,78 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5406] = 4, - STATE(562), 1, + [6014] = 9, + ACTIONS(3096), 1, + sym__whitespace_ge_2, + ACTIONS(3099), 1, + aux_sym__whitespace_token1, + ACTIONS(3477), 1, + sym__code_span_close, + ACTIONS(3474), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2967), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3093), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1705), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(1745), 10, + 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, + aux_sym__newline_token1, + ACTIONS(3090), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [6087] = 4, + STATE(552), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3479), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(950), 7, + ACTIONS(979), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79812,11 +80467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(948), 43, + ACTIONS(977), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79842,9 +80499,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -79856,45 +80511,43 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5469] = 11, - ACTIONS(3135), 1, - anon_sym_QMARK_GT, - ACTIONS(3157), 1, - anon_sym_LBRACK, - ACTIONS(3457), 1, + [6150] = 9, + ACTIONS(3045), 1, sym__whitespace_ge_2, - ACTIONS(3460), 1, + ACTIONS(3048), 1, aux_sym__whitespace_token1, - ACTIONS(3466), 1, - aux_sym__newline_token1, - ACTIONS(3463), 2, + ACTIONS(3484), 1, + sym__code_span_close, + ACTIONS(3481), 2, sym__word_no_digit, sym__digits, - ACTIONS(3094), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3454), 4, + ACTIONS(3040), 3, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1486), 4, + ACTIONS(3043), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + STATE(1650), 4, + sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(2601), 9, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(673), 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(3451), 27, + ACTIONS(3037), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79913,35 +80566,56 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [5546] = 4, - STATE(562), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(837), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [6223] = 11, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(3440), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3492), 1, + anon_sym_DASH, + ACTIONS(3495), 1, + sym__whitespace_ge_2, + ACTIONS(3498), 1, + aux_sym__whitespace_token1, + ACTIONS(3501), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(835), 43, + ACTIONS(3489), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1579), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(618), 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(3486), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79953,13 +80627,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, @@ -79967,40 +80639,45 @@ static const uint16_t ts_small_parse_table[] = { 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, + [6300] = 9, + ACTIONS(3005), 1, sym__whitespace_ge_2, + ACTIONS(3008), 1, + aux_sym__whitespace_token1, + ACTIONS(3507), 1, + sym__code_span_close, + ACTIONS(3504), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [5609] = 4, - STATE(611), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3469), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(837), 7, + ACTIONS(3000), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(835), 43, + STATE(1694), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(618), 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(2997), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80026,49 +80703,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5672] = 11, - ACTIONS(3243), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3269), 1, - anon_sym_LBRACK, - ACTIONS(3477), 1, + [6373] = 10, + ACTIONS(3157), 1, + anon_sym_QMARK_GT, + ACTIONS(3159), 1, sym__whitespace_ge_2, - ACTIONS(3480), 1, + ACTIONS(3162), 1, aux_sym__whitespace_token1, - ACTIONS(3486), 1, + ACTIONS(3168), 1, aux_sym__newline_token1, - ACTIONS(3483), 2, + ACTIONS(3165), 2, sym__word_no_digit, sym__digits, - ACTIONS(3094), 3, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3474), 4, + ACTIONS(3154), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1498), 4, + STATE(1628), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(2601), 9, + ACTIONS(1745), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80078,7 +80741,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3471), 27, + ACTIONS(3151), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80097,23 +80762,24 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [5749] = 4, - STATE(568), 1, + [6448] = 5, + ACTIONS(3509), 1, + sym__line_ending, + STATE(672), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3489), 3, + ACTIONS(3511), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(869), 7, + ACTIONS(379), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80121,11 +80787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(867), 43, + ACTIONS(377), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80151,9 +80818,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80165,78 +80830,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5812] = 9, - ACTIONS(3077), 1, - sym__whitespace_ge_2, - ACTIONS(3080), 1, - aux_sym__whitespace_token1, - ACTIONS(3494), 1, - sym__code_span_close, - ACTIONS(3491), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2967), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3074), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - STATE(1694), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(1767), 10, - 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, - aux_sym__newline_token1, - ACTIONS(3071), 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, - [5885] = 4, - STATE(606), 1, + [6513] = 4, + STATE(576), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3513), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1008), 7, + ACTIONS(794), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80244,11 +80845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1006), 43, + ACTIONS(792), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80274,9 +80877,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80288,16 +80889,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5948] = 5, - ACTIONS(3496), 1, - sym__line_ending, - STATE(643), 1, + [6576] = 4, + STATE(574), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3498), 3, + ACTIONS(3515), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(379), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80305,10 +80904,13 @@ 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(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80334,9 +80936,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80348,14 +80948,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6013] = 4, - STATE(601), 1, + [6639] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3500), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(777), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80363,11 +80963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(775), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80393,9 +80995,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80407,14 +81007,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6076] = 4, - STATE(562), 1, + [6702] = 4, + STATE(599), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3517), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(825), 7, + ACTIONS(1038), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80422,11 +81022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(823), 43, + ACTIONS(1036), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80452,9 +81054,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80466,33 +81066,33 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6139] = 10, - ACTIONS(3135), 1, - anon_sym_QMARK_GT, - ACTIONS(3137), 1, + [6765] = 10, + ACTIONS(3115), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3117), 1, sym__whitespace_ge_2, - ACTIONS(3140), 1, + ACTIONS(3120), 1, aux_sym__whitespace_token1, - ACTIONS(3146), 1, + ACTIONS(3126), 1, aux_sym__newline_token1, - ACTIONS(3143), 2, + ACTIONS(3123), 2, sym__word_no_digit, sym__digits, ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3132), 4, + ACTIONS(3112), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1486), 4, + anon_sym_RBRACK, + STATE(1618), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(1767), 9, + ACTIONS(1745), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80502,7 +81102,9 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3129), 28, + ACTIONS(3109), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80521,95 +81123,56 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [6214] = 4, - STATE(606), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(821), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [6840] = 12, + ACTIONS(3345), 1, + anon_sym_DASH, + ACTIONS(3348), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3350), 1, + sym__whitespace_ge_2, + ACTIONS(3353), 1, + aux_sym__whitespace_token1, + ACTIONS(3359), 1, + aux_sym__newline_token1, + ACTIONS(3519), 1, + sym__open_block, + ACTIONS(3356), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(819), 43, + ACTIONS(3342), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1632), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1745), 10, 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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [6277] = 4, - STATE(540), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3502), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(857), 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(855), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + ACTIONS(3339), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80621,13 +81184,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, @@ -80635,28 +81196,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6340] = 4, - STATE(562), 1, + [6919] = 4, + STATE(570), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3521), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 7, + ACTIONS(862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80664,11 +81213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(819), 43, + ACTIONS(860), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80694,9 +81245,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80708,14 +81257,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6403] = 4, - STATE(594), 1, + [6982] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3504), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(851), 7, + ACTIONS(1307), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80723,11 +81272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(849), 43, + ACTIONS(1305), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80753,9 +81304,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80767,14 +81316,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6466] = 4, - STATE(562), 1, + [7045] = 4, + STATE(608), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3523), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(851), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80782,11 +81331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(849), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80812,9 +81363,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80826,14 +81375,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6529] = 4, - STATE(606), 1, + [7108] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(401), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80841,11 +81390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(399), 43, + ACTIONS(389), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80871,9 +81422,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80885,14 +81434,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6592] = 4, - STATE(596), 1, + [7171] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3506), 3, + ACTIONS(3525), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(869), 7, + ACTIONS(397), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80900,11 +81449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(867), 43, + ACTIONS(395), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80930,9 +81481,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80944,14 +81493,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6655] = 4, - STATE(562), 1, + [7234] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(869), 7, + ACTIONS(404), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80959,11 +81508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(867), 43, + ACTIONS(402), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80989,9 +81540,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81003,14 +81552,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6718] = 4, - STATE(541), 1, + [7297] = 4, + STATE(583), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3508), 3, + ACTIONS(3528), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(950), 7, + ACTIONS(1038), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81018,11 +81567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(948), 43, + ACTIONS(1036), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81048,9 +81599,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81062,14 +81611,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6781] = 4, - STATE(606), 1, + [7360] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(950), 7, + ACTIONS(979), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81077,11 +81626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(948), 43, + ACTIONS(977), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81107,9 +81658,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81121,14 +81670,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6844] = 4, - STATE(562), 1, + [7423] = 4, + STATE(614), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3530), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(905), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81136,11 +81685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(903), 43, + ACTIONS(389), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81166,9 +81717,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81180,14 +81729,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6907] = 4, - STATE(599), 1, + [7486] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3510), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(905), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81195,70 +81744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(903), 43, + ACTIONS(389), 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, - [6970] = 4, - STATE(592), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3512), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(851), 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(849), 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, @@ -81284,9 +81776,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81298,14 +81788,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7033] = 4, - STATE(630), 1, + [7549] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3514), 3, + ACTIONS(3532), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1247), 7, + ACTIONS(397), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81313,11 +81803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1245), 43, + ACTIONS(395), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81343,9 +81835,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81357,14 +81847,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7096] = 4, - STATE(606), 1, + [7612] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3516), 3, + ACTIONS(3327), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(405), 7, + ACTIONS(404), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81372,11 +81862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(403), 43, + ACTIONS(402), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81402,9 +81894,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81416,48 +81906,47 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7159] = 12, - ACTIONS(3367), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3525), 1, - anon_sym_DASH, - ACTIONS(3530), 1, + [7675] = 11, + ACTIONS(3115), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3245), 1, + anon_sym_LBRACK, + ACTIONS(3541), 1, sym__whitespace_ge_2, - ACTIONS(3533), 1, + ACTIONS(3544), 1, aux_sym__whitespace_token1, - ACTIONS(3539), 1, + ACTIONS(3550), 1, aux_sym__newline_token1, - ACTIONS(3528), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3536), 2, + ACTIONS(3547), 2, sym__word_no_digit, sym__digits, - ACTIONS(3043), 3, + ACTIONS(3077), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3522), 3, + ACTIONS(3538), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1559), 3, + anon_sym_RBRACK, + STATE(1618), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(2582), 11, + aux_sym__processing_instruction_repeat1, + ACTIONS(2549), 9, 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(3519), 25, + ACTIONS(3535), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81469,28 +81958,28 @@ 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_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [7238] = 4, - STATE(627), 1, + [7752] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3542), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 7, + ACTIONS(1050), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81498,11 +81987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1103), 43, + ACTIONS(1048), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81528,9 +82019,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81542,26 +82031,47 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7301] = 4, - STATE(562), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(956), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [7815] = 11, + ACTIONS(3157), 1, + anon_sym_QMARK_GT, + ACTIONS(3225), 1, + anon_sym_LBRACK, + ACTIONS(3559), 1, + sym__whitespace_ge_2, + ACTIONS(3562), 1, + aux_sym__whitespace_token1, + ACTIONS(3568), 1, + aux_sym__newline_token1, + ACTIONS(3565), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3077), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(954), 43, + ACTIONS(3556), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(1628), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(2549), 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(3553), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81580,35 +82090,21 @@ 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, - 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, - [7364] = 4, - STATE(562), 1, + [7892] = 4, + STATE(559), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3571), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(972), 7, + ACTIONS(969), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81616,11 +82112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(970), 43, + ACTIONS(967), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81646,9 +82144,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81660,14 +82156,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7427] = 4, - STATE(562), 1, + [7955] = 4, + STATE(616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(968), 7, + ACTIONS(1175), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81675,85 +82171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(966), 43, + ACTIONS(1173), 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, + sym__emphasis_close_star, 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, - [7490] = 9, - ACTIONS(3062), 1, - sym__whitespace_ge_2, - ACTIONS(3065), 1, - aux_sym__whitespace_token1, - ACTIONS(3547), 1, - sym__code_span_close, - ACTIONS(3544), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3057), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(3060), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - STATE(1703), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(667), 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(3054), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81779,18 +82203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [7563] = 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, + [8018] = 4, + STATE(568), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3575), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(964), 7, + ACTIONS(925), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81798,11 +82230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(962), 43, + ACTIONS(923), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81828,9 +82262,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81842,14 +82274,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7626] = 4, - STATE(562), 1, + [8081] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(960), 7, + ACTIONS(1175), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81857,11 +82289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(958), 43, + ACTIONS(1173), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81887,9 +82321,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81901,41 +82333,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7689] = 9, - ACTIONS(3005), 1, - sym__whitespace_ge_2, - ACTIONS(3008), 1, - aux_sym__whitespace_token1, - ACTIONS(3552), 1, - sym__code_span_close, - ACTIONS(3549), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3000), 3, + [8144] = 4, + STATE(621), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3577), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1064), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1702), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(612), 10, + aux_sym__whitespace_token1, + ACTIONS(1062), 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(2997), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81961,30 +82380,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [7762] = 4, - STATE(562), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(920), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + 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, + [8207] = 11, + ACTIONS(3387), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3415), 1, + anon_sym_DASH, + ACTIONS(3418), 1, + sym__whitespace_ge_2, + ACTIONS(3421), 1, + aux_sym__whitespace_token1, + ACTIONS(3579), 1, + aux_sym__newline_token1, + ACTIONS(3424), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3043), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(918), 43, + ACTIONS(3412), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1456), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(673), 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(3409), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81996,13 +82444,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, @@ -82010,28 +82456,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7825] = 4, - STATE(606), 1, + [8284] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(837), 7, + ACTIONS(1064), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82039,11 +82473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(835), 43, + ACTIONS(1062), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82069,9 +82505,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82083,14 +82517,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7888] = 4, - STATE(606), 1, + [8347] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(869), 7, + ACTIONS(756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82098,11 +82532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(867), 43, + ACTIONS(754), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82128,9 +82564,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82142,14 +82576,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7951] = 4, - STATE(580), 1, + [8410] = 4, + STATE(624), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3554), 3, + ACTIONS(3582), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(777), 7, + ACTIONS(756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82157,11 +82591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(775), 43, + ACTIONS(754), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82187,9 +82623,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82201,26 +82635,47 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8014] = 4, - STATE(539), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3556), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(837), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [8473] = 11, + ACTIONS(3440), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3492), 1, + anon_sym_DASH, + ACTIONS(3495), 1, + sym__whitespace_ge_2, + ACTIONS(3498), 1, + aux_sym__whitespace_token1, + ACTIONS(3584), 1, + aux_sym__newline_token1, + ACTIONS(3501), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3003), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(835), 43, + ACTIONS(3489), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1579), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(618), 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(3486), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82232,13 +82687,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, @@ -82246,28 +82699,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8077] = 4, - STATE(562), 1, + [8550] = 4, + STATE(625), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(777), 7, + ACTIONS(1242), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82275,11 +82716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(775), 43, + ACTIONS(1240), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82305,9 +82748,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82319,14 +82760,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8140] = 4, - STATE(609), 1, + [8613] = 4, + STATE(607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 3, + ACTIONS(3333), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(803), 7, + ACTIONS(925), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82334,11 +82775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(801), 43, + ACTIONS(923), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82364,9 +82807,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82378,81 +82819,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8203] = 12, - ACTIONS(3566), 1, - anon_sym_DASH, - ACTIONS(3569), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3571), 1, - sym__whitespace_ge_2, - ACTIONS(3574), 1, - aux_sym__whitespace_token1, - ACTIONS(3580), 1, - aux_sym__newline_token1, - ACTIONS(3583), 1, - sym__open_block, - ACTIONS(3577), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2967), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3563), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - STATE(1481), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(1767), 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(3560), 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, - [8282] = 4, - STATE(606), 1, + [8676] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3589), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(825), 7, + ACTIONS(897), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82460,11 +82834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(823), 43, + ACTIONS(895), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82490,9 +82866,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82504,46 +82878,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8345] = 12, - ACTIONS(3566), 1, - anon_sym_DASH, - ACTIONS(3569), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3571), 1, - sym__whitespace_ge_2, - ACTIONS(3574), 1, - aux_sym__whitespace_token1, - ACTIONS(3580), 1, - aux_sym__newline_token1, - ACTIONS(3585), 1, - sym__open_block, - ACTIONS(3577), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2967), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3563), 3, + [8739] = 4, + STATE(671), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3591), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(925), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1481), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(1767), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(923), 42, 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(3560), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82555,11 +82910,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, @@ -82567,18 +82924,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [8424] = 4, - STATE(538), 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, + [8801] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3587), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(825), 7, + ACTIONS(404), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82586,11 +82951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(823), 43, + ACTIONS(402), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82616,9 +82982,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82630,14 +82994,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8487] = 4, - STATE(606), 1, + [8863] = 4, + STATE(660), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3593), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(803), 7, + ACTIONS(979), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82645,11 +83009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(801), 43, + ACTIONS(977), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82675,9 +83040,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82689,14 +83052,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8550] = 4, - STATE(533), 1, + [8925] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3589), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(803), 7, + ACTIONS(987), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82704,11 +83067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(801), 43, + ACTIONS(985), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82734,9 +83098,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82748,14 +83110,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8613] = 4, - STATE(562), 1, + [8987] = 4, + STATE(661), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3595), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(803), 7, + ACTIONS(987), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82763,11 +83125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(801), 43, + ACTIONS(985), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82793,9 +83156,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82807,14 +83168,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8676] = 4, - STATE(606), 1, + [9049] = 4, + STATE(647), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3331), 3, + ACTIONS(3597), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(777), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82822,11 +83183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(775), 43, + ACTIONS(750), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82852,9 +83214,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82866,14 +83226,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8739] = 4, - STATE(682), 1, + [9111] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(777), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82881,10 +83241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(775), 42, + ACTIONS(750), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82910,9 +83272,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82924,14 +83284,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8801] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, + [9173] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(3599), 1, sym__last_token_whitespace, - ACTIONS(897), 7, + STATE(767), 1, + sym__soft_line_break, + STATE(2215), 1, + sym__newline, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82939,10 +83301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(895), 42, + ACTIONS(2988), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82968,9 +83333,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82981,15 +83344,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [8863] = 4, - STATE(662), 1, + [9239] = 4, + STATE(637), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3595), 3, + ACTIONS(3601), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(851), 7, + ACTIONS(1038), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82997,10 +83359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(849), 42, + ACTIONS(1036), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83026,9 +83390,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83040,14 +83402,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8925] = 4, - STATE(641), 1, + [9301] = 4, + STATE(656), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3603), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(851), 7, + ACTIONS(925), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83055,10 +83417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(849), 42, + ACTIONS(923), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83084,9 +83448,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83098,14 +83460,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8987] = 4, - STATE(634), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3597), 3, - sym__block_continuation, - sym__block_quote_continuation, + [9363] = 6, + ACTIONS(2992), 1, + aux_sym__newline_token1, + ACTIONS(3599), 1, sym__last_token_whitespace, - ACTIONS(869), 7, + STATE(767), 1, + sym__soft_line_break, + STATE(2215), 1, + sym__newline, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83113,10 +83477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(867), 42, + ACTIONS(2988), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83142,9 +83509,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83155,45 +83520,27 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [9049] = 11, - ACTIONS(3566), 1, - anon_sym_DASH, - ACTIONS(3569), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3571), 1, - sym__whitespace_ge_2, - ACTIONS(3574), 1, - aux_sym__whitespace_token1, - ACTIONS(3580), 1, - aux_sym__newline_token1, - ACTIONS(3577), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2967), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3563), 3, + [9429] = 4, + STATE(671), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3591), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(979), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1481), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(1767), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(977), 42, 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(3560), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83205,11 +83552,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, @@ -83217,29 +83566,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [9125] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(401), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + 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, + [9491] = 12, + ACTIONS(3348), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3611), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + anon_sym_LBRACK, + ACTIONS(3616), 1, + sym__whitespace_ge_2, + ACTIONS(3619), 1, + aux_sym__whitespace_token1, + ACTIONS(3625), 1, + aux_sym__newline_token1, + ACTIONS(3622), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(3077), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(399), 42, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1632), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(2549), 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(3605), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83251,44 +83631,29 @@ 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, - 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, - [9187] = 6, - ACTIONS(41), 1, + [9569] = 6, + ACTIONS(606), 1, aux_sym__newline_token1, - ACTIONS(3599), 1, - sym__last_token_whitespace, - STATE(819), 1, + ACTIONS(2304), 1, + sym__last_token_punctuation, + STATE(767), 1, sym__soft_line_break, - STATE(2211), 1, + STATE(2215), 1, sym__newline, - ACTIONS(2990), 7, + ACTIONS(3003), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83296,11 +83661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 42, + ACTIONS(618), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83326,9 +83693,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + 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, + [9635] = 4, + STATE(671), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3591), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(993), 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(991), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_PIPE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -83339,16 +83761,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9253] = 6, - ACTIONS(600), 1, aux_sym__newline_token1, - ACTIONS(2444), 1, + [9697] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(2440), 1, sym__last_token_punctuation, - STATE(762), 1, + STATE(711), 1, sym__soft_line_break, - STATE(2206), 1, + STATE(2210), 1, sym__newline, - ACTIONS(3003), 7, + ACTIONS(3043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83356,11 +83779,13 @@ 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(673), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83386,9 +83811,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83399,14 +83822,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9319] = 4, - STATE(641), 1, + [9763] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(869), 7, + ACTIONS(794), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83414,10 +83837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(867), 42, + ACTIONS(792), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83443,9 +83868,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83457,14 +83880,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9381] = 4, - STATE(641), 1, + [9825] = 4, + STATE(678), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3601), 3, + ACTIONS(3628), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(405), 7, + ACTIONS(850), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83472,10 +83895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(403), 42, + ACTIONS(848), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83501,9 +83926,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83515,46 +83938,85 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9443] = 12, - ACTIONS(3569), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3610), 1, - anon_sym_DASH, - ACTIONS(3613), 1, - anon_sym_LBRACK, - ACTIONS(3615), 1, - sym__whitespace_ge_2, - ACTIONS(3618), 1, - aux_sym__whitespace_token1, - ACTIONS(3624), 1, - aux_sym__newline_token1, - ACTIONS(3621), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(3094), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3607), 3, + [9887] = 4, + STATE(631), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3630), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1481), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(2601), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(854), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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(3604), 26, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [9949] = 4, + STATE(664), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3632), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(993), 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(991), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83566,29 +84028,40 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [9521] = 4, - STATE(641), 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, + [10011] = 4, + STATE(653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3634), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83596,10 +84069,12 @@ 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(860), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83625,9 +84100,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83639,16 +84112,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9583] = 6, - ACTIONS(2992), 1, - aux_sym__newline_token1, - ACTIONS(3627), 1, + [10073] = 4, + STATE(671), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3591), 3, + sym__block_continuation, + sym__block_quote_continuation, sym__last_token_whitespace, - STATE(762), 1, - sym__soft_line_break, - STATE(2206), 1, - sym__newline, - ACTIONS(2990), 7, + ACTIONS(1206), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83656,11 +84127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 42, + ACTIONS(1204), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83686,9 +84158,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83699,14 +84169,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9649] = 4, - STATE(648), 1, + aux_sym__newline_token1, + [10135] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3629), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(809), 7, + ACTIONS(969), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83714,10 +84185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(807), 42, + ACTIONS(967), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83743,9 +84216,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83757,14 +84228,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9711] = 4, - STATE(637), 1, + [10197] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3631), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(1372), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83772,10 +84243,12 @@ 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(1370), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83801,9 +84274,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83815,16 +84286,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9773] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(2444), 1, - sym__last_token_punctuation, - STATE(762), 1, - sym__soft_line_break, - STATE(2206), 1, - sym__newline, - ACTIONS(3003), 7, + [10259] = 4, + STATE(658), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3636), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(969), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83832,11 +84301,12 @@ 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(967), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83862,9 +84332,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83875,14 +84343,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9839] = 4, - STATE(641), 1, + aux_sym__newline_token1, + [10321] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1029), 7, + ACTIONS(1376), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83890,10 +84359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1027), 42, + ACTIONS(1374), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83919,9 +84390,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83933,14 +84402,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9901] = 4, - STATE(659), 1, + [10383] = 4, + STATE(642), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3633), 3, + ACTIONS(3638), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1029), 7, + ACTIONS(868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83948,10 +84417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1027), 42, + ACTIONS(866), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83977,9 +84448,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83991,16 +84460,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9963] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(3627), 1, + [10445] = 4, + STATE(671), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3591), 3, + sym__block_continuation, + sym__block_quote_continuation, sym__last_token_whitespace, - STATE(762), 1, - sym__soft_line_break, - STATE(2206), 1, - sym__newline, - ACTIONS(2990), 7, + ACTIONS(1380), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84008,11 +84475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 42, + ACTIONS(1378), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84038,9 +84506,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84051,14 +84517,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10029] = 4, - STATE(632), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3635), 3, - sym__block_continuation, - sym__block_quote_continuation, + aux_sym__newline_token1, + [10507] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(3640), 1, sym__last_token_whitespace, - ACTIONS(1267), 7, + STATE(711), 1, + sym__soft_line_break, + STATE(2210), 1, + sym__newline, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84066,10 +84535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1265), 42, + ACTIONS(2988), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84095,9 +84567,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84108,15 +84578,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [10091] = 4, - STATE(641), 1, + [10573] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(905), 7, + ACTIONS(1368), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84124,68 +84593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(903), 42, + ACTIONS(1366), 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, - [10153] = 4, - STATE(664), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3637), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1115), 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(1113), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84211,9 +84624,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84225,14 +84636,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10215] = 4, - STATE(666), 1, + [10635] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3639), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1259), 7, + ACTIONS(1307), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84240,10 +84651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1257), 42, + ACTIONS(1305), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84269,9 +84682,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84283,14 +84694,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10277] = 4, - STATE(668), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3641), 3, - sym__block_continuation, - sym__block_quote_continuation, + [10697] = 6, + ACTIONS(2992), 1, + aux_sym__newline_token1, + ACTIONS(3640), 1, sym__last_token_whitespace, - ACTIONS(1186), 7, + STATE(711), 1, + sym__soft_line_break, + STATE(2210), 1, + sym__newline, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84298,10 +84711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1184), 42, + ACTIONS(2988), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84327,9 +84743,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84340,15 +84754,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [10339] = 4, - STATE(670), 1, + [10763] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3643), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 7, + ACTIONS(1050), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84356,10 +84769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1103), 42, + ACTIONS(1048), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84385,9 +84800,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84399,14 +84812,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10401] = 4, - STATE(672), 1, + [10825] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3645), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1247), 7, + ACTIONS(1242), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84414,71 +84827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1245), 42, + ACTIONS(1240), 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, - [10463] = 6, - ACTIONS(655), 1, - aux_sym__newline_token1, - ACTIONS(2338), 1, - sym__last_token_punctuation, - STATE(819), 1, - sym__soft_line_break, - STATE(2211), 1, - sym__newline, - ACTIONS(3060), 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(667), 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, @@ -84504,9 +84858,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84517,14 +84869,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10529] = 4, - STATE(641), 1, + aux_sym__newline_token1, + [10887] = 4, + STATE(668), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3642), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1008), 7, + ACTIONS(1242), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84532,10 +84885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1006), 42, + ACTIONS(1240), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84561,9 +84916,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84575,14 +84928,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10591] = 4, - STATE(674), 1, + [10949] = 4, + STATE(663), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3647), 3, + ACTIONS(3644), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1008), 7, + ACTIONS(1175), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84590,71 +84943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1006), 42, + ACTIONS(1173), 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, - [10653] = 6, - ACTIONS(2992), 1, - aux_sym__newline_token1, - ACTIONS(3599), 1, - sym__last_token_whitespace, - STATE(819), 1, - sym__soft_line_break, - STATE(2211), 1, - sym__newline, - ACTIONS(2990), 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(2988), 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, @@ -84680,9 +84974,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84693,14 +84985,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10719] = 4, - STATE(641), 1, + aux_sym__newline_token1, + [11011] = 4, + STATE(669), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3646), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 7, + ACTIONS(756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84708,10 +85001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(819), 42, + ACTIONS(754), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84737,9 +85032,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84751,14 +85044,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10781] = 4, - STATE(675), 1, + [11073] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3649), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(897), 7, + ACTIONS(756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84766,10 +85059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(895), 42, + ACTIONS(754), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84795,9 +85090,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84809,14 +85102,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10843] = 4, - STATE(641), 1, + [11135] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(857), 7, + ACTIONS(1064), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84824,10 +85117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(855), 42, + ACTIONS(1062), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84853,9 +85148,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84867,14 +85160,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10905] = 4, - STATE(676), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3651), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(857), 7, + [11197] = 6, + ACTIONS(661), 1, + aux_sym__newline_token1, + ACTIONS(2440), 1, + sym__last_token_punctuation, + STATE(711), 1, + sym__soft_line_break, + STATE(2210), 1, + sym__newline, + ACTIONS(3043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84882,10 +85177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(855), 42, + ACTIONS(673), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84911,9 +85209,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84924,15 +85220,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [10967] = 4, - STATE(641), 1, + [11263] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3648), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(837), 7, + ACTIONS(397), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84940,10 +85235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(835), 42, + ACTIONS(395), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84969,9 +85266,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -84983,14 +85278,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11029] = 4, - STATE(677), 1, + [11325] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3653), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(837), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84998,10 +85293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(835), 42, + ACTIONS(389), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85027,9 +85324,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85041,14 +85336,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11091] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(825), 7, + [11387] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(2304), 1, + sym__last_token_punctuation, + STATE(767), 1, + sym__soft_line_break, + STATE(2215), 1, + sym__newline, + ACTIONS(3003), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85056,10 +85353,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(823), 42, + ACTIONS(618), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85085,9 +85385,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85098,15 +85396,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [11153] = 4, - STATE(679), 1, + [11453] = 4, + STATE(632), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3655), 3, + ACTIONS(3651), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(825), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85114,10 +85411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(823), 42, + ACTIONS(389), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85143,9 +85442,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85157,83 +85454,46 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11215] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(803), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [11515] = 11, + ACTIONS(3345), 1, + anon_sym_DASH, + ACTIONS(3348), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3350), 1, + sym__whitespace_ge_2, + ACTIONS(3353), 1, + aux_sym__whitespace_token1, + ACTIONS(3359), 1, + aux_sym__newline_token1, + ACTIONS(3356), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2967), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(801), 42, + ACTIONS(3342), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1632), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1745), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_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, - [11277] = 4, - STATE(680), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3657), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(803), 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(801), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(3339), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85245,13 +85505,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, @@ -85259,28 +85517,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11339] = 4, - STATE(641), 1, + [11591] = 4, + STATE(654), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3653), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(777), 7, + ACTIONS(897), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85288,10 +85534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(775), 42, + ACTIONS(895), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85317,9 +85565,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85331,14 +85577,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11401] = 4, - STATE(640), 1, + [11653] = 4, + STATE(681), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3659), 3, + ACTIONS(3655), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(905), 7, + ACTIONS(1064), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85346,10 +85592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(903), 42, + ACTIONS(1062), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85375,9 +85623,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85389,14 +85635,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11463] = 4, - STATE(641), 1, + [11715] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(920), 7, + ACTIONS(897), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85404,10 +85650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(918), 42, + ACTIONS(895), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85433,9 +85681,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85447,14 +85693,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11525] = 4, - STATE(641), 1, + [11777] = 4, + STATE(634), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3657), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(960), 7, + ACTIONS(874), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85462,10 +85708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(958), 42, + ACTIONS(872), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85491,9 +85739,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85505,14 +85751,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11587] = 4, - STATE(641), 1, + [11839] = 4, + STATE(652), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3659), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(964), 7, + ACTIONS(794), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85520,10 +85766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(962), 42, + ACTIONS(792), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85549,9 +85797,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85563,14 +85809,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11649] = 4, - STATE(641), 1, + [11901] = 4, + STATE(671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, + ACTIONS(3591), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(968), 7, + ACTIONS(1175), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85578,10 +85824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(966), 42, + ACTIONS(1173), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85607,9 +85855,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85621,14 +85867,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11711] = 4, - STATE(652), 1, + [11963] = 4, + STATE(645), 1, aux_sym__ignore_matching_tokens, ACTIONS(3661), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(950), 7, + ACTIONS(880), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85636,10 +85882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(948), 42, + ACTIONS(878), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85665,9 +85913,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85679,25 +85925,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11773] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(972), 7, + [12025] = 6, + ACTIONS(3663), 1, + sym__whitespace_ge_2, + ACTIONS(3666), 1, + aux_sym__whitespace_token1, + ACTIONS(3669), 1, + aux_sym__newline_token1, + STATE(1651), 2, + sym__whitespace, + sym__newline, + ACTIONS(3043), 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(970), 42, + ACTIONS(673), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85723,9 +85974,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85733,29 +85982,32 @@ 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, + [12090] = 6, + ACTIONS(1782), 1, aux_sym__newline_token1, - [11835] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(956), 7, + ACTIONS(3672), 1, + sym__whitespace_ge_2, + ACTIONS(3675), 1, + aux_sym__whitespace_token1, + STATE(1692), 2, + sym__whitespace, + sym__newline, + ACTIONS(3003), 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(954), 42, + ACTIONS(618), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85781,9 +86033,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85791,20 +86041,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, - [11897] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(2338), 1, + [12155] = 6, + ACTIONS(2440), 1, sym__last_token_punctuation, - STATE(819), 1, - sym__soft_line_break, - STATE(2211), 1, - sym__newline, - ACTIONS(3060), 7, + ACTIONS(3678), 1, + anon_sym_SLASH, + ACTIONS(3681), 1, + sym__word_no_digit, + STATE(1914), 1, + sym__tag_name, + ACTIONS(3043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85812,11 +86060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 42, + ACTIONS(673), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85830,7 +86080,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, @@ -85842,9 +86091,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85853,16 +86100,18 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, - [11963] = 4, - STATE(641), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3593), 3, - sym__block_continuation, - sym__block_quote_continuation, + aux_sym__newline_token1, + [12220] = 6, + ACTIONS(2992), 1, + aux_sym__newline_token1, + ACTIONS(3684), 1, sym__last_token_whitespace, - ACTIONS(950), 7, + STATE(900), 1, + sym__soft_line_break, + STATE(2221), 1, + sym__newline, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85870,10 +86119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(948), 42, + ACTIONS(2988), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85899,9 +86150,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85912,29 +86161,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [12285] = 6, + ACTIONS(720), 1, aux_sym__newline_token1, - [12025] = 6, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(3663), 1, - sym__whitespace_ge_2, - ACTIONS(3666), 1, - aux_sym__whitespace_token1, - STATE(1687), 2, - sym__whitespace, + ACTIONS(2360), 1, + sym__last_token_punctuation, + STATE(900), 1, + sym__soft_line_break, + STATE(2221), 1, sym__newline, - ACTIONS(3003), 6, + ACTIONS(2967), 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(612), 41, + aux_sym__whitespace_token1, + ACTIONS(1745), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85960,9 +86209,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -85970,30 +86217,33 @@ 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, - [12090] = 6, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(3669), 1, - sym__whitespace_ge_2, + [12350] = 6, ACTIONS(3672), 1, + sym__whitespace_ge_2, + ACTIONS(3675), 1, aux_sym__whitespace_token1, - STATE(1674), 2, + ACTIONS(3686), 1, + aux_sym__newline_token1, + STATE(1692), 2, sym__whitespace, sym__newline, - ACTIONS(3060), 6, + ACTIONS(3003), 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(667), 41, + ACTIONS(618), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86019,9 +86269,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86031,28 +86279,30 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym__word_no_digit, sym__digits, - [12155] = 6, - ACTIONS(2338), 1, - sym__last_token_punctuation, - ACTIONS(3675), 1, - anon_sym_SLASH, - ACTIONS(3678), 1, - sym__word_no_digit, - STATE(1919), 1, - sym__tag_name, - ACTIONS(3060), 7, + [12415] = 6, + ACTIONS(1782), 1, + aux_sym__newline_token1, + ACTIONS(3663), 1, + sym__whitespace_ge_2, + ACTIONS(3666), 1, + aux_sym__whitespace_token1, + STATE(1651), 2, + sym__whitespace, + sym__newline, + ACTIONS(3043), 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(667), 41, + ACTIONS(673), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86066,6 +86316,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, @@ -86077,9 +86328,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86087,19 +86336,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, - [12220] = 7, - ACTIONS(3681), 1, + [12480] = 7, + ACTIONS(3689), 1, sym__whitespace_ge_2, - ACTIONS(3684), 1, + ACTIONS(3692), 1, aux_sym__whitespace_token1, - ACTIONS(3687), 1, + ACTIONS(3695), 1, aux_sym__newline_token1, - ACTIONS(3690), 1, + ACTIONS(3698), 1, sym__open_block, - STATE(1665), 2, + STATE(1648), 2, sym__whitespace, sym__newline, ACTIONS(2967), 6, @@ -86109,10 +86357,12 @@ 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(1767), 40, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86138,9 +86388,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86150,28 +86398,31 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym__word_no_digit, sym__digits, - [12287] = 6, - ACTIONS(3669), 1, + [12547] = 7, + ACTIONS(3689), 1, sym__whitespace_ge_2, - ACTIONS(3672), 1, - aux_sym__whitespace_token1, ACTIONS(3692), 1, + aux_sym__whitespace_token1, + ACTIONS(3695), 1, aux_sym__newline_token1, - STATE(1674), 2, + ACTIONS(3700), 1, + sym__open_block, + STATE(1648), 2, sym__whitespace, sym__newline, - ACTIONS(3060), 6, + ACTIONS(2967), 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(667), 41, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86197,9 +86448,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86209,29 +86458,30 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym__word_no_digit, sym__digits, - [12352] = 7, - ACTIONS(3681), 1, - sym__whitespace_ge_2, - ACTIONS(3684), 1, - aux_sym__whitespace_token1, - ACTIONS(3687), 1, - aux_sym__newline_token1, - ACTIONS(3695), 1, - sym__open_block, - STATE(1665), 2, - sym__whitespace, - sym__newline, - ACTIONS(2967), 6, + [12614] = 6, + ACTIONS(2304), 1, + sym__last_token_punctuation, + ACTIONS(3702), 1, + anon_sym_SLASH, + ACTIONS(3705), 1, + sym__word_no_digit, + STATE(1917), 1, + sym__tag_name, + ACTIONS(3003), 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(1767), 40, + aux_sym__whitespace_token1, + ACTIONS(618), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86245,7 +86495,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, @@ -86257,9 +86506,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86267,18 +86514,13 @@ 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, - [12419] = 6, - ACTIONS(2444), 1, + aux_sym__newline_token1, + [12679] = 3, + ACTIONS(2360), 1, sym__last_token_punctuation, - ACTIONS(3697), 1, - anon_sym_SLASH, - ACTIONS(3700), 1, - sym__word_no_digit, - STATE(1903), 1, - sym__tag_name, - ACTIONS(3003), 7, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86286,11 +86528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(612), 41, + ACTIONS(3708), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86304,6 +86548,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, @@ -86315,9 +86560,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86326,18 +86569,19 @@ 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, - [12484] = 6, - ACTIONS(2992), 1, + [12737] = 6, + ACTIONS(2669), 1, aux_sym__newline_token1, - ACTIONS(3703), 1, - sym__last_token_whitespace, - STATE(922), 1, + ACTIONS(3712), 1, + sym__last_token_punctuation, + STATE(711), 1, sym__soft_line_break, - STATE(2220), 1, + STATE(2210), 1, sym__newline, - ACTIONS(2990), 7, + ACTIONS(3024), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86345,10 +86589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 41, + ACTIONS(2681), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86369,14 +86616,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -86387,28 +86630,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12549] = 6, - ACTIONS(3663), 1, - sym__whitespace_ge_2, - ACTIONS(3666), 1, - aux_sym__whitespace_token1, - ACTIONS(3705), 1, + [12801] = 6, + ACTIONS(2572), 1, aux_sym__newline_token1, - STATE(1687), 2, - sym__whitespace, + ACTIONS(3714), 1, + sym__last_token_punctuation, + STATE(900), 1, + sym__soft_line_break, + STATE(2221), 1, sym__newline, - ACTIONS(3003), 6, + ACTIONS(3077), 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(612), 41, + aux_sym__whitespace_token1, + ACTIONS(2549), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86429,14 +86673,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -86444,18 +86685,13 @@ 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, - [12614] = 6, - ACTIONS(1318), 1, - aux_sym__newline_token1, - ACTIONS(2394), 1, + [12865] = 3, + ACTIONS(2304), 1, sym__last_token_punctuation, - STATE(922), 1, - sym__soft_line_break, - STATE(2220), 1, - sym__newline, - ACTIONS(2967), 7, + ACTIONS(3003), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86463,10 +86699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1767), 41, + ACTIONS(618), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86492,9 +86731,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86505,12 +86742,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12679] = 4, - ACTIONS(1767), 1, aux_sym__newline_token1, - ACTIONS(2394), 1, + [12923] = 4, + ACTIONS(2304), 1, sym__last_token_punctuation, - ACTIONS(3710), 7, + ACTIONS(3716), 1, + anon_sym_LBRACK, + ACTIONS(3003), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86518,11 +86756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 42, + ACTIONS(618), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86543,14 +86783,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -86561,16 +86798,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12739] = 6, + aux_sym__newline_token1, + [12983] = 6, ACTIONS(2518), 1, aux_sym__newline_token1, - ACTIONS(3712), 1, + ACTIONS(3719), 1, sym__last_token_punctuation, - STATE(819), 1, + STATE(767), 1, sym__soft_line_break, - STATE(2211), 1, + STATE(2215), 1, sym__newline, - ACTIONS(3024), 7, + ACTIONS(3060), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86582,7 +86820,9 @@ 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86606,9 +86846,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86619,10 +86857,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12803] = 3, - ACTIONS(3627), 1, - sym__last_token_whitespace, - ACTIONS(2990), 7, + [13047] = 4, + ACTIONS(1745), 1, + aux_sym__newline_token1, + ACTIONS(2360), 1, + sym__last_token_punctuation, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86630,11 +86870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 43, + ACTIONS(3708), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86660,9 +86902,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86673,17 +86913,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [12861] = 6, - ACTIONS(2394), 1, + [13107] = 4, + ACTIONS(1745), 1, + anon_sym_RBRACK, + ACTIONS(2360), 1, sym__last_token_punctuation, - ACTIONS(3714), 1, - anon_sym_SLASH, - ACTIONS(3717), 1, - sym__word_no_digit, - STATE(1909), 1, - sym__tag_name, - ACTIONS(2967), 7, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86691,10 +86926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1767), 40, + ACTIONS(3708), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86708,6 +86946,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, @@ -86715,13 +86954,10 @@ 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, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -86730,69 +86966,15 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, - sym__digits, - aux_sym__newline_token1, - [12925] = 5, - ACTIONS(3720), 1, - sym__line_ending, - STATE(764), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3722), 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, aux_sym__newline_token1, - [12987] = 3, - ACTIONS(3599), 1, - sym__last_token_whitespace, - ACTIONS(2990), 7, + [13167] = 4, + ACTIONS(1745), 1, + aux_sym__newline_token1, + ACTIONS(2360), 1, + sym__last_token_punctuation, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86800,11 +86982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 43, + ACTIONS(3708), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86830,9 +87014,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86843,11 +87025,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [13045] = 3, - ACTIONS(2338), 1, - sym__last_token_punctuation, - ACTIONS(3060), 7, + [13227] = 3, + ACTIONS(3640), 1, + sym__last_token_whitespace, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86855,11 +87036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 43, + ACTIONS(2988), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86885,9 +87068,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86899,8 +87080,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13103] = 3, - ACTIONS(2394), 1, + [13285] = 4, + ACTIONS(1745), 1, + anon_sym_RBRACK, + ACTIONS(2360), 1, sym__last_token_punctuation, ACTIONS(3710), 7, anon_sym_AMP, @@ -86910,11 +87093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 43, + ACTIONS(3708), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86936,13 +87121,10 @@ 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, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -86954,32 +87136,33 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13161] = 6, - ACTIONS(3681), 1, - sym__whitespace_ge_2, - ACTIONS(3684), 1, - aux_sym__whitespace_token1, - ACTIONS(3687), 1, - aux_sym__newline_token1, - STATE(1665), 2, - sym__whitespace, - sym__newline, - ACTIONS(2967), 6, - anon_sym_AMP, + [13345] = 5, + ACTIONS(3721), 1, + sym__line_ending, + STATE(821), 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, - ACTIONS(1767), 40, + aux_sym__whitespace_token1, + ACTIONS(3723), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86995,87 +87178,25 @@ 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, - 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, - [13225] = 6, - ACTIONS(2570), 1, - aux_sym__newline_token1, - ACTIONS(3724), 1, - sym__last_token_punctuation, - STATE(762), 1, - sym__soft_line_break, - STATE(2206), 1, - sym__newline, - ACTIONS(3043), 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(2582), 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, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13289] = 4, - ACTIONS(2338), 1, - sym__last_token_punctuation, - ACTIONS(3726), 1, - anon_sym_LBRACK, - ACTIONS(3060), 7, + aux_sym__newline_token1, + [13407] = 3, + ACTIONS(3599), 1, + sym__last_token_whitespace, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87083,11 +87204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 42, + ACTIONS(2988), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87108,13 +87231,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -87126,24 +87248,29 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13349] = 4, - ACTIONS(2444), 1, - sym__last_token_punctuation, - ACTIONS(3729), 1, - anon_sym_LBRACK, - ACTIONS(3003), 7, + [13465] = 6, + ACTIONS(3689), 1, + sym__whitespace_ge_2, + ACTIONS(3692), 1, + aux_sym__whitespace_token1, + ACTIONS(3695), 1, + aux_sym__newline_token1, + STATE(1648), 2, + sym__whitespace, + sym__newline, + ACTIONS(2967), 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(612), 42, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87164,13 +87291,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -87178,16 +87304,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, - aux_sym__newline_token1, - [13409] = 4, - ACTIONS(1767), 1, - aux_sym__newline_token1, - ACTIONS(2394), 1, + [13529] = 3, + ACTIONS(2440), 1, sym__last_token_punctuation, - ACTIONS(3710), 7, + ACTIONS(3043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87195,11 +87317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 42, + ACTIONS(673), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87225,9 +87349,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87238,12 +87360,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13469] = 4, - ACTIONS(1767), 1, - anon_sym_RBRACK, - ACTIONS(2394), 1, + aux_sym__newline_token1, + [13587] = 6, + ACTIONS(2360), 1, sym__last_token_punctuation, - ACTIONS(3710), 7, + ACTIONS(3725), 1, + anon_sym_SLASH, + ACTIONS(3728), 1, + sym__word_no_digit, + STATE(1928), 1, + sym__tag_name, + ACTIONS(2967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87251,11 +87378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 42, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87269,7 +87397,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, @@ -87277,12 +87404,11 @@ 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, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -87291,19 +87417,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, - [13529] = 6, - ACTIONS(2624), 1, - aux_sym__newline_token1, - ACTIONS(3732), 1, + [13651] = 4, + ACTIONS(2440), 1, sym__last_token_punctuation, - STATE(922), 1, - sym__soft_line_break, - STATE(2220), 1, - sym__newline, - ACTIONS(3094), 7, + ACTIONS(3731), 1, + anon_sym_LBRACK, + ACTIONS(3043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87311,10 +87432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2601), 40, + ACTIONS(673), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87339,9 +87463,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87352,10 +87474,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13593] = 4, - ACTIONS(1767), 1, - anon_sym_RBRACK, - ACTIONS(2394), 1, + aux_sym__newline_token1, + [13711] = 3, + ACTIONS(2360), 1, sym__last_token_punctuation, ACTIONS(3710), 7, anon_sym_AMP, @@ -87365,11 +87486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 42, + ACTIONS(3708), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87391,12 +87514,11 @@ 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, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -87408,10 +87530,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13653] = 3, - ACTIONS(2444), 1, - sym__last_token_punctuation, - ACTIONS(3003), 7, + [13769] = 2, + ACTIONS(3736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87419,11 +87539,13 @@ 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(3734), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87449,9 +87571,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87463,10 +87583,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13711] = 3, - ACTIONS(2394), 1, - sym__last_token_punctuation, - ACTIONS(3710), 7, + [13824] = 2, + ACTIONS(736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87474,11 +87592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 43, + ACTIONS(734), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87504,9 +87624,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87518,8 +87636,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13769] = 2, - ACTIONS(3736), 7, + [13879] = 2, + ACTIONS(3740), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87527,11 +87645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3734), 43, + ACTIONS(3738), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87557,9 +87677,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87571,8 +87689,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13824] = 2, - ACTIONS(3740), 7, + [13934] = 2, + ACTIONS(3744), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87580,11 +87698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3738), 43, + ACTIONS(3742), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87610,9 +87730,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87624,8 +87742,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13879] = 2, - ACTIONS(3744), 7, + [13989] = 2, + ACTIONS(3748), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87633,11 +87751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3742), 43, + ACTIONS(3746), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87663,9 +87783,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87677,8 +87795,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13934] = 2, - ACTIONS(691), 7, + [14044] = 2, + ACTIONS(3752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87686,11 +87804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(689), 43, + ACTIONS(3750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87716,9 +87836,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87730,8 +87848,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13989] = 2, - ACTIONS(2174), 7, + [14099] = 2, + ACTIONS(3756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87739,11 +87857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2172), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87769,9 +87889,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87783,12 +87901,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14044] = 4, - ACTIONS(2338), 1, - sym__last_token_punctuation, - ACTIONS(3746), 1, - anon_sym_LBRACK, - ACTIONS(3060), 7, + [14154] = 2, + ACTIONS(736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87796,11 +87910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 41, + ACTIONS(734), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87821,13 +87937,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -87838,8 +87953,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14103] = 2, - ACTIONS(483), 7, + aux_sym__newline_token1, + [14209] = 2, + ACTIONS(3760), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87847,11 +87963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(481), 43, + ACTIONS(3758), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87877,9 +87995,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87891,10 +88007,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14158] = 3, - ACTIONS(3753), 1, - sym__emphasis_close_star, - ACTIONS(3751), 7, + [14264] = 2, + ACTIONS(3764), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87902,10 +88016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3749), 42, + ACTIONS(3762), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87931,9 +88048,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87945,8 +88060,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14215] = 2, - ACTIONS(3751), 7, + [14319] = 2, + ACTIONS(417), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87954,11 +88069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3749), 43, + ACTIONS(415), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87984,9 +88101,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -87998,8 +88113,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14270] = 2, - ACTIONS(2220), 7, + [14374] = 2, + ACTIONS(3768), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88007,11 +88122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2218), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88037,9 +88154,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88051,8 +88166,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14325] = 2, - ACTIONS(3757), 7, + [14429] = 2, + ACTIONS(3772), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88060,11 +88175,13 @@ 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(3770), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88090,9 +88207,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88104,8 +88219,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14380] = 2, - ACTIONS(2166), 7, + [14484] = 4, + ACTIONS(2440), 1, + sym__last_token_punctuation, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88113,11 +88232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2164), 43, + ACTIONS(673), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88138,14 +88259,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -88156,9 +88274,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [14435] = 2, - ACTIONS(2240), 7, + [14543] = 2, + ACTIONS(3779), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88166,11 +88283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2238), 43, + ACTIONS(3777), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88196,9 +88315,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88210,8 +88327,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14490] = 2, - ACTIONS(2254), 7, + [14598] = 2, + ACTIONS(3783), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88219,11 +88336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2252), 43, + ACTIONS(3781), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88249,9 +88368,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88263,8 +88380,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14545] = 2, - ACTIONS(2250), 7, + [14653] = 2, + ACTIONS(3787), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88272,11 +88389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2248), 43, + ACTIONS(3785), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88302,9 +88421,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88316,8 +88433,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14600] = 2, - ACTIONS(2194), 7, + [14708] = 4, + ACTIONS(2360), 1, + sym__last_token_punctuation, + ACTIONS(3789), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(2967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88325,18 +88447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2192), 43, + ACTIONS(1745), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -88350,14 +88472,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -88369,8 +88488,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14655] = 2, - ACTIONS(3761), 7, + [14767] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88378,11 +88497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3759), 43, + ACTIONS(3791), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88408,9 +88529,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88422,8 +88541,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14710] = 2, - ACTIONS(2228), 7, + [14822] = 2, + ACTIONS(3797), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88431,11 +88550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2226), 43, + ACTIONS(3795), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88461,9 +88582,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88475,8 +88594,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14765] = 2, - ACTIONS(3765), 7, + [14877] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88484,11 +88603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3763), 43, + ACTIONS(3799), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88514,9 +88635,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88528,8 +88647,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14820] = 2, - ACTIONS(3769), 7, + [14932] = 2, + ACTIONS(3805), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88537,11 +88656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3767), 43, + ACTIONS(3803), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88567,9 +88688,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88581,8 +88700,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14875] = 2, - ACTIONS(3773), 7, + [14987] = 2, + ACTIONS(3809), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88590,11 +88709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3771), 43, + ACTIONS(3807), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88620,9 +88741,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88634,8 +88753,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14930] = 2, - ACTIONS(3777), 7, + [15042] = 2, + ACTIONS(3813), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88643,11 +88762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3775), 43, + ACTIONS(3811), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88673,9 +88794,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88687,29 +88806,33 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14985] = 3, - ACTIONS(3783), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3781), 7, - anon_sym_AMP, + [15097] = 4, + STATE(735), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 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(3779), 41, + ACTIONS(3815), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -88727,22 +88850,19 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [15042] = 2, - ACTIONS(3788), 7, + [15156] = 2, + ACTIONS(3820), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88750,11 +88870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3786), 43, + ACTIONS(3818), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88780,9 +88902,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88794,11 +88914,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15097] = 3, - ACTIONS(3794), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3792), 7, + [15211] = 2, + ACTIONS(3824), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88806,17 +88923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3790), 41, + ACTIONS(3822), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -88830,13 +88950,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -88848,8 +88967,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15154] = 2, - ACTIONS(3799), 7, + [15266] = 4, + ACTIONS(2304), 1, + sym__last_token_punctuation, + ACTIONS(3826), 1, + anon_sym_LBRACK, + ACTIONS(3003), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88857,11 +88980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3797), 43, + ACTIONS(618), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88882,14 +89007,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -88900,9 +89022,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [15209] = 2, - ACTIONS(3803), 7, + [15325] = 3, + ACTIONS(2360), 1, + sym__last_token_punctuation, + ACTIONS(2967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88910,11 +89033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3801), 43, + ACTIONS(1745), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88940,9 +89064,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -88954,8 +89076,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15264] = 2, - ACTIONS(3807), 7, + [15382] = 2, + ACTIONS(3831), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88963,11 +89085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3805), 43, + ACTIONS(3829), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88993,9 +89117,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89007,8 +89129,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15319] = 2, - ACTIONS(3811), 7, + [15437] = 2, + ACTIONS(3835), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89016,11 +89138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3809), 43, + ACTIONS(3833), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89046,9 +89170,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89060,8 +89182,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15374] = 2, - ACTIONS(3744), 7, + [15492] = 2, + ACTIONS(3107), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89069,11 +89191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3742), 43, + ACTIONS(3105), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89099,9 +89223,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89113,8 +89235,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15429] = 2, - ACTIONS(3815), 7, + [15547] = 2, + ACTIONS(2210), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89122,11 +89244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3813), 43, + ACTIONS(2208), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89152,9 +89276,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89166,28 +89288,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15484] = 6, - ACTIONS(3817), 1, - sym__whitespace_ge_2, - ACTIONS(3820), 1, - aux_sym__whitespace_token1, - ACTIONS(3823), 1, - aux_sym__newline_token1, - STATE(1674), 2, - sym__whitespace, - sym__newline, - ACTIONS(3024), 6, + [15602] = 2, + ACTIONS(3839), 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(2530), 39, + aux_sym__whitespace_token1, + ACTIONS(3837), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89208,12 +89324,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -89221,10 +89337,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, - [15547] = 2, - ACTIONS(3828), 7, + aux_sym__newline_token1, + [15657] = 2, + ACTIONS(3843), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89232,11 +89350,13 @@ 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(3841), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89262,9 +89382,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89276,10 +89394,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15602] = 3, - ACTIONS(3834), 1, - sym__emphasis_close_underscore, - ACTIONS(3832), 7, + [15712] = 2, + ACTIONS(3847), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89287,10 +89403,13 @@ 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(3845), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89316,9 +89435,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89330,10 +89447,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15659] = 4, - ACTIONS(2394), 1, + [15767] = 4, + ACTIONS(2360), 1, sym__last_token_punctuation, - ACTIONS(3836), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, ACTIONS(2967), 7, anon_sym_AMP, @@ -89343,10 +89460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1767), 41, + ACTIONS(1745), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89371,9 +89490,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89385,10 +89502,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15718] = 3, - ACTIONS(2394), 1, - sym__last_token_punctuation, - ACTIONS(2967), 7, + [15826] = 2, + ACTIONS(3854), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89396,10 +89511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1767), 42, + ACTIONS(3852), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89425,9 +89543,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89439,16 +89555,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15775] = 6, - ACTIONS(3712), 1, - sym__last_token_punctuation, - ACTIONS(3839), 1, - anon_sym_SLASH, - ACTIONS(3842), 1, - sym__word_no_digit, - STATE(1919), 1, - sym__tag_name, - ACTIONS(3024), 7, + [15881] = 2, + ACTIONS(3858), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89456,11 +89564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2530), 39, + ACTIONS(3856), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89474,18 +89584,19 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -89494,10 +89605,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, - [15838] = 2, - ACTIONS(3847), 7, + [15936] = 2, + ACTIONS(3862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89505,11 +89617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3845), 43, + ACTIONS(3860), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89535,9 +89649,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89549,8 +89661,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15893] = 2, - ACTIONS(3851), 7, + [15991] = 2, + ACTIONS(2206), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89558,11 +89670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3849), 43, + ACTIONS(2204), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89588,9 +89702,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89602,8 +89714,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15948] = 2, - ACTIONS(3855), 7, + [16046] = 4, + ACTIONS(3719), 1, + sym__last_token_punctuation, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(3060), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89611,11 +89727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3853), 43, + ACTIONS(2530), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89636,14 +89754,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -89655,8 +89769,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16003] = 2, - ACTIONS(3859), 7, + [16105] = 3, + ACTIONS(3870), 1, + sym__emphasis_close_underscore, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89664,11 +89780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3857), 43, + ACTIONS(3866), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89694,9 +89811,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89708,10 +89823,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16058] = 3, - ACTIONS(3861), 1, - sym__emphasis_close_star, - ACTIONS(3751), 7, + [16162] = 6, + ACTIONS(3719), 1, + sym__last_token_punctuation, + ACTIONS(3872), 1, + anon_sym_SLASH, + ACTIONS(3875), 1, + sym__word_no_digit, + STATE(1917), 1, + sym__tag_name, + ACTIONS(3060), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89719,10 +89840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3749), 42, + ACTIONS(2530), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89736,21 +89860,16 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -89759,11 +89878,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, - [16115] = 2, - ACTIONS(2220), 7, + [16225] = 2, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89771,11 +89889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2218), 43, + ACTIONS(3866), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89801,9 +89921,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89815,8 +89933,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16170] = 2, - ACTIONS(691), 7, + [16280] = 2, + ACTIONS(2190), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89824,11 +89942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(689), 43, + ACTIONS(2188), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89854,9 +89974,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89868,24 +89986,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16225] = 4, - ACTIONS(3712), 1, - sym__last_token_punctuation, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3024), 7, + [16335] = 6, + ACTIONS(3878), 1, + sym__whitespace_ge_2, + ACTIONS(3881), 1, + aux_sym__whitespace_token1, + ACTIONS(3884), 1, + aux_sym__newline_token1, + STATE(1692), 2, + sym__whitespace, + sym__newline, + ACTIONS(3060), 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(2530), 41, + ACTIONS(2530), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89909,9 +90033,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89919,12 +90041,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, - [16284] = 2, - ACTIONS(3867), 7, + [16398] = 2, + ACTIONS(3889), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89932,11 +90052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3865), 43, + ACTIONS(3887), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89962,9 +90084,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89976,8 +90096,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16339] = 2, - ACTIONS(2240), 7, + [16453] = 2, + ACTIONS(2202), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89985,11 +90105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2238), 43, + ACTIONS(2200), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90015,9 +90137,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90029,8 +90149,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16394] = 2, - ACTIONS(2178), 7, + [16508] = 3, + ACTIONS(3895), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90038,18 +90161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2176), 43, + ACTIONS(3891), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -90063,14 +90187,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -90082,8 +90203,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16449] = 2, - ACTIONS(3107), 7, + [16565] = 2, + ACTIONS(3900), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90091,11 +90212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3105), 43, + ACTIONS(3898), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90121,9 +90244,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90135,31 +90256,31 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16504] = 4, - STATE(778), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + [16620] = 3, + ACTIONS(3906), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3904), 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(3869), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(3902), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -90177,21 +90298,20 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [16563] = 2, - ACTIONS(3873), 7, + [16677] = 2, + ACTIONS(3911), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90199,11 +90319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3871), 43, + ACTIONS(3909), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90229,9 +90351,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90243,8 +90363,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16618] = 2, - ACTIONS(3877), 7, + [16732] = 2, + ACTIONS(3915), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90252,11 +90372,13 @@ 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(3913), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90282,9 +90404,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90296,8 +90416,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16673] = 2, - ACTIONS(3881), 7, + [16787] = 2, + ACTIONS(3919), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90305,11 +90425,13 @@ 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(3917), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90335,9 +90457,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90349,29 +90469,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16728] = 4, - STATE(852), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + [16842] = 2, + ACTIONS(3923), 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(3883), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(3921), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90387,25 +90505,25 @@ 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, - 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_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, - [16787] = 2, - ACTIONS(3887), 7, + [16897] = 2, + ACTIONS(3736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90413,11 +90531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3885), 43, + ACTIONS(3734), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90443,9 +90563,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90457,8 +90575,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16842] = 2, - ACTIONS(3891), 7, + [16952] = 2, + ACTIONS(3927), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90466,11 +90584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3889), 43, + ACTIONS(3925), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90496,9 +90616,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90510,8 +90628,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16897] = 2, - ACTIONS(3895), 7, + [17007] = 2, + ACTIONS(2228), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90519,11 +90637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3893), 43, + ACTIONS(2226), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90549,9 +90669,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90563,8 +90681,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16952] = 2, - ACTIONS(3899), 7, + [17062] = 2, + ACTIONS(3931), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90572,11 +90690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3897), 43, + ACTIONS(3929), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90602,9 +90722,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90616,8 +90734,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17007] = 2, - ACTIONS(2202), 7, + [17117] = 2, + ACTIONS(3935), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90625,11 +90743,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2200), 43, + ACTIONS(3933), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90655,9 +90775,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90669,8 +90787,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17062] = 2, - ACTIONS(2186), 7, + [17172] = 2, + ACTIONS(3939), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90678,11 +90796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2184), 43, + ACTIONS(3937), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90708,9 +90828,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90722,8 +90840,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17117] = 2, - ACTIONS(3903), 7, + [17227] = 2, + ACTIONS(3943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90731,11 +90849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3901), 43, + ACTIONS(3941), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90761,9 +90881,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90775,8 +90893,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17172] = 2, - ACTIONS(3907), 7, + [17282] = 2, + ACTIONS(3947), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90784,11 +90902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3905), 43, + ACTIONS(3945), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90814,9 +90934,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90828,8 +90946,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17227] = 2, - ACTIONS(2254), 7, + [17337] = 4, + ACTIONS(3712), 1, + sym__last_token_punctuation, + ACTIONS(3949), 1, + anon_sym_LBRACK, + ACTIONS(3024), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90837,11 +90959,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2252), 43, + ACTIONS(2681), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + 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, + [17396] = 2, + ACTIONS(3939), 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(3937), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90867,9 +91042,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90881,8 +91054,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17282] = 2, - ACTIONS(2194), 7, + [17451] = 2, + ACTIONS(3923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90890,11 +91063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2192), 43, + ACTIONS(3921), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90920,9 +91095,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90934,8 +91107,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17337] = 2, - ACTIONS(3911), 7, + [17506] = 6, + ACTIONS(3712), 1, + sym__last_token_punctuation, + ACTIONS(3951), 1, + anon_sym_SLASH, + ACTIONS(3954), 1, + sym__word_no_digit, + STATE(1914), 1, + sym__tag_name, + ACTIONS(3024), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90943,11 +91124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3909), 43, + ACTIONS(2681), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90961,21 +91144,16 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -90984,11 +91162,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, - [17392] = 2, - ACTIONS(3915), 7, + [17569] = 2, + ACTIONS(3935), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90996,11 +91173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3913), 43, + ACTIONS(3933), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91026,9 +91205,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91040,20 +91217,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17447] = 2, - ACTIONS(3919), 7, + [17624] = 6, + ACTIONS(3957), 1, + sym__whitespace_ge_2, + ACTIONS(3960), 1, + aux_sym__whitespace_token1, + ACTIONS(3963), 1, + aux_sym__newline_token1, + STATE(1651), 2, + sym__whitespace, + sym__newline, + ACTIONS(3024), 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(3917), 43, + ACTIONS(2681), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91074,14 +91261,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -91089,33 +91272,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, - aux_sym__newline_token1, - [17502] = 4, - STATE(852), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 3, + [17687] = 2, + ACTIONS(3931), 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(3883), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(3929), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91131,25 +91310,25 @@ 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, - 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_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, - [17561] = 2, - ACTIONS(483), 7, + [17742] = 2, + ACTIONS(2236), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91157,11 +91336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(481), 43, + ACTIONS(2234), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91187,9 +91368,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91201,10 +91380,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17616] = 3, - ACTIONS(2394), 1, - sym__last_token_punctuation, - ACTIONS(3710), 7, + [17797] = 2, + ACTIONS(3927), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91212,10 +91389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3708), 42, + ACTIONS(3925), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91241,9 +91421,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91255,28 +91433,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17673] = 6, - ACTIONS(3921), 1, - sym__whitespace_ge_2, - ACTIONS(3924), 1, - aux_sym__whitespace_token1, - ACTIONS(3927), 1, - aux_sym__newline_token1, - STATE(1687), 2, - sym__whitespace, - sym__newline, - ACTIONS(3043), 6, + [17852] = 2, + ACTIONS(3919), 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(2582), 39, + aux_sym__whitespace_token1, + ACTIONS(3917), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91297,12 +91469,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -91310,10 +91482,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, - [17736] = 2, - ACTIONS(3932), 7, + aux_sym__newline_token1, + [17907] = 2, + ACTIONS(3968), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91321,11 +91495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3930), 43, + ACTIONS(3966), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91351,9 +91527,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91365,8 +91539,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17791] = 2, - ACTIONS(3936), 7, + [17962] = 2, + ACTIONS(3972), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91374,11 +91548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3934), 43, + ACTIONS(3970), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91404,9 +91580,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91418,16 +91592,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17846] = 6, - ACTIONS(3724), 1, - sym__last_token_punctuation, - ACTIONS(3938), 1, - anon_sym_SLASH, - ACTIONS(3941), 1, - sym__word_no_digit, - STATE(1903), 1, - sym__tag_name, - ACTIONS(3043), 7, + [18017] = 2, + ACTIONS(3911), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91435,11 +91601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2582), 39, + ACTIONS(3909), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91453,18 +91621,19 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -91473,10 +91642,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, - [17909] = 2, - ACTIONS(3946), 7, + [18072] = 3, + ACTIONS(3906), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3904), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91484,18 +91657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3944), 43, + ACTIONS(3902), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -91509,14 +91683,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -91528,12 +91699,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17964] = 4, - ACTIONS(3724), 1, - sym__last_token_punctuation, - ACTIONS(3948), 1, - anon_sym_LBRACK, - ACTIONS(3043), 7, + [18129] = 2, + ACTIONS(2166), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91541,11 +91708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2582), 41, + ACTIONS(2164), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91566,12 +91735,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -91583,8 +91752,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18023] = 2, - ACTIONS(3952), 7, + [18184] = 2, + ACTIONS(3900), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91592,11 +91761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3950), 43, + ACTIONS(3898), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91622,9 +91793,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91636,8 +91805,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18078] = 2, - ACTIONS(3956), 7, + [18239] = 3, + ACTIONS(3895), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91645,18 +91817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3954), 43, + ACTIONS(3891), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -91670,14 +91843,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -91689,8 +91859,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18133] = 2, - ACTIONS(3960), 7, + [18296] = 2, + ACTIONS(3976), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91698,11 +91868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3958), 43, + ACTIONS(3974), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91728,9 +91900,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91742,8 +91912,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18188] = 2, - ACTIONS(3964), 7, + [18351] = 3, + ACTIONS(3978), 1, + sym__emphasis_close_underscore, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91751,11 +91923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3962), 43, + ACTIONS(3866), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91781,9 +91954,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91795,8 +91966,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18243] = 2, - ACTIONS(2186), 7, + [18408] = 3, + ACTIONS(3684), 1, + sym__last_token_whitespace, + ACTIONS(2990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91804,11 +91977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2184), 43, + ACTIONS(2988), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91834,9 +92008,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91848,8 +92020,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18298] = 2, - ACTIONS(3968), 7, + [18465] = 3, + ACTIONS(3980), 1, + sym__emphasis_close_star, + ACTIONS(3943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91857,11 +92031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3966), 43, + ACTIONS(3941), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91887,9 +92062,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91901,8 +92074,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18353] = 2, - ACTIONS(3757), 7, + [18522] = 2, + ACTIONS(3984), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91910,11 +92083,13 @@ 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(3982), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91940,9 +92115,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91954,25 +92127,31 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18408] = 2, - ACTIONS(3972), 7, - anon_sym_AMP, + [18577] = 4, + STATE(735), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 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(3970), 43, + ACTIONS(3986), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91988,27 +92167,23 @@ 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, - 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_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, - [18463] = 2, - ACTIONS(3976), 7, + [18636] = 2, + ACTIONS(3858), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92016,11 +92191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3974), 43, + ACTIONS(3856), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92046,9 +92223,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92060,8 +92235,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18518] = 2, - ACTIONS(3980), 7, + [18691] = 2, + ACTIONS(3854), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92069,11 +92244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3978), 43, + ACTIONS(3852), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92099,9 +92276,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92113,8 +92288,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18573] = 2, - ACTIONS(3984), 7, + [18746] = 2, + ACTIONS(3847), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92122,11 +92297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3982), 43, + ACTIONS(3845), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92152,9 +92329,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92166,8 +92341,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18628] = 2, - ACTIONS(3988), 7, + [18801] = 2, + ACTIONS(3843), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92175,11 +92350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3986), 43, + ACTIONS(3841), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92205,9 +92382,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92219,8 +92394,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18683] = 2, - ACTIONS(3992), 7, + [18856] = 2, + ACTIONS(3839), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92228,11 +92403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3990), 43, + ACTIONS(3837), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92258,9 +92435,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92272,8 +92447,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18738] = 2, - ACTIONS(3992), 7, + [18911] = 2, + ACTIONS(3835), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92281,11 +92456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3990), 43, + ACTIONS(3833), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92311,9 +92488,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92325,8 +92500,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18793] = 2, - ACTIONS(3988), 7, + [18966] = 2, + ACTIONS(3990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92334,11 +92509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3986), 43, + ACTIONS(3988), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92364,9 +92541,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92378,8 +92553,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18848] = 2, - ACTIONS(3984), 7, + [19021] = 2, + ACTIONS(3831), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92387,11 +92562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3982), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92417,9 +92594,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92431,8 +92606,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18903] = 2, - ACTIONS(3980), 7, + [19076] = 2, + ACTIONS(3994), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92440,11 +92615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3978), 43, + ACTIONS(3992), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92470,9 +92647,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92484,8 +92659,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18958] = 2, - ACTIONS(3968), 7, + [19131] = 2, + ACTIONS(3998), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92493,64 +92668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3966), 43, + ACTIONS(3996), 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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [19013] = 2, - ACTIONS(3976), 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(3974), 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, @@ -92576,9 +92700,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92590,8 +92712,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19068] = 2, - ACTIONS(3972), 7, + [19186] = 3, + ACTIONS(4000), 1, + sym__emphasis_close_star, + ACTIONS(3943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92599,11 +92723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3970), 43, + ACTIONS(3941), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92629,9 +92754,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92643,8 +92766,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19123] = 2, - ACTIONS(3964), 7, + [19243] = 2, + ACTIONS(3809), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92652,11 +92775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3962), 43, + ACTIONS(3807), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92682,9 +92807,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92696,8 +92819,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19178] = 2, - ACTIONS(3736), 7, + [19298] = 2, + ACTIONS(4004), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92705,11 +92828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3734), 43, + ACTIONS(4002), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92735,9 +92860,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92749,8 +92872,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19233] = 2, - ACTIONS(3907), 7, + [19353] = 2, + ACTIONS(2248), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92758,11 +92881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3905), 43, + ACTIONS(2246), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92788,9 +92913,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92802,8 +92925,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19288] = 2, - ACTIONS(3960), 7, + [19408] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92811,11 +92934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3958), 43, + ACTIONS(3799), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92841,9 +92966,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92855,8 +92978,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19343] = 2, - ACTIONS(3903), 7, + [19463] = 2, + ACTIONS(2252), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92864,11 +92987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3901), 43, + ACTIONS(2250), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92894,9 +93019,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92908,8 +93031,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19398] = 2, - ACTIONS(3956), 7, + [19518] = 2, + ACTIONS(4004), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92917,64 +93040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3954), 43, + ACTIONS(4002), 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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [19453] = 2, - ACTIONS(3832), 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(3830), 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, @@ -93000,9 +93072,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93014,13 +93084,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19508] = 4, - ACTIONS(2394), 1, - sym__last_token_punctuation, - ACTIONS(3994), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(2967), 7, + [19573] = 2, + ACTIONS(3797), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93028,61 +93093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1767), 40, + ACTIONS(3795), 43, 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__, - anon_sym_BQUOTE, + sym__emphasis_close_star, 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, - [19567] = 2, - ACTIONS(3891), 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(3889), 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, @@ -93108,9 +93125,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93122,8 +93137,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19622] = 2, - ACTIONS(3887), 7, + [19628] = 2, + ACTIONS(3998), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93131,64 +93146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3885), 43, + ACTIONS(3996), 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, - [19677] = 2, - ACTIONS(3881), 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(3879), 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, @@ -93214,9 +93178,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93228,8 +93190,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19732] = 2, - ACTIONS(3998), 7, + [19683] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93237,11 +93199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3996), 43, + 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93267,9 +93231,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93281,8 +93243,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19787] = 2, - ACTIONS(3877), 7, + [19738] = 2, + ACTIONS(3994), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93290,11 +93252,13 @@ 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(3992), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93320,9 +93284,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93334,8 +93296,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19842] = 2, - ACTIONS(3847), 7, + [19793] = 3, + ACTIONS(2360), 1, + sym__last_token_punctuation, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93343,11 +93307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3845), 43, + ACTIONS(3708), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93373,9 +93338,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93387,8 +93350,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19897] = 2, - ACTIONS(4002), 7, + [19850] = 3, + ACTIONS(4006), 1, + sym__emphasis_close_underscore, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93396,11 +93361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4000), 43, + ACTIONS(3866), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93426,9 +93392,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93440,8 +93404,63 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19952] = 2, - ACTIONS(3799), 7, + [19907] = 4, + STATE(735), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3986), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, + 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, + [19966] = 2, + ACTIONS(3990), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93449,11 +93468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3797), 43, + ACTIONS(3988), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93479,9 +93500,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93493,8 +93512,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20007] = 2, - ACTIONS(3952), 7, + [20021] = 3, + ACTIONS(4008), 1, + sym__emphasis_close_star, + ACTIONS(3943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93502,11 +93523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3950), 43, + ACTIONS(3941), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93532,9 +93554,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93546,8 +93566,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20062] = 2, - ACTIONS(3946), 7, + [20078] = 2, + ACTIONS(3984), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93555,11 +93575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3944), 43, + ACTIONS(3982), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93585,9 +93607,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93599,8 +93619,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20117] = 2, - ACTIONS(3936), 7, + [20133] = 2, + ACTIONS(3976), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93608,11 +93628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3934), 43, + ACTIONS(3974), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93638,9 +93660,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93652,8 +93672,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20172] = 2, - ACTIONS(3932), 7, + [20188] = 2, + ACTIONS(3972), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93661,11 +93681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3930), 43, + ACTIONS(3970), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93691,9 +93713,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93705,11 +93725,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20227] = 3, - ACTIONS(3794), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3792), 7, + [20243] = 2, + ACTIONS(3968), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93717,17 +93734,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3790), 41, + ACTIONS(3966), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -93741,13 +93761,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -93759,8 +93778,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20284] = 2, - ACTIONS(3788), 7, + [20298] = 2, + ACTIONS(3787), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93768,11 +93787,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3786), 43, + ACTIONS(3785), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93798,9 +93819,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93812,11 +93831,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20339] = 3, - ACTIONS(3783), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3781), 7, + [20353] = 2, + ACTIONS(3783), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93824,17 +93840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3779), 41, + ACTIONS(3781), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -93848,13 +93867,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -93866,10 +93884,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20396] = 3, - ACTIONS(3703), 1, - sym__last_token_whitespace, - ACTIONS(2990), 7, + [20408] = 2, + ACTIONS(3779), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93877,10 +93893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2988), 42, + ACTIONS(3777), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93906,9 +93925,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93920,10 +93937,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20453] = 3, - ACTIONS(4004), 1, - sym__emphasis_close_underscore, - ACTIONS(3832), 7, + [20463] = 2, + ACTIONS(3768), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93931,10 +93946,13 @@ 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(3766), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93960,9 +93978,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93974,12 +93990,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20510] = 4, - ACTIONS(3732), 1, + [20518] = 4, + ACTIONS(3714), 1, sym__last_token_punctuation, - ACTIONS(4006), 1, + ACTIONS(4010), 1, anon_sym_LBRACK, - ACTIONS(3094), 7, + ACTIONS(3077), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93987,10 +94003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2601), 41, + ACTIONS(2549), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94015,9 +94033,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94029,32 +94045,31 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20569] = 6, - ACTIONS(3732), 1, - sym__last_token_punctuation, - ACTIONS(4008), 1, - anon_sym_SLASH, - ACTIONS(4011), 1, - sym__word_no_digit, - STATE(1909), 1, - sym__tag_name, - ACTIONS(3094), 7, - anon_sym_AMP, + [20577] = 4, + STATE(797), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 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(2601), 39, + ACTIONS(4012), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94063,6 +94078,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, @@ -94073,25 +94089,19 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [20632] = 4, - ACTIONS(2444), 1, - sym__last_token_punctuation, - ACTIONS(4014), 1, - anon_sym_LBRACK, - ACTIONS(3003), 7, + [20636] = 2, + ACTIONS(3107), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94099,11 +94109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(612), 41, + ACTIONS(3105), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94124,13 +94136,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -94141,8 +94152,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + aux_sym__newline_token1, [20691] = 2, - ACTIONS(3761), 7, + ACTIONS(2210), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94150,11 +94162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3759), 43, + ACTIONS(2208), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94180,9 +94194,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94195,7 +94207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [20746] = 2, - ACTIONS(3765), 7, + ACTIONS(2216), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94203,11 +94215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3763), 43, + ACTIONS(2214), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94233,9 +94247,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94247,27 +94259,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20801] = 6, - ACTIONS(4017), 1, - sym__whitespace_ge_2, - ACTIONS(4020), 1, - aux_sym__whitespace_token1, - ACTIONS(4023), 1, - aux_sym__newline_token1, - STATE(1665), 2, - sym__whitespace, - sym__newline, - ACTIONS(3094), 6, + [20801] = 2, + ACTIONS(2220), 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(2601), 39, + aux_sym__whitespace_token1, + ACTIONS(2218), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94288,13 +94295,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -94302,10 +94308,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, - [20864] = 2, - ACTIONS(3769), 7, + aux_sym__newline_token1, + [20856] = 6, + ACTIONS(3714), 1, + sym__last_token_punctuation, + ACTIONS(4014), 1, + anon_sym_SLASH, + ACTIONS(4017), 1, + sym__word_no_digit, + STATE(1928), 1, + sym__tag_name, + ACTIONS(3077), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94313,11 +94329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3767), 43, + ACTIONS(2549), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94331,21 +94348,17 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -94354,11 +94367,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, [20919] = 2, - ACTIONS(3773), 7, + ACTIONS(3915), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94366,11 +94378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3771), 43, + ACTIONS(3913), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94396,9 +94410,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94411,7 +94423,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [20974] = 2, - ACTIONS(3777), 7, + ACTIONS(3889), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94419,11 +94431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3775), 43, + ACTIONS(3887), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94449,9 +94463,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94463,21 +94475,29 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21029] = 3, + [21029] = 6, + ACTIONS(4020), 1, + sym__whitespace_ge_2, + ACTIONS(4023), 1, + aux_sym__whitespace_token1, ACTIONS(4026), 1, - sym__emphasis_close_star, - ACTIONS(3751), 7, + aux_sym__newline_token1, + STATE(1648), 2, + sym__whitespace, + sym__newline, + ACTIONS(3077), 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(3749), 42, + ACTIONS(2549), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94498,14 +94518,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -94513,12 +94530,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, - [21086] = 2, - ACTIONS(3919), 7, + [21092] = 2, + ACTIONS(3824), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94526,11 +94541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3917), 43, + ACTIONS(3822), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94556,9 +94573,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94570,8 +94585,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21141] = 2, - ACTIONS(3740), 7, + [21147] = 2, + ACTIONS(417), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94579,11 +94594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3738), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94609,9 +94626,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94623,10 +94638,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21196] = 3, - ACTIONS(4028), 1, - sym__emphasis_close_underscore, - ACTIONS(3832), 7, + [21202] = 2, + ACTIONS(3820), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94634,10 +94647,13 @@ 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(3818), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94663,9 +94679,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94677,8 +94691,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21253] = 2, - ACTIONS(3915), 7, + [21257] = 2, + ACTIONS(4031), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94686,11 +94700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3913), 43, + ACTIONS(4029), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94716,9 +94732,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94730,8 +94744,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21308] = 2, - ACTIONS(3911), 7, + [21312] = 2, + ACTIONS(2206), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94739,11 +94753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3909), 43, + ACTIONS(2204), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94769,9 +94785,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94783,8 +94797,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21363] = 2, - ACTIONS(3803), 7, + [21367] = 2, + ACTIONS(3764), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94792,11 +94806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3801), 43, + ACTIONS(3762), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94822,9 +94838,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94836,8 +94850,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21418] = 2, - ACTIONS(3807), 7, + [21422] = 2, + ACTIONS(3760), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94845,11 +94859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3805), 43, + ACTIONS(3758), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94875,9 +94891,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94889,8 +94903,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21473] = 2, - ACTIONS(3811), 7, + [21477] = 2, + ACTIONS(2190), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94898,11 +94912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3809), 43, + ACTIONS(2188), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94928,9 +94944,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94942,8 +94956,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21528] = 2, - ACTIONS(3815), 7, + [21532] = 2, + ACTIONS(3756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94951,11 +94965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3813), 43, + ACTIONS(3754), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94981,9 +94997,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -94995,8 +95009,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21583] = 2, - ACTIONS(3828), 7, + [21587] = 2, + ACTIONS(3752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95004,11 +95018,13 @@ 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(3750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95034,9 +95050,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95048,29 +95062,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21638] = 4, - STATE(852), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 3, + [21642] = 2, + ACTIONS(2202), 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(4030), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(2200), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95086,25 +95098,25 @@ 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, - 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_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, [21697] = 2, - ACTIONS(2202), 7, + ACTIONS(4031), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95112,11 +95124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2200), 43, + ACTIONS(4029), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95142,9 +95156,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95157,7 +95169,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [21752] = 2, - ACTIONS(3107), 7, + ACTIONS(2228), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95165,11 +95177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3105), 43, + ACTIONS(2226), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95195,9 +95209,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95210,7 +95222,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [21807] = 2, - ACTIONS(3851), 7, + ACTIONS(2236), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95218,11 +95230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3849), 43, + ACTIONS(2234), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95248,9 +95262,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95263,7 +95275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [21862] = 2, - ACTIONS(3899), 7, + ACTIONS(3805), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95271,11 +95283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3897), 43, + ACTIONS(3803), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95301,9 +95315,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95316,7 +95328,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [21917] = 2, - ACTIONS(2228), 7, + ACTIONS(2248), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95324,11 +95336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2226), 43, + ACTIONS(2246), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95354,9 +95368,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95369,7 +95381,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [21972] = 2, - ACTIONS(3855), 7, + ACTIONS(2252), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95377,11 +95389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3853), 43, + ACTIONS(2250), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95407,9 +95421,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95422,7 +95434,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22027] = 2, - ACTIONS(3859), 7, + ACTIONS(3813), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95430,11 +95442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3857), 43, + ACTIONS(3811), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95460,9 +95474,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95475,7 +95487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22082] = 2, - ACTIONS(2178), 7, + ACTIONS(2166), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95483,11 +95495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2176), 43, + ACTIONS(2164), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95513,9 +95527,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95528,7 +95540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22137] = 2, - ACTIONS(3895), 7, + ACTIONS(3748), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95536,11 +95548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3893), 43, + ACTIONS(3746), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95566,9 +95580,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95581,7 +95593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22192] = 2, - ACTIONS(2174), 7, + ACTIONS(3947), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95589,11 +95601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2172), 43, + ACTIONS(3945), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95619,9 +95633,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95634,7 +95646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22247] = 2, - ACTIONS(3867), 7, + ACTIONS(3740), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95642,11 +95654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3865), 43, + ACTIONS(3738), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95672,9 +95686,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95687,7 +95699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22302] = 2, - ACTIONS(2250), 7, + ACTIONS(2216), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95695,11 +95707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2248), 43, + ACTIONS(2214), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95725,9 +95739,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95740,7 +95752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22357] = 2, - ACTIONS(2166), 7, + ACTIONS(2220), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95748,11 +95760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2164), 43, + ACTIONS(2218), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95778,9 +95792,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95793,7 +95805,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22412] = 2, - ACTIONS(3873), 7, + ACTIONS(3744), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95801,11 +95813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3871), 43, + ACTIONS(3742), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95831,9 +95845,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95858,6 +95870,8 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95883,9 +95897,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95898,7 +95910,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [22521] = 2, - ACTIONS(3964), 7, + ACTIONS(2190), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95906,10 +95918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3962), 42, + ACTIONS(2188), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95935,9 +95949,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -95949,8 +95961,77 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22575] = 2, - ACTIONS(3761), 7, + [22575] = 19, + ACTIONS(453), 1, + aux_sym__whitespace_token1, + ACTIONS(4037), 1, + aux_sym__html_block_1_token1, + ACTIONS(4039), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4041), 1, + anon_sym_LT_QMARK, + ACTIONS(4043), 1, + aux_sym__html_block_4_token1, + ACTIONS(4045), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4047), 1, + aux_sym__html_block_6_token1, + ACTIONS(4049), 1, + aux_sym__html_block_6_token2, + ACTIONS(4051), 1, + sym__block_quote_start, + ACTIONS(4057), 1, + sym__thematic_break, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4063), 1, + sym__blank_line_start, + ACTIONS(4065), 1, + sym__last_token_whitespace, + ACTIONS(447), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(4053), 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(4055), 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, + ACTIONS(451), 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1918), 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, + [22663] = 2, + ACTIONS(3787), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95958,10 +96039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3759), 42, + ACTIONS(3785), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95987,9 +96070,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + 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, + [22717] = 2, + ACTIONS(3783), 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(3781), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_PIPE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -96001,25 +96134,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22629] = 8, - ACTIONS(4041), 1, + [22771] = 8, + ACTIONS(4071), 1, anon_sym_RBRACK, - ACTIONS(4045), 1, + ACTIONS(4075), 1, sym__whitespace_ge_2, - ACTIONS(4047), 1, + ACTIONS(4077), 1, aux_sym__whitespace_token1, - ACTIONS(4049), 1, + ACTIONS(4079), 1, aux_sym__newline_token1, - ACTIONS(4039), 2, + ACTIONS(4069), 2, anon_sym_LT, anon_sym_BSLASH, - STATE(915), 5, + STATE(965), 5, sym__whitespace, sym__word, sym__newline, sym__text_inline_no_link, aux_sym_link_label_repeat1, - ACTIONS(4043), 10, + ACTIONS(4073), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96030,7 +96163,9 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(4037), 28, + ACTIONS(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96055,12 +96190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [22695] = 2, - ACTIONS(3907), 7, + [22837] = 2, + ACTIONS(3779), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96068,10 +96201,12 @@ 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(3777), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96097,9 +96232,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -96111,42 +96244,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22749] = 8, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4051), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, + [22891] = 2, + ACTIONS(3768), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(910), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4053), 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(4037), 28, + aux_sym__whitespace_token1, + ACTIONS(3766), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96162,15 +96279,27 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [22815] = 2, - ACTIONS(3968), 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, + [22945] = 3, + ACTIONS(3719), 1, + sym__last_token_punctuation, + ACTIONS(3060), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96178,10 +96307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3966), 42, + ACTIONS(2530), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96202,14 +96334,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -96221,8 +96349,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22869] = 2, - ACTIONS(3936), 7, + [23001] = 2, + ACTIONS(417), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96230,10 +96358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3934), 42, + ACTIONS(415), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96259,9 +96389,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -96273,8 +96401,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22923] = 2, - ACTIONS(3903), 7, + [23055] = 2, + ACTIONS(4083), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96282,10 +96410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3901), 42, + ACTIONS(4081), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96311,9 +96441,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -96325,42 +96453,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22977] = 8, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4055), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, + [23109] = 2, + ACTIONS(4087), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(910), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4053), 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(4037), 28, + aux_sym__whitespace_token1, + ACTIONS(4085), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96376,19 +96488,25 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [23043] = 4, - ACTIONS(3794), 1, - anon_sym_LPAREN, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(3792), 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, + [23163] = 2, + ACTIONS(4091), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96396,17 +96514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3790), 40, + ACTIONS(4089), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -96420,12 +96540,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -96437,42 +96557,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23101] = 8, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4059), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, + [23217] = 2, + ACTIONS(4095), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(915), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4043), 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(4037), 28, + aux_sym__whitespace_token1, + ACTIONS(4093), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96488,15 +96592,25 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [23167] = 2, - ACTIONS(3828), 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, + [23271] = 2, + ACTIONS(4099), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96504,10 +96618,12 @@ 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(4097), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96533,9 +96649,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -96547,10 +96661,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23221] = 3, - ACTIONS(4065), 1, - sym__emphasis_close_underscore, - ACTIONS(4063), 7, + [23325] = 2, + ACTIONS(4103), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96558,10 +96670,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4061), 41, + ACTIONS(4101), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96587,9 +96701,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -96600,10 +96712,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23277] = 3, - ACTIONS(4071), 1, - sym__emphasis_close_star, - ACTIONS(4069), 7, + aux_sym__newline_token1, + [23379] = 2, + ACTIONS(3939), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96611,10 +96722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4067), 41, + ACTIONS(3937), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96640,9 +96753,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -96653,31 +96764,33 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23333] = 5, - ACTIONS(4073), 1, - sym__line_ending, - STATE(1093), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, + aux_sym__newline_token1, + [23433] = 4, + ACTIONS(3906), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + anon_sym_LBRACK, + ACTIONS(3904), 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(4075), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 41, + ACTIONS(3902), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -96691,41 +96804,59 @@ 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, - 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_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, - [23393] = 2, - ACTIONS(3899), 7, - anon_sym_AMP, + [23491] = 8, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, + aux_sym__newline_token1, + ACTIONS(4107), 1, + anon_sym_RBRACK, + ACTIONS(4069), 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(3897), 42, + STATE(950), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4109), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96741,38 +96872,47 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [23557] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(888), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1184), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2342), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 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, - [23447] = 2, - ACTIONS(4079), 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(4077), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96789,6 +96929,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, @@ -96798,34 +96939,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23635] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1125), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2341), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [23501] = 2, - ACTIONS(4083), 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(4081), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96842,6 +96992,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, @@ -96851,33 +97002,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23711] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1124), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2340), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [23555] = 2, - ACTIONS(4087), 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(4085), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96894,6 +97055,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, @@ -96903,32 +97065,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23787] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(891), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1133), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2334), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 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, - [23609] = 2, - ACTIONS(2178), 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(2176), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96945,6 +97119,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, @@ -96954,33 +97129,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23865] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(892), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1134), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2331), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 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, - [23663] = 2, - ACTIONS(4091), 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(4089), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96997,6 +97183,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, @@ -97006,33 +97193,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23943] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1168), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2329), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [23717] = 2, - ACTIONS(4095), 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(4093), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97049,6 +97246,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, @@ -97058,56 +97256,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [23771] = 8, - ACTIONS(4045), 1, + [24019] = 13, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4047), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4049), 1, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4097), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, - anon_sym_LT, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1174), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2328), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, anon_sym_BSLASH, - STATE(969), 5, - sym__whitespace, + STATE(1543), 2, sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4099), 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, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4037), 28, + ACTIONS(4113), 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, @@ -97119,23 +97309,20 @@ 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, - [23837] = 4, - ACTIONS(3794), 1, - anon_sym_LPAREN, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(3792), 7, + [24095] = 2, + ACTIONS(4129), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97143,16 +97330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3790), 40, + ACTIONS(4127), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -97166,13 +97357,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -97183,9 +97373,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23895] = 2, - ACTIONS(3799), 7, + [24149] = 2, + ACTIONS(4133), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97193,10 +97382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3797), 42, + ACTIONS(4131), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97222,9 +97414,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97235,29 +97425,49 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [24203] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, aux_sym__newline_token1, - [23949] = 3, - ACTIONS(3794), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3792), 7, + STATE(945), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1170), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2311), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(3790), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 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, @@ -97267,32 +97477,20 @@ 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, - [24005] = 3, - ACTIONS(4101), 1, - sym__emphasis_close_star, - ACTIONS(4069), 7, + [24281] = 2, + ACTIONS(3935), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97300,10 +97498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4067), 41, + ACTIONS(3933), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97329,9 +97529,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97342,8 +97540,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24061] = 2, - ACTIONS(4069), 7, + aux_sym__newline_token1, + [24335] = 2, + ACTIONS(3931), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97351,11 +97550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4067), 42, + ACTIONS(3929), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97381,9 +97581,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97394,8 +97592,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24115] = 2, - ACTIONS(3847), 7, + aux_sym__newline_token1, + [24389] = 2, + ACTIONS(3927), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97403,10 +97602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3845), 42, + ACTIONS(3925), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97432,9 +97633,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97446,8 +97645,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24169] = 2, - ACTIONS(3788), 7, + [24443] = 2, + ACTIONS(4087), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97455,10 +97654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3786), 42, + ACTIONS(4085), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97484,9 +97686,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97497,9 +97697,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24223] = 2, - ACTIONS(2174), 7, + [24497] = 2, + ACTIONS(3736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97507,10 +97706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2172), 42, + ACTIONS(3734), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97536,9 +97737,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97550,79 +97749,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24277] = 19, - ACTIONS(417), 1, - aux_sym__whitespace_token1, - ACTIONS(4103), 1, - aux_sym__html_block_1_token1, - ACTIONS(4105), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4107), 1, - anon_sym_LT_QMARK, - ACTIONS(4109), 1, - aux_sym__html_block_4_token1, - ACTIONS(4111), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4113), 1, - aux_sym__html_block_6_token1, - ACTIONS(4115), 1, - aux_sym__html_block_6_token2, - ACTIONS(4117), 1, - sym__block_quote_start, - ACTIONS(4123), 1, - sym__thematic_break, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4129), 1, - sym__blank_line_start, - ACTIONS(4131), 1, - sym__last_token_whitespace, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(4119), 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(4121), 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, - ACTIONS(415), 8, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1921), 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, - [24365] = 3, - ACTIONS(4133), 1, - sym__emphasis_close_star, - ACTIONS(4069), 7, + [24551] = 2, + ACTIONS(3820), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97630,10 +97758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4067), 41, + ACTIONS(3818), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97659,9 +97789,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97672,24 +97800,45 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24421] = 2, - ACTIONS(3873), 7, - anon_sym_AMP, + aux_sym__newline_token1, + [24605] = 8, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, + aux_sym__newline_token1, + ACTIONS(4135), 1, + anon_sym_RBRACK, + ACTIONS(4069), 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(3871), 42, + STATE(965), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4073), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97705,27 +97854,13 @@ 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, - 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, - [24475] = 2, - ACTIONS(3744), 7, + [24671] = 2, + ACTIONS(4099), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97733,10 +97868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3742), 42, + ACTIONS(4097), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97762,9 +97900,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97775,9 +97911,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24529] = 2, - ACTIONS(2166), 7, + [24725] = 2, + ACTIONS(3764), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97785,10 +97920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2164), 42, + ACTIONS(3762), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97814,9 +97951,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97828,8 +97963,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24583] = 2, - ACTIONS(4063), 7, + [24779] = 2, + ACTIONS(4095), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97837,11 +97972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4061), 42, + ACTIONS(4093), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97867,9 +98004,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -97880,19 +98015,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24637] = 2, - ACTIONS(2250), 7, + [24833] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(934), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1118), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2288), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(2248), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97909,6 +98067,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, @@ -97918,33 +98077,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [24911] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1161), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2302), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [24691] = 2, - ACTIONS(3891), 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(3889), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97961,6 +98130,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, @@ -97970,22 +98140,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24745] = 2, - ACTIONS(3992), 7, + [24987] = 2, + ACTIONS(3813), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97993,10 +98151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3990), 42, + ACTIONS(3811), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98022,9 +98182,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98036,8 +98194,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24799] = 2, - ACTIONS(2228), 7, + [25041] = 2, + ACTIONS(3805), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98045,10 +98203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2226), 42, + ACTIONS(3803), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98074,9 +98234,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98088,8 +98246,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24853] = 2, - ACTIONS(3815), 7, + [25095] = 2, + ACTIONS(4091), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98097,10 +98255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3813), 42, + ACTIONS(4089), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98126,9 +98287,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98139,43 +98298,47 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24907] = 8, - ACTIONS(4045), 1, + [25149] = 14, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4047), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4049), 1, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4135), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(969), 5, + STATE(907), 1, sym__whitespace, - sym__word, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1167), 1, sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4099), 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(1251), 1, + sym_language, + STATE(2309), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4037), 28, + ACTIONS(4113), 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, @@ -98187,39 +98350,60 @@ 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, - [24973] = 3, - ACTIONS(3783), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3781), 7, + [25227] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1169), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2354), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(3779), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 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, @@ -98229,41 +98413,53 @@ 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, + [25303] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1171), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2359), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [25029] = 2, - ACTIONS(3867), 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(3865), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98280,6 +98476,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, @@ -98289,24 +98486,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [25083] = 3, - ACTIONS(3712), 1, - sym__last_token_punctuation, - ACTIONS(3024), 7, + [25379] = 2, + ACTIONS(4083), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98314,11 +98497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2530), 41, + ACTIONS(4081), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98339,12 +98524,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -98355,9 +98540,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25139] = 2, - ACTIONS(3887), 7, + [25433] = 4, + ACTIONS(3906), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + anon_sym_LBRACK, + ACTIONS(3904), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98365,17 +98553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3885), 42, + ACTIONS(3902), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -98389,14 +98579,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -98408,66 +98594,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25193] = 8, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4137), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(969), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4099), 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(4037), 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, - [25259] = 2, - ACTIONS(3960), 7, + [25491] = 2, + ACTIONS(3889), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98475,10 +98603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3958), 42, + ACTIONS(3887), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98504,9 +98634,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98518,8 +98646,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25313] = 2, - ACTIONS(3881), 7, + [25545] = 2, + ACTIONS(4139), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98527,10 +98655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3879), 42, + ACTIONS(4137), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98556,9 +98686,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98570,12 +98698,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25367] = 4, - ACTIONS(3794), 1, - anon_sym_LPAREN, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(3792), 7, + [25599] = 2, + ACTIONS(3915), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98583,17 +98707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3790), 40, + ACTIONS(3913), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -98607,12 +98733,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -98624,8 +98750,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25425] = 2, - ACTIONS(2202), 7, + [25653] = 2, + ACTIONS(3760), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98633,10 +98759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2200), 42, + ACTIONS(3758), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98662,9 +98790,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98676,8 +98802,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25479] = 2, - ACTIONS(4087), 7, + [25707] = 2, + ACTIONS(4133), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98685,11 +98811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4085), 42, + ACTIONS(4131), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98715,9 +98842,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98728,10 +98853,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25533] = 3, - ACTIONS(4139), 1, - sym__emphasis_close_underscore, - ACTIONS(4063), 7, + aux_sym__newline_token1, + [25761] = 2, + ACTIONS(4129), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98739,10 +98863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4061), 41, + ACTIONS(4127), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98768,9 +98894,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98781,8 +98905,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25589] = 2, - ACTIONS(3877), 7, + aux_sym__newline_token1, + [25815] = 2, + ACTIONS(736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98790,10 +98915,12 @@ 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(734), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98819,9 +98946,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98833,42 +98958,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25643] = 8, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4141), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, + [25869] = 2, + ACTIONS(4143), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(969), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4099), 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(4037), 28, + aux_sym__whitespace_token1, + ACTIONS(4141), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98884,15 +98993,25 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [25709] = 2, - ACTIONS(4083), 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, + [25923] = 2, + ACTIONS(2210), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98900,11 +99019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4081), 42, + ACTIONS(2208), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98930,9 +99050,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -98943,8 +99061,203 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25763] = 2, - ACTIONS(691), 7, + aux_sym__newline_token1, + [25977] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(996), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1163), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2389), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 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_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_PIPE, + anon_sym_TILDE, + [26055] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(939), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1165), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2287), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 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_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_PIPE, + anon_sym_TILDE, + [26133] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1006), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1157), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2391), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 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_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_PIPE, + anon_sym_TILDE, + [26211] = 3, + ACTIONS(3714), 1, + sym__last_token_punctuation, + ACTIONS(3077), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98952,10 +99265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(689), 42, + ACTIONS(2549), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98976,14 +99291,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -98995,8 +99307,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25817] = 2, - ACTIONS(3769), 7, + [26267] = 2, + ACTIONS(4031), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99004,10 +99316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3767), 42, + ACTIONS(4029), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99033,9 +99347,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99047,8 +99359,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25871] = 2, - ACTIONS(4035), 7, + [26321] = 2, + ACTIONS(3911), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99056,11 +99368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4033), 42, + ACTIONS(3909), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99086,9 +99399,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99099,8 +99410,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25925] = 2, - ACTIONS(3956), 7, + aux_sym__newline_token1, + [26375] = 4, + ACTIONS(3906), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + anon_sym_LBRACK, + ACTIONS(3904), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99108,17 +99424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3954), 42, + ACTIONS(3902), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -99132,14 +99449,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -99151,8 +99465,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25979] = 2, - ACTIONS(4083), 7, + [26433] = 3, + ACTIONS(3906), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3904), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99160,17 +99477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4081), 42, + ACTIONS(3902), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -99184,14 +99502,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -99203,8 +99518,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26033] = 2, - ACTIONS(4145), 7, + [26489] = 2, + ACTIONS(3947), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99212,11 +99527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4143), 42, + ACTIONS(3945), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99242,9 +99558,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99255,19 +99569,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26087] = 2, - ACTIONS(4087), 7, + aux_sym__newline_token1, + [26543] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1177), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2281), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(4085), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99284,6 +99621,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, @@ -99293,22 +99631,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [26141] = 2, - ACTIONS(4149), 7, + [26619] = 2, + ACTIONS(3900), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99316,11 +99642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4147), 42, + ACTIONS(3898), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99346,9 +99673,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99359,8 +99684,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26195] = 2, - ACTIONS(3773), 7, + aux_sym__newline_token1, + [26673] = 2, + ACTIONS(3740), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99368,10 +99694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3771), 42, + ACTIONS(3738), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99397,9 +99725,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99411,8 +99737,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26249] = 2, - ACTIONS(4153), 7, + [26727] = 2, + ACTIONS(3756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99420,10 +99746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4151), 42, + ACTIONS(3754), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99449,9 +99777,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99463,8 +99789,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26303] = 2, - ACTIONS(3911), 7, + [26781] = 2, + ACTIONS(2206), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99472,10 +99798,12 @@ 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(2204), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99501,9 +99829,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99515,20 +99841,41 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26357] = 2, - ACTIONS(4157), 7, + [26835] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1178), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2280), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(4155), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99545,6 +99892,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, @@ -99554,32 +99902,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [26911] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1144), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2370), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [26411] = 2, - ACTIONS(3859), 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(3857), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99596,6 +99955,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, @@ -99605,22 +99965,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [26465] = 2, - ACTIONS(4161), 7, + [26987] = 3, + ACTIONS(3895), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99628,18 +99979,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4159), 42, + ACTIONS(3891), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -99653,14 +100004,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -99671,42 +100019,117 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26519] = 8, + aux_sym__newline_token1, + [27043] = 19, + ACTIONS(417), 1, + aux_sym__whitespace_token1, + ACTIONS(4037), 1, + aux_sym__html_block_1_token1, + ACTIONS(4039), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4041), 1, + anon_sym_LT_QMARK, + ACTIONS(4043), 1, + aux_sym__html_block_4_token1, ACTIONS(4045), 1, - sym__whitespace_ge_2, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, ACTIONS(4047), 1, - aux_sym__whitespace_token1, + aux_sym__html_block_6_token1, ACTIONS(4049), 1, + aux_sym__html_block_6_token2, + ACTIONS(4051), 1, + sym__block_quote_start, + ACTIONS(4057), 1, + sym__thematic_break, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4063), 1, + sym__blank_line_start, + ACTIONS(4147), 1, + sym__last_token_whitespace, + ACTIONS(447), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(4053), 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(4145), 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, + ACTIONS(415), 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4163), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(890), 5, + STATE(1904), 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, + [27131] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(956), 1, sym__whitespace, - sym__word, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1160), 1, sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4165), 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(1251), 1, + sym_language, + STATE(2265), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4037), 28, + ACTIONS(4113), 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, @@ -99718,21 +100141,20 @@ 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, - [26585] = 3, - ACTIONS(3732), 1, - sym__last_token_punctuation, - ACTIONS(3094), 7, + [27209] = 2, + ACTIONS(3752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99740,10 +100162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2601), 41, + ACTIONS(3750), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99764,13 +100188,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -99782,8 +100205,71 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26641] = 2, - ACTIONS(3855), 7, + [27263] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1162), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2306), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 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_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_PIPE, + anon_sym_TILDE, + [27339] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99791,10 +100277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3853), 42, + ACTIONS(3791), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99820,9 +100308,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99834,19 +100320,42 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26695] = 2, - ACTIONS(3932), 7, + [27393] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(973), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1154), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2263), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(3930), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99863,6 +100372,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, @@ -99872,22 +100382,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [26749] = 2, - ACTIONS(4169), 7, + [27471] = 2, + ACTIONS(3824), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99895,10 +100393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4167), 42, + ACTIONS(3822), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99924,9 +100424,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99938,8 +100436,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26803] = 2, - ACTIONS(3765), 7, + [27525] = 2, + ACTIONS(3919), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99947,10 +100445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3763), 42, + ACTIONS(3917), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99976,9 +100476,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -99990,24 +100488,44 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26857] = 2, - ACTIONS(2186), 7, - anon_sym_AMP, + [27579] = 8, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, + aux_sym__newline_token1, + ACTIONS(4149), 1, + anon_sym_RBRACK, + ACTIONS(4069), 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(2184), 42, + STATE(965), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4073), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100023,27 +100541,13 @@ 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, - 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, - [26911] = 2, - ACTIONS(4173), 7, + [27645] = 2, + ACTIONS(2202), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100051,10 +100555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4171), 42, + ACTIONS(2200), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100080,9 +100586,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100094,66 +100598,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26965] = 8, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4175), 1, - anon_sym_RBRACK, - ACTIONS(4039), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(890), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4165), 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(4037), 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, - [27031] = 2, - ACTIONS(483), 7, + [27699] = 2, + ACTIONS(3797), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100161,10 +100607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(481), 42, + ACTIONS(3795), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100190,9 +100638,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100204,10 +100650,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27085] = 3, - ACTIONS(4177), 1, - sym__emphasis_close_underscore, - ACTIONS(4063), 7, + [27753] = 2, + ACTIONS(3968), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100215,10 +100659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4061), 41, + ACTIONS(3966), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100244,9 +100690,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100257,8 +100701,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27141] = 2, - ACTIONS(4035), 7, + aux_sym__newline_token1, + [27807] = 2, + ACTIONS(3972), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100266,11 +100711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4033), 42, + ACTIONS(3970), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100296,9 +100742,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100309,8 +100753,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27195] = 2, - ACTIONS(4145), 7, + aux_sym__newline_token1, + [27861] = 2, + ACTIONS(4153), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100318,11 +100763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4143), 42, + ACTIONS(4151), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100348,9 +100795,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100361,19 +100806,41 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27249] = 2, - ACTIONS(3946), 7, + [27915] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1121), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2261), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(3944), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100390,6 +100857,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, @@ -100399,38 +100867,46 @@ static const uint16_t ts_small_parse_table[] = { 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, + [27991] = 8, + ACTIONS(4075), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, aux_sym__newline_token1, - [27303] = 2, - ACTIONS(3811), 7, - anon_sym_AMP, + ACTIONS(4155), 1, + anon_sym_RBRACK, + ACTIONS(4069), 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(3809), 42, + STATE(965), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4073), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100446,27 +100922,13 @@ 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, - 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, - [27357] = 2, - ACTIONS(3736), 7, + [28057] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100474,10 +100936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3734), 42, + ACTIONS(3799), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100503,9 +100967,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100517,8 +100979,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27411] = 2, - ACTIONS(4149), 7, + [28111] = 2, + ACTIONS(3809), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100526,11 +100988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4147), 42, + ACTIONS(3807), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100556,9 +101019,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100569,71 +101030,43 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27465] = 2, - ACTIONS(4161), 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__newline_token1, + [28165] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4159), 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, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(967), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1128), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2379), 1, + sym_info_string, + ACTIONS(4111), 2, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 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, - [27519] = 2, - ACTIONS(2220), 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(2218), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100650,6 +101083,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, @@ -100659,86 +101093,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [28243] = 14, + ACTIONS(4119), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [27573] = 2, - ACTIONS(2240), 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(4121), 1, aux_sym__whitespace_token1, - ACTIONS(2238), 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, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(984), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1127), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2378), 1, + sym_info_string, + ACTIONS(4111), 2, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 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, - [27627] = 2, - ACTIONS(4157), 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(4155), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100755,6 +101147,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, @@ -100764,21 +101157,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [27681] = 2, - ACTIONS(3972), 7, + [28321] = 2, + ACTIONS(2220), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100786,10 +101168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3970), 42, + ACTIONS(2218), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100815,9 +101199,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100829,8 +101211,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27735] = 2, - ACTIONS(3976), 7, + [28375] = 2, + ACTIONS(2216), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100838,10 +101220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3974), 42, + ACTIONS(2214), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100867,9 +101251,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100881,8 +101263,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27789] = 2, - ACTIONS(3980), 7, + [28429] = 2, + ACTIONS(2228), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100890,10 +101272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3978), 42, + ACTIONS(2226), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100919,9 +101303,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100933,24 +101315,44 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27843] = 2, - ACTIONS(3984), 7, - anon_sym_AMP, + [28483] = 8, + ACTIONS(4163), 1, + anon_sym_RBRACK, + ACTIONS(4168), 1, + sym__whitespace_ge_2, + ACTIONS(4171), 1, + aux_sym__whitespace_token1, + ACTIONS(4174), 1, + aux_sym__newline_token1, + ACTIONS(4160), 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(3982), 42, + STATE(965), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4165), 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(4157), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100966,27 +101368,15 @@ 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, - 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, - [27897] = 2, - ACTIONS(3807), 7, + [28549] = 3, + ACTIONS(4181), 1, + sym__emphasis_close_underscore, + ACTIONS(4179), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100994,10 +101384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3805), 42, + ACTIONS(4177), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101023,9 +101415,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101036,20 +101426,41 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [28605] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, aux_sym__newline_token1, - [27951] = 2, - ACTIONS(3107), 7, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1140), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2368), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(3105), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101066,6 +101477,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, @@ -101075,22 +101487,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [28005] = 2, - ACTIONS(4161), 7, + [28681] = 2, + ACTIONS(3976), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101098,11 +101498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4159), 42, + ACTIONS(3974), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101128,9 +101529,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101141,8 +101540,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28059] = 2, - ACTIONS(3915), 7, + aux_sym__newline_token1, + [28735] = 2, + ACTIONS(3831), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101150,10 +101550,12 @@ 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(3829), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101179,9 +101581,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101193,8 +101593,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28113] = 2, - ACTIONS(3777), 7, + [28789] = 2, + ACTIONS(3107), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101202,10 +101602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3775), 42, + ACTIONS(3105), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101231,9 +101633,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101245,25 +101645,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28167] = 8, - ACTIONS(4185), 1, - anon_sym_RBRACK, - ACTIONS(4190), 1, + [28843] = 8, + ACTIONS(4075), 1, sym__whitespace_ge_2, - ACTIONS(4193), 1, + ACTIONS(4077), 1, aux_sym__whitespace_token1, - ACTIONS(4196), 1, + ACTIONS(4079), 1, aux_sym__newline_token1, - ACTIONS(4182), 2, + ACTIONS(4183), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_LT, anon_sym_BSLASH, - STATE(969), 5, + STATE(872), 5, sym__whitespace, sym__word, sym__newline, sym__text_inline_no_link, aux_sym_link_label_repeat1, - ACTIONS(4187), 10, + ACTIONS(4185), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -101274,7 +101674,9 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(4179), 28, + ACTIONS(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101299,31 +101701,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [28233] = 3, - ACTIONS(3724), 1, - sym__last_token_punctuation, - ACTIONS(3043), 7, - anon_sym_AMP, + [28909] = 8, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, + aux_sym__newline_token1, + ACTIONS(4187), 1, + anon_sym_RBRACK, + ACTIONS(4069), 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(2582), 41, + STATE(872), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4185), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101342,33 +101759,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [28975] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1145), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2260), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [28289] = 2, - ACTIONS(4157), 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(4155), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101385,6 +101812,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, @@ -101394,38 +101822,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [28343] = 2, - ACTIONS(3851), 7, - anon_sym_AMP, + [29051] = 5, + ACTIONS(4189), 1, + sym__line_ending, + STATE(1047), 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(3849), 42, + ACTIONS(4191), 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, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101441,27 +101864,25 @@ 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, - 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_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, - [28397] = 2, - ACTIONS(4149), 7, + [29111] = 3, + ACTIONS(4197), 1, + sym__emphasis_close_star, + ACTIONS(4195), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101469,10 +101890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4147), 42, + ACTIONS(4193), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101498,9 +101921,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101511,9 +101932,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [28451] = 2, - ACTIONS(4145), 7, + [29167] = 3, + ACTIONS(3712), 1, + sym__last_token_punctuation, + ACTIONS(3024), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101521,10 +101943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4143), 42, + ACTIONS(2681), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101545,14 +101970,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -101564,20 +101985,42 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28505] = 2, - ACTIONS(4091), 7, + [29223] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(979), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1149), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2246), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(4089), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101594,6 +102037,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, @@ -101603,32 +102047,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [29301] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(983), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1151), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2244), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4117), 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, - [28559] = 2, - ACTIONS(2254), 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(2252), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101645,6 +102101,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, @@ -101654,33 +102111,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [29379] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1181), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2242), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [28613] = 2, - ACTIONS(2194), 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(2192), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101697,6 +102164,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, @@ -101706,22 +102174,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [28667] = 2, - ACTIONS(3740), 7, + [29455] = 2, + ACTIONS(4153), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101729,10 +102185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3738), 42, + ACTIONS(4151), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101758,9 +102217,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101771,9 +102228,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [28721] = 2, - ACTIONS(4091), 7, + [29509] = 2, + ACTIONS(2252), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101781,11 +102237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4089), 42, + ACTIONS(2250), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101811,9 +102268,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101824,8 +102279,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28775] = 2, - ACTIONS(3988), 7, + aux_sym__newline_token1, + [29563] = 2, + ACTIONS(2248), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101833,10 +102289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3986), 42, + ACTIONS(2246), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101862,9 +102320,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101876,19 +102332,41 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28829] = 2, - ACTIONS(3919), 7, + [29617] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1176), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2241), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 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(3917), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101905,6 +102383,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, @@ -101914,91 +102393,75 @@ static const uint16_t ts_small_parse_table[] = { 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, + [29693] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1114), 1, + sym__newline, + STATE(1251), 1, + sym_language, + STATE(2367), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 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, - [28883] = 19, - ACTIONS(483), 1, - aux_sym__whitespace_token1, - ACTIONS(4103), 1, - aux_sym__html_block_1_token1, - ACTIONS(4105), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4107), 1, - anon_sym_LT_QMARK, - ACTIONS(4109), 1, - aux_sym__html_block_4_token1, - ACTIONS(4111), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4113), 1, - aux_sym__html_block_6_token1, - ACTIONS(4115), 1, - aux_sym__html_block_6_token2, - ACTIONS(4117), 1, - sym__block_quote_start, - ACTIONS(4123), 1, - sym__thematic_break, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4129), 1, - sym__blank_line_start, - ACTIONS(4201), 1, - sym__last_token_whitespace, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(4119), 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(4199), 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, - ACTIONS(481), 8, + ACTIONS(4113), 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_LT, anon_sym_EQ, anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1918), 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, - [28971] = 2, - ACTIONS(3757), 7, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [29769] = 3, + ACTIONS(4199), 1, + sym__emphasis_close_star, + ACTIONS(4195), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -102006,10 +102469,12 @@ 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(4193), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102035,9 +102500,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102048,9 +102511,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [29025] = 2, - ACTIONS(3803), 7, + [29825] = 2, + ACTIONS(3998), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -102058,10 +102520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3801), 42, + ACTIONS(3996), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102087,9 +102551,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102101,8 +102563,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29079] = 2, - ACTIONS(3952), 7, + [29879] = 3, + ACTIONS(4201), 1, + sym__emphasis_close_underscore, + ACTIONS(4179), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -102110,10 +102574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3950), 42, + ACTIONS(4177), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102139,9 +102605,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102152,25 +102616,44 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [29935] = 8, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, aux_sym__newline_token1, - [29133] = 2, - ACTIONS(3895), 7, - anon_sym_AMP, + ACTIONS(4203), 1, + anon_sym_RBRACK, + ACTIONS(4069), 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(3893), 42, + STATE(950), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4109), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102186,32 +102669,13 @@ 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, - 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, - [29187] = 3, - ACTIONS(4209), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(4206), 7, + [30001] = 2, + ACTIONS(4004), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -102219,10 +102683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4203), 37, + ACTIONS(4002), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102243,55 +102709,43 @@ 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, - 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, - [29242] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [30055] = 2, + ACTIONS(3923), 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(4219), 1, - aux_sym__newline_token1, - ACTIONS(4221), 1, - sym__block_close, - STATE(1092), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2546), 1, - sym__blank_line, - ACTIONS(4217), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4223), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1510), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(3921), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102303,51 +102757,63 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29315] = 11, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [30109] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1131), 1, + STATE(940), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1183), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2404), 1, + STATE(2292), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1475), 2, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102374,45 +102840,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29386] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [30187] = 2, + ACTIONS(3994), 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(4219), 1, - aux_sym__newline_token1, - ACTIONS(4239), 1, - sym__block_close, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2582), 1, - sym__blank_line, - ACTIONS(4237), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1589), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(3992), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102424,51 +102873,63 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29459] = 11, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [30241] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4243), 1, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1173), 1, + STATE(887), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1117), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2350), 1, + STATE(2345), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1475), 2, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102495,41 +102956,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29530] = 12, - ACTIONS(4231), 1, + [30319] = 13, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(989), 1, - sym__whitespace, - STATE(1138), 1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1173), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2386), 1, + STATE(2355), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4229), 5, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102556,54 +103019,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29603] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, + [30395] = 14, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, - anon_sym_SQUOTE, - ACTIONS(4253), 1, - anon_sym_LPAREN, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - STATE(2064), 1, - sym_link_title, - STATE(2065), 1, - sym_link_destination, - STATE(2222), 1, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(912), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1164), 1, sym__newline, - ACTIONS(4249), 2, + STATE(1251), 1, + sym_language, + STATE(2356), 1, + sym_info_string, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, sym__word, - STATE(1185), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + aux_sym_language_repeat1, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4113), 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, @@ -102612,6 +103073,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, @@ -102621,41 +103083,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29684] = 12, - ACTIONS(4231), 1, + [30473] = 13, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4243), 1, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1014), 1, - sym__whitespace, - STATE(1139), 1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1148), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2384), 1, + STATE(2408), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4229), 5, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102682,40 +103146,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29757] = 11, - ACTIONS(4231), 1, + [30549] = 14, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1160), 1, + STATE(994), 1, + sym__whitespace, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1139), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2259), 1, + STATE(2358), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1475), 2, + STATE(1255), 2, + sym__text, + aux_sym_info_string_repeat2, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102742,54 +103210,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29828] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, - anon_sym_SQUOTE, - ACTIONS(4253), 1, - anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_RPAREN, - STATE(2092), 1, - sym_link_destination, - STATE(2096), 1, - sym_link_title, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, + [30627] = 2, + ACTIONS(4207), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1185), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 25, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4205), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -102807,40 +103252,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29909] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1174), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2349), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 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(4225), 30, + aux_sym__newline_token1, + [30681] = 2, + ACTIONS(3835), 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(3833), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102857,7 +103295,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, @@ -102867,45 +103304,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [29980] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4265), 1, - sym__block_close, - STATE(1000), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2528), 1, - sym__blank_line, - ACTIONS(4263), 2, sym__word_no_digit, sym__digits, - ACTIONS(4267), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1588), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [30735] = 2, + ACTIONS(2236), 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(2234), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102917,56 +103347,48 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30053] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4271), 1, - sym__block_close, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2511), 1, - sym__blank_line, - ACTIONS(4269), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1556), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [30789] = 2, + ACTIONS(4133), 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(4131), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102978,56 +103400,46 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30126] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4275), 1, - sym__block_close, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2530), 1, - sym__blank_line, - ACTIONS(4273), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1595), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + [30843] = 2, + ACTIONS(3990), 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(3988), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103039,52 +103451,63 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30199] = 12, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [30897] = 14, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4243), 1, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1007), 1, + STATE(913), 1, sym__whitespace, - STATE(1118), 1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1120), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2373), 1, + STATE(2290), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1254), 2, + STATE(1255), 2, sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + aux_sym_info_string_repeat2, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4229), 5, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103111,45 +103534,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [30975] = 2, + ACTIONS(3839), 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(3837), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_PIPE, anon_sym_TILDE, - [30272] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4279), 1, - sym__block_close, - STATE(990), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2580), 1, - sym__blank_line, - ACTIONS(4277), 2, sym__word_no_digit, sym__digits, - ACTIONS(4281), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1491), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [31029] = 2, + ACTIONS(3843), 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(3841), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103161,52 +103619,62 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30345] = 12, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [31083] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1010), 1, - sym__whitespace, - STATE(1119), 1, + STATE(1105), 1, + aux_sym_info_string_repeat1, + STATE(1150), 1, sym__newline, - STATE(1256), 1, + STATE(1251), 1, sym_language, - STATE(2371), 1, + STATE(2409), 1, sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + anon_sym_BSLASH, + STATE(1543), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4229), 5, + STATE(1255), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4113), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103233,12 +103701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30418] = 2, - ACTIONS(4285), 7, + [31159] = 2, + ACTIONS(3847), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -103246,10 +103712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4283), 41, + ACTIONS(3845), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103270,13 +103738,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -103288,8 +103755,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30471] = 2, - ACTIONS(4289), 7, + [31213] = 2, + ACTIONS(4129), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -103297,10 +103764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4287), 41, + ACTIONS(4127), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103321,13 +103791,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -103338,43 +103807,44 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [30524] = 12, - ACTIONS(4231), 1, + [31267] = 8, + ACTIONS(4075), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4077), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4079), 1, aux_sym__newline_token1, - STATE(1043), 1, - sym__whitespace, - STATE(1115), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2250), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, + ACTIONS(4209), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, + anon_sym_LT, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + STATE(957), 5, + sym__whitespace, sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4211), 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_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103386,7 +103856,46 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, + anon_sym_TILDE, + [31333] = 2, + ACTIONS(3748), 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(3746), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, @@ -103396,40 +103905,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30597] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1135), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2360), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 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(4225), 30, + aux_sym__newline_token1, + [31387] = 2, + ACTIONS(4083), 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(4081), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103446,7 +103949,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, @@ -103456,45 +103958,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30668] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4293), 1, - sym__block_close, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2476), 1, - sym__blank_line, - ACTIONS(4291), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1594), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + [31441] = 2, + ACTIONS(4087), 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(4085), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103506,52 +104001,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30741] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1078), 1, - sym__whitespace, - STATE(1116), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2284), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 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(4225), 30, + [31495] = 2, + ACTIONS(4091), 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(4089), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103568,7 +104053,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, @@ -103578,40 +104062,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30814] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1136), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2359), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 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(4225), 30, + [31549] = 2, + ACTIONS(4095), 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(4093), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103628,7 +104105,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, @@ -103638,41 +104114,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30885] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1041), 1, - sym__whitespace, - STATE(1117), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2285), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 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(4225), 30, + [31603] = 2, + ACTIONS(4099), 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(4097), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103689,7 +104157,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, @@ -103699,41 +104166,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [30958] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1097), 1, - sym__whitespace, - STATE(1122), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2286), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 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(4225), 30, + [31657] = 2, + ACTIONS(2166), 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(2164), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103750,7 +104208,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, @@ -103760,40 +104217,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [31031] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1130), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2295), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 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(4225), 30, + aux_sym__newline_token1, + [31711] = 2, + ACTIONS(4153), 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(4151), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103810,7 +104260,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, @@ -103820,40 +104269,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [31102] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1133), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2403), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 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(4225), 30, + aux_sym__newline_token1, + [31765] = 3, + ACTIONS(4213), 1, + sym__emphasis_close_star, + ACTIONS(4195), 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(4193), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103870,7 +104314,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, @@ -103880,14 +104323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [31173] = 3, - ACTIONS(4299), 1, - sym__emphasis_close_star, - ACTIONS(4297), 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, + [31821] = 2, + ACTIONS(3854), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -103895,10 +104343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4295), 40, + ACTIONS(3852), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103919,12 +104369,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -103936,8 +104386,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31228] = 2, - ACTIONS(4297), 7, + [31875] = 2, + ACTIONS(4195), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -103945,11 +104395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4295), 41, + ACTIONS(4193), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103970,12 +104422,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -103986,11 +104438,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [31281] = 3, - ACTIONS(4305), 1, - sym__emphasis_close_underscore, - ACTIONS(4303), 7, + [31929] = 2, + ACTIONS(4179), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -103998,10 +104447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4301), 40, + ACTIONS(4177), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104022,12 +104474,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -104038,9 +104490,66 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [31983] = 8, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, aux_sym__newline_token1, - [31336] = 2, - ACTIONS(4309), 7, + ACTIONS(4215), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(957), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4211), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, + anon_sym_TILDE, + [32049] = 2, + ACTIONS(3744), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -104048,11 +104557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4307), 41, + ACTIONS(3742), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104073,12 +104583,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -104090,8 +104600,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31389] = 2, - ACTIONS(4313), 7, + [32103] = 3, + ACTIONS(4217), 1, + sym__emphasis_close_underscore, + ACTIONS(4179), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -104099,11 +104611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4311), 41, + ACTIONS(4177), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104124,12 +104637,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -104140,9 +104653,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [31442] = 2, - ACTIONS(4317), 7, + [32159] = 2, + ACTIONS(3984), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -104150,11 +104662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4315), 41, + ACTIONS(3982), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104175,12 +104688,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -104192,8 +104705,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31495] = 2, - ACTIONS(4321), 7, + [32213] = 2, + ACTIONS(3858), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -104201,11 +104714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4319), 41, + ACTIONS(3856), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104226,12 +104740,12 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -104243,36 +104757,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31548] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1161), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2260), 1, - sym_info_string, - ACTIONS(4227), 2, + [32267] = 2, + ACTIONS(4221), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4219), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104289,55 +104788,63 @@ 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, - [31619] = 11, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [32320] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4243), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1134), 1, + ACTIONS(4233), 1, + sym__block_close, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2297), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2423), 1, + sym__blank_line, + ACTIONS(4229), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4235), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1506), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104355,45 +104862,29 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [31690] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1013), 1, - sym__whitespace, - STATE(1141), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2301), 1, - sym_info_string, - ACTIONS(4227), 2, + [32393] = 2, + ACTIONS(4239), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4237), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104410,60 +104901,67 @@ 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, - [31763] = 16, + 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, + [32446] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4247), 1, anon_sym_SQUOTE, - ACTIONS(4253), 1, + ACTIONS(4249), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4323), 1, + ACTIONS(4251), 1, anon_sym_RPAREN, - STATE(2076), 1, + ACTIONS(4253), 1, + anon_sym_LT, + STATE(2043), 1, sym_link_title, - STATE(2077), 1, + STATE(2044), 1, sym_link_destination, - STATE(2222), 1, + STATE(2206), 1, sym__newline, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - STATE(993), 3, + STATE(1100), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -104485,45 +104983,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [31844] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [32527] = 2, + ACTIONS(4259), 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(4219), 1, - aux_sym__newline_token1, - ACTIONS(4327), 1, - sym__block_close, - STATE(1095), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2462), 1, - sym__blank_line, - ACTIONS(4325), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4329), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1602), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4257), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104535,57 +105017,48 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [31917] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(995), 1, - sym__whitespace, - STATE(1162), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2262), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 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(4225), 30, + aux_sym__newline_token1, + [32580] = 4, + STATE(1032), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4261), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104597,58 +105070,71 @@ 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, - [31990] = 11, - ACTIONS(4231), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, sym__whitespace_ge_2, - ACTIONS(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [32637] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1120), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4264), 1, + anon_sym_RPAREN, + STATE(2046), 1, + sym_link_destination, + STATE(2047), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2248), 1, - sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1475), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, + STATE(1056), 3, + sym__soft_line_break, sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -104657,7 +105143,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, @@ -104667,41 +105152,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32061] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1023), 1, - sym__whitespace, - STATE(1144), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2303), 1, - sym_info_string, - ACTIONS(4227), 2, + [32718] = 3, + ACTIONS(4270), 1, + sym__emphasis_close_star, + ACTIONS(4268), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4266), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104718,49 +105187,42 @@ 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, - [32134] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4333), 1, - sym__block_close, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2512), 1, - sym__blank_line, - ACTIONS(4331), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + aux_sym__newline_token1, + [32773] = 4, + STATE(1032), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4272), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1421), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(402), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104778,65 +105240,49 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32207] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, - anon_sym_SQUOTE, - ACTIONS(4253), 1, - anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_RPAREN, - STATE(2089), 1, - sym_link_title, - STATE(2090), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1185), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 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(4245), 25, + aux_sym__newline_token1, + [32830] = 2, + ACTIONS(4221), 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(4219), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -104849,44 +105295,52 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32288] = 12, - ACTIONS(2032), 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, + [32883] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4339), 1, + ACTIONS(4276), 1, sym__block_close, - STATE(1030), 1, + STATE(1042), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2510), 1, + STATE(2602), 1, sym__blank_line, - ACTIONS(4337), 2, + ACTIONS(4274), 2, sym__word_no_digit, sym__digits, - ACTIONS(4341), 3, + ACTIONS(4278), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1423), 3, + STATE(1472), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104915,45 +105369,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32361] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [32956] = 2, + ACTIONS(4282), 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(4219), 1, - aux_sym__newline_token1, - ACTIONS(4345), 1, - sym__block_close, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2599), 1, - sym__blank_line, - ACTIONS(4343), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1617), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4280), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104965,65 +105403,100 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32434] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [33009] = 3, + ACTIONS(4284), 1, + sym__emphasis_close_underscore, + ACTIONS(4282), 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(4247), 1, + ACTIONS(4280), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(4251), 1, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_SQUOTE, - ACTIONS(4253), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4347), 1, anon_sym_RPAREN, - STATE(2105), 1, - sym_link_destination, - STATE(2106), 1, - sym_link_title, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1058), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + 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(4245), 25, + aux_sym__newline_token1, + [33064] = 2, + ACTIONS(4288), 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(4286), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -105036,17 +105509,24 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32515] = 2, - ACTIONS(4351), 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, + [33117] = 2, + ACTIONS(4292), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -105054,11 +105534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4349), 41, + ACTIONS(4290), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105082,9 +105564,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105096,35 +105576,37 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32568] = 12, - ACTIONS(2032), 1, + [33170] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4355), 1, + ACTIONS(4296), 1, sym__block_close, - STATE(999), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2461), 1, + STATE(2604), 1, sym__blank_line, - ACTIONS(4353), 2, + ACTIONS(4294), 2, sym__word_no_digit, sym__digits, - ACTIONS(4357), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1604), 3, + STATE(1479), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105153,108 +105635,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32641] = 12, - ACTIONS(4231), 1, + [33243] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(997), 1, - sym__whitespace, - STATE(1170), 1, + ACTIONS(4243), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4298), 1, + anon_sym_RPAREN, + STATE(2035), 1, + sym_link_destination, + STATE(2037), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2351), 1, - sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, + STATE(1061), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 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, + ACTIONS(4241), 25, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [32714] = 7, - ACTIONS(4045), 1, - sym__whitespace_ge_2, - ACTIONS(4047), 1, - aux_sym__whitespace_token1, - ACTIONS(4049), 1, - aux_sym__newline_token1, - ACTIONS(4039), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(923), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4359), 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(4037), 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, @@ -105267,15 +105695,15 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32777] = 2, - ACTIONS(4363), 7, + [33324] = 2, + ACTIONS(4268), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -105283,10 +105711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4361), 41, + ACTIONS(4266), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105307,13 +105738,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -105325,24 +105753,29 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32830] = 2, - ACTIONS(4309), 7, - anon_sym_AMP, + [33377] = 4, + STATE(1035), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 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(4307), 41, + ACTIONS(4300), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105362,58 +105795,63 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [32883] = 11, - ACTIONS(4231), 1, + [33434] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1127), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4302), 1, + anon_sym_RPAREN, + STATE(2038), 1, + sym_link_title, + STATE(2039), 1, + sym_link_destination, + STATE(2206), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2362), 1, - sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1475), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, + STATE(1101), 3, + sym__soft_line_break, sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -105422,7 +105860,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, @@ -105432,28 +105869,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [32954] = 2, - ACTIONS(4367), 7, - anon_sym_AMP, + [33515] = 4, + STATE(1032), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 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(4365), 41, + ACTIONS(4272), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105473,55 +105913,54 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [33007] = 11, - ACTIONS(4231), 1, + [33572] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1121), 1, + ACTIONS(4306), 1, + sym__block_close, + STATE(1055), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2246), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2585), 1, + sym__blank_line, + ACTIONS(4304), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4308), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1439), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105539,43 +105978,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33078] = 12, - ACTIONS(2032), 1, + [33645] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4371), 1, + ACTIONS(4312), 1, sym__block_close, - STATE(1330), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2418), 1, + STATE(2478), 1, sym__blank_line, - ACTIONS(4369), 2, + ACTIONS(4310), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1413), 3, + STATE(1515), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105604,39 +106044,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33151] = 12, - ACTIONS(2032), 1, + [33718] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4375), 1, + ACTIONS(4316), 1, sym__block_close, - STATE(1330), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2419), 1, + STATE(2480), 1, sym__blank_line, - ACTIONS(4373), 2, + ACTIONS(4314), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1522), 3, + STATE(1509), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105665,12 +106105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33224] = 2, - ACTIONS(4289), 7, + [33791] = 2, + ACTIONS(4320), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -105678,11 +106116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4287), 41, + ACTIONS(4318), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105706,9 +106146,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105720,8 +106158,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33277] = 2, - ACTIONS(4285), 7, + [33844] = 2, + ACTIONS(4324), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -105729,61 +106167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4283), 41, + ACTIONS(4322), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_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, - [33330] = 2, - ACTIONS(4313), 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(4311), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105804,13 +106194,10 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -105822,25 +106209,43 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33383] = 2, - ACTIONS(4379), 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, + [33897] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4377), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4328), 1, + sym__block_close, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, + sym__newline, + STATE(2481), 1, + sym__blank_line, + ACTIONS(4326), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4235), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1490), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105852,67 +106257,61 @@ 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, - 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, - [33436] = 16, + [33970] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4247), 1, anon_sym_SQUOTE, - ACTIONS(4253), 1, + ACTIONS(4249), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4330), 1, anon_sym_RPAREN, - STATE(2067), 1, + STATE(2104), 1, sym_link_title, - STATE(2069), 1, + STATE(2106), 1, sym_link_destination, - STATE(2222), 1, + STATE(2206), 1, sym__newline, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - STATE(1185), 3, + STATE(1077), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -105934,29 +106333,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33517] = 2, - ACTIONS(4309), 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, + [34051] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4307), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4334), 1, + sym__block_close, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, + sym__newline, + STATE(2587), 1, + sym__blank_line, + ACTIONS(4332), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4235), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1434), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105968,66 +106383,65 @@ 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, - 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, + [34124] = 16, + ACTIONS(41), 1, aux_sym__newline_token1, - [33570] = 12, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1022), 1, - sym__whitespace, - STATE(1163), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_RPAREN, + STATE(2060), 1, + sym_link_destination, + STATE(2062), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2263), 1, - sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, + STATE(1215), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -106036,7 +106450,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, @@ -106046,28 +106459,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33643] = 2, - ACTIONS(4317), 7, - anon_sym_AMP, + [34205] = 7, + ACTIONS(4075), 1, + sym__whitespace_ge_2, + ACTIONS(4077), 1, + aux_sym__whitespace_token1, + ACTIONS(4079), 1, + aux_sym__newline_token1, + ACTIONS(4069), 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(4315), 41, + STATE(902), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4338), 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(4067), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106083,26 +106512,13 @@ 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, - 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, - [33696] = 2, - ACTIONS(4313), 7, + [34268] = 2, + ACTIONS(4292), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106110,11 +106526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4311), 41, + ACTIONS(4290), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106135,12 +106552,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -106152,35 +106568,37 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33749] = 12, - ACTIONS(2032), 1, + [34321] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4385), 1, + ACTIONS(4342), 1, sym__block_close, - STATE(1330), 1, + STATE(1049), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2494), 1, + STATE(2438), 1, sym__blank_line, - ACTIONS(4383), 2, + ACTIONS(4340), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4344), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1455), 3, + STATE(1561), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106209,14 +106627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33822] = 3, - ACTIONS(4387), 1, - sym__emphasis_close_star, - ACTIONS(4297), 7, + [34394] = 2, + ACTIONS(4348), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106224,10 +106638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4295), 40, + ACTIONS(4346), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106251,9 +106668,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106265,46 +106680,48 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33877] = 16, + [34447] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4247), 1, anon_sym_SQUOTE, - ACTIONS(4253), 1, + ACTIONS(4249), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4389), 1, + ACTIONS(4350), 1, anon_sym_RPAREN, - STATE(2030), 1, - sym_link_title, - STATE(2062), 1, + STATE(2056), 1, sym_link_destination, - STATE(2222), 1, + STATE(2057), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - STATE(1185), 3, + STATE(1215), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -106326,54 +106743,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [33958] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, + [34528] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, - anon_sym_SQUOTE, - ACTIONS(4253), 1, - anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4391), 1, - anon_sym_RPAREN, - STATE(2027), 1, - sym_link_destination, - STATE(2078), 1, - sym_link_title, - STATE(2222), 1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4354), 1, + sym__block_close, + STATE(1050), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1185), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2441), 1, + sym__blank_line, + ACTIONS(4352), 2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4356), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1560), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + 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, @@ -106382,21 +106793,21 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [34039] = 2, - ACTIONS(4317), 7, + [34601] = 2, + ACTIONS(4239), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106404,11 +106815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4315), 41, + ACTIONS(4237), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106432,9 +106845,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106446,8 +106857,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34092] = 2, - ACTIONS(4303), 7, + [34654] = 2, + ACTIONS(4259), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106455,11 +106866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4301), 41, + ACTIONS(4257), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106483,9 +106896,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106497,10 +106908,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34145] = 3, - ACTIONS(4393), 1, - sym__emphasis_close_underscore, - ACTIONS(4303), 7, + [34707] = 2, + ACTIONS(4221), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106508,10 +106917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4301), 40, + ACTIONS(4219), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106535,9 +106947,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106549,41 +106959,31 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34200] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [34760] = 3, + ACTIONS(4364), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(4361), 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(4219), 1, - aux_sym__newline_token1, - ACTIONS(4397), 1, - sym__block_close, - STATE(1055), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2492), 1, - sym__blank_line, - ACTIONS(4395), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4399), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1457), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4358), 37, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106595,23 +106995,24 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [34273] = 2, - ACTIONS(4321), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [34815] = 2, + ACTIONS(4259), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106619,10 +107020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4319), 41, + ACTIONS(4257), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106647,9 +107050,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106661,8 +107062,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34326] = 2, - ACTIONS(4403), 7, + [34868] = 2, + ACTIONS(4239), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106670,10 +107071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4401), 41, + ACTIONS(4237), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106698,9 +107101,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + 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, + [34921] = 2, + ACTIONS(4292), 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(4290), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, anon_sym_RBRACE, + 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_PIPE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -106712,35 +107164,37 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34379] = 12, - ACTIONS(2032), 1, + [34974] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4407), 1, + ACTIONS(4368), 1, sym__block_close, - STATE(1045), 1, + STATE(1053), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2534), 1, + STATE(2479), 1, sym__blank_line, - ACTIONS(4405), 2, + ACTIONS(4366), 2, sym__word_no_digit, sym__digits, - ACTIONS(4409), 3, + ACTIONS(4370), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1469), 3, + STATE(1485), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106769,12 +107223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [34452] = 2, - ACTIONS(4321), 7, + [35047] = 3, + ACTIONS(4372), 1, + sym__emphasis_close_star, + ACTIONS(4268), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -106782,11 +107236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4319), 41, + ACTIONS(4266), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106810,9 +107265,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106824,36 +107277,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34505] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1172), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2280), 1, - sym_info_string, - ACTIONS(4227), 2, + [35102] = 2, + ACTIONS(4376), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4374), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106870,55 +107309,47 @@ 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, - [34576] = 12, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(4213), 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(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4413), 1, - sym__block_close, - STATE(1072), 1, - aux_sym__ignore_matching_tokens, - STATE(1716), 1, - sym__newline, - STATE(2605), 1, - sym__blank_line, - ACTIONS(4411), 2, sym__word_no_digit, sym__digits, - ACTIONS(4415), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1525), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [35155] = 3, + ACTIONS(4378), 1, + sym__emphasis_close_underscore, + ACTIONS(4282), 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(4280), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106930,61 +107361,67 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [34649] = 16, + 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, + [35210] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4247), 1, anon_sym_SQUOTE, - ACTIONS(4253), 1, + ACTIONS(4249), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4417), 1, + ACTIONS(4380), 1, anon_sym_RPAREN, - STATE(2103), 1, - sym_link_title, - STATE(2104), 1, + STATE(2042), 1, sym_link_destination, - STATE(2222), 1, + STATE(2045), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - STATE(1031), 3, + STATE(1215), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -107006,39 +107443,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [34730] = 12, - ACTIONS(2032), 1, + [35291] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4421), 1, + ACTIONS(4384), 1, sym__block_close, - STATE(1044), 1, + STATE(1079), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2451), 1, + STATE(2533), 1, sym__blank_line, - ACTIONS(4419), 2, + ACTIONS(4382), 2, sym__word_no_digit, sym__digits, - ACTIONS(4423), 3, + ACTIONS(4386), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1474), 3, + STATE(1464), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107067,218 +107504,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [34803] = 3, - ACTIONS(4425), 1, - sym__emphasis_close_underscore, - ACTIONS(4303), 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(4301), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_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, - [34858] = 12, - ACTIONS(2032), 1, + [35364] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4429), 1, + ACTIONS(4390), 1, sym__block_close, - STATE(1330), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2606), 1, + STATE(2570), 1, sym__blank_line, - ACTIONS(4427), 2, + ACTIONS(4388), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1530), 3, + STATE(1470), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 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, + ACTIONS(4223), 32, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [34931] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1153), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2314), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 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, - [35002] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1113), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2320), 1, - sym_info_string, - ACTIONS(4227), 2, anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 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, @@ -107296,54 +107560,55 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35073] = 16, + [35437] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4247), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4247), 1, anon_sym_SQUOTE, - ACTIONS(4253), 1, + ACTIONS(4249), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4431), 1, + ACTIONS(4392), 1, anon_sym_RPAREN, - STATE(2094), 1, - sym_link_title, - STATE(2095), 1, + STATE(2050), 1, sym_link_destination, - STATE(2222), 1, + STATE(2051), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - STATE(1057), 3, + STATE(1215), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -107365,46 +107630,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35154] = 12, - ACTIONS(4231), 1, + [35518] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1073), 1, - sym__whitespace, - STATE(1166), 1, + ACTIONS(4396), 1, + sym__block_close, + STATE(1076), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2322), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2568), 1, + sym__blank_line, + ACTIONS(4394), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4398), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1467), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107422,50 +107686,50 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35227] = 12, - ACTIONS(4231), 1, + [35591] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4243), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1074), 1, - sym__whitespace, - STATE(1171), 1, + ACTIONS(4402), 1, + sym__block_close, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2324), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2535), 1, + sym__blank_line, + ACTIONS(4400), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4235), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1462), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107483,44 +107747,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35300] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1114), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2282), 1, - sym_info_string, - ACTIONS(4227), 2, + [35664] = 3, + ACTIONS(4404), 1, + sym__emphasis_close_star, + ACTIONS(4268), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4266), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107537,50 +107787,42 @@ 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, - [35371] = 11, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1181), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2333), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 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(4225), 30, + aux_sym__newline_token1, + [35719] = 3, + ACTIONS(4406), 1, + sym__emphasis_close_underscore, + ACTIONS(4282), 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(4280), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107597,58 +107839,71 @@ 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, - [35442] = 11, - ACTIONS(4231), 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(4233), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [35774] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1180), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4408), 1, + anon_sym_RPAREN, + STATE(2108), 1, + sym_link_destination, + STATE(2112), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2334), 1, - sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1475), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, + STATE(1074), 3, + sym__soft_line_break, sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -107657,7 +107912,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, @@ -107667,46 +107921,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35513] = 12, - ACTIONS(4231), 1, + [35855] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1079), 1, - sym__whitespace, - STATE(1179), 1, + ACTIONS(4412), 1, + sym__block_close, + STATE(1086), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2335), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2515), 1, + sym__blank_line, + ACTIONS(4410), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4414), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1598), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107724,18 +107977,15 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35586] = 3, - ACTIONS(4433), 1, - sym__emphasis_close_star, - ACTIONS(4297), 7, + [35928] = 2, + ACTIONS(4418), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -107743,10 +107993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4295), 40, + ACTIONS(4416), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107767,12 +108019,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -107784,8 +108035,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [35641] = 2, - ACTIONS(4285), 7, + [35981] = 2, + ACTIONS(4320), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -107793,11 +108044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4283), 41, + ACTIONS(4318), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107818,12 +108070,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -107835,42 +108086,43 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [35694] = 12, - ACTIONS(4231), 1, + [36034] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1067), 1, - sym__whitespace, - STATE(1159), 1, + ACTIONS(4422), 1, + sym__block_close, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2283), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2517), 1, + sym__blank_line, + ACTIONS(4420), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4235), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1600), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107888,16 +108140,15 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35767] = 2, - ACTIONS(4289), 7, + [36107] = 2, + ACTIONS(4324), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -107905,11 +108156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4287), 41, + ACTIONS(4322), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107930,12 +108182,11 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, @@ -107947,100 +108198,37 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [35820] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, - anon_sym_SQUOTE, - ACTIONS(4253), 1, - anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4435), 1, - anon_sym_RPAREN, - STATE(2079), 1, - sym_link_title, - STATE(2080), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1050), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 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, - [35901] = 12, - ACTIONS(2032), 1, + [36160] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4439), 1, + ACTIONS(4426), 1, sym__block_close, - STATE(1008), 1, + STATE(1028), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2474), 1, + STATE(2456), 1, sym__blank_line, - ACTIONS(4437), 2, + ACTIONS(4424), 2, sym__word_no_digit, sym__digits, - ACTIONS(4441), 3, + ACTIONS(4428), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1631), 3, + STATE(1517), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108069,41 +108257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [35974] = 12, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(1080), 1, - sym__whitespace, - STATE(1178), 1, - sym__newline, - STATE(1256), 1, - sym_language, - STATE(2340), 1, - sym_info_string, - ACTIONS(4227), 2, + [36233] = 2, + ACTIONS(4324), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4225), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4322), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108120,49 +108291,56 @@ 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, - [36047] = 12, - ACTIONS(2032), 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, + [36286] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4445), 1, + ACTIONS(4432), 1, sym__block_close, - STATE(1033), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2597), 1, + STATE(2553), 1, sym__blank_line, - ACTIONS(4443), 2, + ACTIONS(4430), 2, sym__word_no_digit, sym__digits, - ACTIONS(4447), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1613), 3, + STATE(1428), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108191,25 +108369,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36120] = 4, - STATE(1099), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_LT, - anon_sym_BSLASH, + [36359] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4449), 3, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4436), 1, + sym__block_close, + STATE(1097), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, + sym__newline, + STATE(2539), 1, + sym__blank_line, + ACTIONS(4434), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4438), 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, + STATE(1516), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108227,56 +108419,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_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_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, - [36177] = 12, - ACTIONS(2032), 1, + [36432] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4453), 1, + ACTIONS(4442), 1, sym__block_close, - STATE(1096), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2563), 1, + STATE(2611), 1, sym__blank_line, - ACTIONS(4451), 2, + ACTIONS(4440), 2, sym__word_no_digit, sym__digits, - ACTIONS(4455), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1444), 3, + STATE(1529), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108305,39 +108491,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36250] = 12, - ACTIONS(2032), 1, + [36505] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4459), 1, + ACTIONS(4446), 1, sym__block_close, - STATE(1330), 1, + STATE(1092), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2548), 1, + STATE(2610), 1, sym__blank_line, - ACTIONS(4457), 2, + ACTIONS(4444), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4448), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1500), 3, + STATE(1524), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108366,31 +108552,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36323] = 4, - STATE(1094), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + [36578] = 2, + ACTIONS(4320), 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(4461), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 41, + ACTIONS(4318), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108406,44 +108590,41 @@ 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, - 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_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, - [36380] = 4, - STATE(1094), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 3, + [36631] = 2, + ACTIONS(4452), 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(4463), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 41, + ACTIONS(4450), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108463,48 +108644,49 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [36437] = 12, - ACTIONS(2032), 1, + [36684] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4468), 1, + ACTIONS(4456), 1, sym__block_close, - STATE(1330), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2514), 1, + STATE(2499), 1, sym__blank_line, - ACTIONS(4466), 2, + ACTIONS(4454), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1585), 3, + STATE(1533), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108533,39 +108715,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36510] = 12, - ACTIONS(2032), 1, + [36757] = 12, + ACTIONS(2142), 1, sym__blank_line_start, - ACTIONS(4213), 1, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4472), 1, + ACTIONS(4460), 1, sym__block_close, - STATE(1330), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - STATE(2565), 1, + STATE(2424), 1, sym__blank_line, - ACTIONS(4470), 2, + ACTIONS(4458), 2, sym__word_no_digit, sym__digits, - ACTIONS(4241), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1449), 3, + STATE(1504), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108594,45 +108776,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36583] = 11, - ACTIONS(4231), 1, + [36830] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1132), 1, + ACTIONS(4464), 1, + sym__block_close, + STATE(1096), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2367), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1254), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2497), 1, + sym__blank_line, + ACTIONS(4462), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4466), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1523), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108650,50 +108832,50 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36654] = 12, - ACTIONS(4231), 1, + [36903] = 12, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4243), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1028), 1, - sym__whitespace, - STATE(1177), 1, + ACTIONS(4470), 1, + sym__block_close, + STATE(1090), 1, + aux_sym__ignore_matching_tokens, + STATE(1727), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2251), 1, - sym_info_string, - ACTIONS(4227), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2551), 1, + sym__blank_line, + ACTIONS(4468), 2, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4472), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1430), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108711,38 +108893,59 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36727] = 4, - STATE(1094), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 3, + [36976] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4243), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, anon_sym_LT, + ACTIONS(4474), 1, + anon_sym_RPAREN, + STATE(2088), 1, + sym_link_destination, + STATE(2089), 1, + sym_link_title, + STATE(2206), 1, + sym__newline, + ACTIONS(4245), 2, + anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4461), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1215), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, - 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, @@ -108755,62 +108958,59 @@ 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, - 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, + [37057] = 16, + ACTIONS(41), 1, aux_sym__newline_token1, - [36784] = 12, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, ACTIONS(4243), 1, - aux_sym__newline_token1, - STATE(991), 1, - sym__whitespace, - STATE(1169), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + anon_sym_SQUOTE, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4476), 1, + anon_sym_RPAREN, + STATE(2075), 1, + sym_link_destination, + STATE(2103), 1, + sym_link_title, + STATE(2206), 1, sym__newline, - STATE(1256), 1, - sym_language, - STATE(2353), 1, - sym_info_string, - ACTIONS(4227), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1254), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1475), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(4229), 5, + STATE(1215), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4225), 30, + ACTIONS(4241), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -108819,7 +109019,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, @@ -108829,54 +109028,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36857] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4247), 1, + [37138] = 14, + ACTIONS(4480), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, - anon_sym_SQUOTE, - ACTIONS(4253), 1, + ACTIONS(4484), 1, anon_sym_LPAREN, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_RPAREN, - STATE(2026), 1, - sym_link_destination, - STATE(2093), 1, - sym_link_title, - STATE(2222), 1, + ACTIONS(4491), 1, + sym__whitespace_ge_2, + ACTIONS(4494), 1, + aux_sym__whitespace_token1, + ACTIONS(4497), 1, + aux_sym__newline_token1, + ACTIONS(4500), 1, + sym__last_token_punctuation, + STATE(1556), 1, sym__newline, - ACTIONS(4249), 2, + STATE(1734), 1, + sym__word, + ACTIONS(4482), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(996), 3, - sym__soft_line_break, + STATE(1195), 2, sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4259), 5, + aux_sym_link_title_repeat1, + STATE(1391), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + ACTIONS(4489), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 25, + ACTIONS(4478), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -108885,6 +109080,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, @@ -108894,25 +109090,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [36938] = 5, - ACTIONS(529), 1, + [37214] = 5, + ACTIONS(507), 1, sym__soft_line_break_marker, - ACTIONS(4480), 1, + ACTIONS(4506), 1, sym__split_token, - STATE(2218), 1, + STATE(2216), 1, aux_sym__soft_line_break_repeat1, - ACTIONS(4478), 3, + ACTIONS(4504), 3, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4476), 41, + ACTIONS(4502), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108938,9 +109134,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -108951,46 +109145,48 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [36996] = 14, - ACTIONS(4484), 1, - anon_sym_DQUOTE, - ACTIONS(4488), 1, - anon_sym_LPAREN, - ACTIONS(4490), 1, - anon_sym_RPAREN, - ACTIONS(4495), 1, + [37272] = 14, + ACTIONS(4480), 1, + anon_sym_SQUOTE, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4498), 1, + ACTIONS(4494), 1, aux_sym__whitespace_token1, - ACTIONS(4501), 1, + ACTIONS(4497), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4500), 1, sym__last_token_punctuation, - STATE(1547), 1, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_RPAREN, + STATE(1554), 1, sym__newline, - STATE(1726), 1, + STATE(1736), 1, sym__word, - ACTIONS(4486), 2, + ACTIONS(4510), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1200), 2, + STATE(1247), 2, sym__whitespace, - aux_sym_link_title_repeat1, - STATE(1327), 2, + aux_sym_link_title_repeat2, + STATE(1391), 2, sym__link_destination_parenthesis, aux_sym_link_destination_repeat2, - ACTIONS(4493), 5, + ACTIONS(4517), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4482), 27, + ACTIONS(4508), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -109009,50 +109205,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [37072] = 14, - ACTIONS(4484), 1, - anon_sym_SQUOTE, - ACTIONS(4495), 1, + [37348] = 11, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4498), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4501), 1, + ACTIONS(4519), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, - sym__last_token_punctuation, - ACTIONS(4510), 1, - anon_sym_LPAREN, - ACTIONS(4512), 1, - anon_sym_RPAREN, - STATE(1539), 1, - sym__newline, - STATE(1718), 1, - sym__word, - ACTIONS(4508), 2, + STATE(1253), 1, + sym_language, + STATE(1647), 1, + aux_sym_info_string_repeat1, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4115), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1187), 2, + STATE(1543), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1198), 3, + sym__text, sym__whitespace, - aux_sym_link_title_repeat2, - STATE(1327), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - ACTIONS(4515), 5, + aux_sym_info_string_repeat2, + ACTIONS(4117), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4506), 27, + ACTIONS(4113), 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, @@ -109071,108 +109264,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [37148] = 5, - ACTIONS(4517), 1, - sym__line_ending, - STATE(1157), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [37418] = 17, + ACTIONS(736), 1, aux_sym__whitespace_token1, - ACTIONS(4519), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 38, + ACTIONS(4037), 1, + aux_sym__html_block_1_token1, + ACTIONS(4039), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4041), 1, + anon_sym_LT_QMARK, + ACTIONS(4043), 1, + aux_sym__html_block_4_token1, + ACTIONS(4045), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4047), 1, + aux_sym__html_block_6_token1, + ACTIONS(4049), 1, + aux_sym__html_block_6_token2, + ACTIONS(4051), 1, + sym__block_quote_start, + ACTIONS(4057), 1, + sym__thematic_break, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4063), 1, sym__blank_line_start, - anon_sym_BANG, + ACTIONS(4053), 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(4521), 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, + ACTIONS(734), 8, 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, - [37205] = 19, - ACTIONS(417), 1, + STATE(1925), 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, + [37499] = 19, + ACTIONS(453), 1, aux_sym__whitespace_token1, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4521), 1, - aux_sym__html_block_1_token1, ACTIONS(4523), 1, - anon_sym_LT_BANG_DASH_DASH, + aux_sym__html_block_1_token1, ACTIONS(4525), 1, - anon_sym_LT_QMARK, + anon_sym_LT_BANG_DASH_DASH, ACTIONS(4527), 1, - aux_sym__html_block_4_token1, + anon_sym_LT_QMARK, ACTIONS(4529), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + aux_sym__html_block_4_token1, ACTIONS(4531), 1, - aux_sym__html_block_6_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, ACTIONS(4533), 1, - aux_sym__html_block_6_token2, + aux_sym__html_block_6_token1, ACTIONS(4535), 1, + aux_sym__html_block_6_token2, + ACTIONS(4537), 1, sym__block_quote_start, - ACTIONS(4539), 1, + ACTIONS(4543), 1, sym__thematic_break, - ACTIONS(4541), 1, + ACTIONS(4545), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4547), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4549), 1, sym__blank_line_start, - ACTIONS(4543), 1, + ACTIONS(4551), 1, sym__last_token_whitespace, ACTIONS(447), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(415), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(451), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4537), 6, + ACTIONS(4539), 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(4121), 7, + ACTIONS(4541), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -109180,7 +109383,7 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - STATE(1921), 12, + STATE(2135), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -109193,52 +109396,41 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [37290] = 19, - ACTIONS(483), 1, + [37584] = 17, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4521), 1, + ACTIONS(4037), 1, aux_sym__html_block_1_token1, - ACTIONS(4523), 1, + ACTIONS(4039), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4525), 1, + ACTIONS(4041), 1, anon_sym_LT_QMARK, - ACTIONS(4527), 1, + ACTIONS(4043), 1, aux_sym__html_block_4_token1, - ACTIONS(4529), 1, + ACTIONS(4045), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4531), 1, + ACTIONS(4047), 1, aux_sym__html_block_6_token1, - ACTIONS(4533), 1, + ACTIONS(4049), 1, aux_sym__html_block_6_token2, - ACTIONS(4535), 1, + ACTIONS(4051), 1, sym__block_quote_start, - ACTIONS(4539), 1, + ACTIONS(4057), 1, sym__thematic_break, - ACTIONS(4541), 1, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4063), 1, sym__blank_line_start, - ACTIONS(4545), 1, - sym__last_token_whitespace, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(481), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4537), 6, + ACTIONS(4053), 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(4199), 7, + ACTIONS(4145), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -109246,7 +109438,16 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - STATE(1918), 12, + ACTIONS(415), 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1904), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -109259,34 +109460,94 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [37375] = 19, + [37665] = 13, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(4559), 1, + anon_sym_RPAREN, + ACTIONS(4565), 1, + aux_sym__newline_token1, + STATE(1698), 1, + sym__newline, + STATE(1741), 1, + sym__word, + ACTIONS(4555), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4563), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(1370), 2, + sym__whitespace, + aux_sym_link_title_repeat3, + STATE(2036), 2, + sym__link_destination_parenthesis, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4561), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(4553), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [37738] = 19, ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(4547), 1, + ACTIONS(4523), 1, aux_sym__html_block_1_token1, - ACTIONS(4549), 1, + ACTIONS(4525), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4551), 1, + ACTIONS(4527), 1, anon_sym_LT_QMARK, - ACTIONS(4553), 1, + ACTIONS(4529), 1, aux_sym__html_block_4_token1, - ACTIONS(4555), 1, + ACTIONS(4531), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4557), 1, + ACTIONS(4533), 1, aux_sym__html_block_6_token1, - ACTIONS(4559), 1, + ACTIONS(4535), 1, aux_sym__html_block_6_token2, - ACTIONS(4561), 1, + ACTIONS(4537), 1, sym__block_quote_start, - ACTIONS(4567), 1, + ACTIONS(4543), 1, sym__thematic_break, - ACTIONS(4569), 1, + ACTIONS(4545), 1, sym__fenced_code_block_start_backtick, - ACTIONS(4571), 1, + ACTIONS(4547), 1, sym__fenced_code_block_start_tilde, - ACTIONS(4573), 1, + ACTIONS(4549), 1, sym__blank_line_start, - ACTIONS(4575), 1, + ACTIONS(4569), 1, sym__last_token_whitespace, ACTIONS(447), 2, sym__split_token, @@ -109297,14 +109558,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4563), 6, + ACTIONS(4539), 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(4565), 7, + ACTIONS(4567), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -109312,7 +109573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - STATE(2138), 12, + STATE(2146), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -109325,41 +109586,52 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [37460] = 17, - ACTIONS(483), 1, + [37823] = 19, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(4103), 1, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4571), 1, aux_sym__html_block_1_token1, - ACTIONS(4105), 1, + ACTIONS(4573), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4107), 1, + ACTIONS(4575), 1, anon_sym_LT_QMARK, - ACTIONS(4109), 1, + ACTIONS(4577), 1, aux_sym__html_block_4_token1, - ACTIONS(4111), 1, + ACTIONS(4579), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4113), 1, + ACTIONS(4581), 1, aux_sym__html_block_6_token1, - ACTIONS(4115), 1, + ACTIONS(4583), 1, aux_sym__html_block_6_token2, - ACTIONS(4117), 1, + ACTIONS(4585), 1, sym__block_quote_start, - ACTIONS(4123), 1, + ACTIONS(4589), 1, sym__thematic_break, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4129), 1, + ACTIONS(4591), 1, sym__blank_line_start, - ACTIONS(4119), 6, + ACTIONS(4593), 1, + sym__last_token_whitespace, + 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, + aux_sym__newline_token1, + ACTIONS(4587), 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(4199), 7, + ACTIONS(4145), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -109367,16 +109639,7 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - ACTIONS(481), 8, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1918), 12, + STATE(1904), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -109389,52 +109652,52 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [37541] = 19, - ACTIONS(483), 1, + [37908] = 19, + ACTIONS(453), 1, aux_sym__whitespace_token1, - ACTIONS(4547), 1, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4571), 1, aux_sym__html_block_1_token1, - ACTIONS(4549), 1, + ACTIONS(4573), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4551), 1, + ACTIONS(4575), 1, anon_sym_LT_QMARK, - ACTIONS(4553), 1, + ACTIONS(4577), 1, aux_sym__html_block_4_token1, - ACTIONS(4555), 1, + ACTIONS(4579), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4557), 1, + ACTIONS(4581), 1, aux_sym__html_block_6_token1, - ACTIONS(4559), 1, + ACTIONS(4583), 1, aux_sym__html_block_6_token2, - ACTIONS(4561), 1, + ACTIONS(4585), 1, sym__block_quote_start, - ACTIONS(4567), 1, + ACTIONS(4589), 1, sym__thematic_break, - ACTIONS(4569), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4571), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4573), 1, + ACTIONS(4591), 1, sym__blank_line_start, - ACTIONS(4579), 1, + ACTIONS(4595), 1, sym__last_token_whitespace, ACTIONS(447), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(481), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(451), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4563), 6, + ACTIONS(4587), 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(4577), 7, + ACTIONS(4055), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -109442,7 +109705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - STATE(2137), 12, + STATE(1918), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -109455,44 +109718,31 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [37626] = 13, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(4587), 1, - anon_sym_RPAREN, - ACTIONS(4593), 1, - aux_sym__newline_token1, - STATE(1641), 1, - sym__newline, - STATE(1714), 1, - sym__word, - ACTIONS(4583), 2, + [37993] = 5, + ACTIONS(4597), 1, + sym__line_ending, + STATE(1155), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4591), 2, - sym_entity_reference, - sym_numeric_character_reference, - STATE(1366), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(2098), 2, - sym__link_destination_parenthesis, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4589), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4581), 28, + aux_sym__whitespace_token1, + ACTIONS(4599), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 38, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -109511,97 +109761,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [37699] = 17, - ACTIONS(691), 1, - aux_sym__whitespace_token1, - ACTIONS(4103), 1, - aux_sym__html_block_1_token1, - ACTIONS(4105), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4107), 1, - anon_sym_LT_QMARK, - ACTIONS(4109), 1, - aux_sym__html_block_4_token1, - ACTIONS(4111), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4113), 1, - aux_sym__html_block_6_token1, - ACTIONS(4115), 1, - aux_sym__html_block_6_token2, - ACTIONS(4117), 1, - sym__block_quote_start, - ACTIONS(4123), 1, - sym__thematic_break, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4129), 1, - sym__blank_line_start, - ACTIONS(4119), 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(4595), 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, - ACTIONS(689), 8, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_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, - STATE(1924), 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, - [37780] = 9, - ACTIONS(4243), 1, + [38050] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, - aux_sym__whitespace_token1, ACTIONS(4605), 1, + aux_sym__whitespace_token1, + ACTIONS(4609), 1, sym__block_close, - ACTIONS(4607), 1, - sym__fenced_code_block_end_backtick, - STATE(2380), 1, + ACTIONS(4611), 1, + sym__fenced_code_block_end_tilde, + STATE(2308), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109630,33 +109823,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [37844] = 9, - ACTIONS(4243), 1, + [38114] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4609), 1, + ACTIONS(4621), 1, sym__block_close, - ACTIONS(4611), 1, + ACTIONS(4623), 1, sym__fenced_code_block_end_backtick, - STATE(2241), 1, + STATE(2234), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109685,33 +109878,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [38178] = 3, + ACTIONS(4625), 1, + sym__last_token_whitespace, + ACTIONS(2990), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2988), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, - [37908] = 9, - ACTIONS(4235), 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, + [38230] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4621), 1, + ACTIONS(4627), 1, sym__block_close, - ACTIONS(4623), 1, - sym__fenced_code_block_end_tilde, - STATE(2311), 1, + ACTIONS(4629), 1, + sym__fenced_code_block_end_backtick, + STATE(2349), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109740,33 +109982,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [37972] = 9, - ACTIONS(4243), 1, + [38294] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4625), 1, + ACTIONS(4631), 1, sym__block_close, - ACTIONS(4627), 1, + ACTIONS(4633), 1, sym__fenced_code_block_end_backtick, - STATE(2232), 1, + STATE(2243), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109795,33 +110037,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38036] = 9, - ACTIONS(4243), 1, + [38358] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4629), 1, + ACTIONS(4635), 1, sym__block_close, - ACTIONS(4631), 1, + ACTIONS(4637), 1, sym__fenced_code_block_end_backtick, - STATE(2365), 1, + STATE(2330), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109850,33 +110092,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38100] = 9, - ACTIONS(4243), 1, + [38422] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4633), 1, + ACTIONS(4639), 1, sym__block_close, - ACTIONS(4635), 1, + ACTIONS(4641), 1, sym__fenced_code_block_end_backtick, - STATE(2361), 1, + STATE(2365), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109905,33 +110147,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38164] = 9, - ACTIONS(4235), 1, + [38486] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4633), 1, + ACTIONS(4643), 1, sym__block_close, - ACTIONS(4635), 1, - sym__fenced_code_block_end_tilde, - STATE(2357), 1, + ACTIONS(4645), 1, + sym__fenced_code_block_end_backtick, + STATE(2276), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109960,33 +110202,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38228] = 9, - ACTIONS(4243), 1, + [38550] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4637), 1, + ACTIONS(4635), 1, sym__block_close, - ACTIONS(4639), 1, - sym__fenced_code_block_end_backtick, - STATE(2319), 1, + ACTIONS(4637), 1, + sym__fenced_code_block_end_tilde, + STATE(2332), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110015,33 +110257,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38292] = 9, - ACTIONS(4235), 1, + [38614] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4637), 1, + ACTIONS(4647), 1, sym__block_close, - ACTIONS(4639), 1, + ACTIONS(4649), 1, sym__fenced_code_block_end_tilde, - STATE(2321), 1, + STATE(2317), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110070,33 +110312,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38356] = 9, - ACTIONS(4235), 1, + [38678] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4629), 1, + ACTIONS(4651), 1, sym__block_close, - ACTIONS(4631), 1, + ACTIONS(4653), 1, sym__fenced_code_block_end_tilde, - STATE(2370), 1, + STATE(2322), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110125,33 +110367,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38420] = 9, - ACTIONS(4235), 1, + [38742] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4641), 1, + ACTIONS(4651), 1, sym__block_close, - ACTIONS(4643), 1, - sym__fenced_code_block_end_tilde, - STATE(2366), 1, + ACTIONS(4653), 1, + sym__fenced_code_block_end_backtick, + STATE(2252), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110180,33 +110422,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38484] = 9, - ACTIONS(4235), 1, + [38806] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4645), 1, + ACTIONS(4655), 1, sym__block_close, - ACTIONS(4647), 1, + ACTIONS(4657), 1, sym__fenced_code_block_end_tilde, - STATE(2305), 1, + STATE(2369), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110235,33 +110477,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38548] = 9, - ACTIONS(4243), 1, + [38870] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4645), 1, + ACTIONS(4659), 1, sym__block_close, - ACTIONS(4647), 1, - sym__fenced_code_block_end_backtick, - STATE(2372), 1, + ACTIONS(4661), 1, + sym__fenced_code_block_end_tilde, + STATE(2262), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110290,48 +110532,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38612] = 13, - ACTIONS(41), 1, + [38934] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1526), 1, - sym__soft_line_break, - STATE(1639), 1, - sym__whitespace, - STATE(2175), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4659), 1, + sym__block_close, + ACTIONS(4661), 1, + sym__fenced_code_block_end_backtick, + STATE(2267), 1, + sym_code_fence_content, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + STATE(1199), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -110340,42 +110576,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38684] = 9, - ACTIONS(4243), 1, + [38998] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4649), 1, + ACTIONS(4663), 1, sym__block_close, - ACTIONS(4651), 1, + ACTIONS(4665), 1, sym__fenced_code_block_end_backtick, - STATE(2390), 1, + STATE(2351), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110404,33 +110642,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38748] = 9, - ACTIONS(4243), 1, + [39062] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4653), 1, + ACTIONS(4667), 1, sym__block_close, - ACTIONS(4655), 1, - sym__fenced_code_block_end_backtick, - STATE(2325), 1, + ACTIONS(4669), 1, + sym__fenced_code_block_end_tilde, + STATE(2286), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110459,39 +110697,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38812] = 9, - ACTIONS(4243), 1, - aux_sym__newline_token1, - ACTIONS(4599), 1, - sym__whitespace_ge_2, - ACTIONS(4601), 1, + [39126] = 5, + ACTIONS(4671), 1, + sym__line_ending, + STATE(1235), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4641), 1, - sym__block_close, - ACTIONS(4643), 1, - sym__fenced_code_block_end_backtick, - STATE(2379), 1, - sym_code_fence_content, - ACTIONS(4603), 2, - sym__word_no_digit, - sym__digits, - STATE(1248), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4673), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110509,38 +110737,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38876] = 9, - ACTIONS(4235), 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, + [39182] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4657), 1, + ACTIONS(4655), 1, sym__block_close, - ACTIONS(4659), 1, - sym__fenced_code_block_end_tilde, - STATE(2401), 1, + ACTIONS(4657), 1, + sym__fenced_code_block_end_backtick, + STATE(2371), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110569,33 +110803,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [38940] = 9, - ACTIONS(4235), 1, + [39246] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4661), 1, + ACTIONS(4675), 1, sym__block_close, - ACTIONS(4663), 1, - sym__fenced_code_block_end_tilde, - STATE(2409), 1, + ACTIONS(4677), 1, + sym__fenced_code_block_end_backtick, + STATE(2297), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110624,33 +110858,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39004] = 9, - ACTIONS(4235), 1, + [39310] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4649), 1, + ACTIONS(4675), 1, sym__block_close, - ACTIONS(4651), 1, + ACTIONS(4677), 1, sym__fenced_code_block_end_tilde, - STATE(2388), 1, + STATE(2296), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110679,33 +110913,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39068] = 9, - ACTIONS(4243), 1, + [39374] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4661), 1, + ACTIONS(4679), 1, sym__block_close, - ACTIONS(4663), 1, - sym__fenced_code_block_end_backtick, - STATE(2225), 1, + ACTIONS(4681), 1, + sym__fenced_code_block_end_tilde, + STATE(2254), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110734,33 +110968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39132] = 9, - ACTIONS(4243), 1, + [39438] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4657), 1, + ACTIONS(4679), 1, sym__block_close, - ACTIONS(4659), 1, + ACTIONS(4681), 1, sym__fenced_code_block_end_backtick, - STATE(2407), 1, + STATE(2256), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110789,33 +111023,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39196] = 9, - ACTIONS(4243), 1, + [39502] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4665), 1, + ACTIONS(4683), 1, sym__block_close, - ACTIONS(4667), 1, + ACTIONS(4685), 1, sym__fenced_code_block_end_backtick, - STATE(2302), 1, + STATE(2282), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110844,33 +111078,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39260] = 9, - ACTIONS(4235), 1, + [39566] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4665), 1, + ACTIONS(4683), 1, sym__block_close, - ACTIONS(4667), 1, + ACTIONS(4685), 1, sym__fenced_code_block_end_tilde, - STATE(2300), 1, + STATE(2284), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110899,33 +111133,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39324] = 9, - ACTIONS(4235), 1, + [39630] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4653), 1, + ACTIONS(4687), 1, sym__block_close, - ACTIONS(4655), 1, - sym__fenced_code_block_end_tilde, - STATE(2327), 1, + ACTIONS(4689), 1, + sym__fenced_code_block_end_backtick, + STATE(2407), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110954,33 +111188,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39388] = 9, - ACTIONS(4235), 1, + [39694] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, + ACTIONS(4609), 1, + sym__block_close, + ACTIONS(4611), 1, + sym__fenced_code_block_end_backtick, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4669), 1, - sym__block_close, - ACTIONS(4671), 1, - sym__fenced_code_block_end_tilde, - STATE(2376), 1, + STATE(2283), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111009,33 +111243,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39452] = 9, - ACTIONS(4243), 1, + [39758] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4669), 1, + ACTIONS(4691), 1, sym__block_close, - ACTIONS(4671), 1, + ACTIONS(4693), 1, sym__fenced_code_block_end_backtick, - STATE(2375), 1, + STATE(2412), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111064,48 +111298,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39516] = 13, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4257), 1, + [39822] = 3, + ACTIONS(4695), 1, + sym__last_token_punctuation, + ACTIONS(3077), 3, anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1566), 1, - sym__whitespace, - STATE(1567), 1, - sym__soft_line_break, - STATE(2173), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + aux_sym__whitespace_token1, + ACTIONS(2549), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -111118,38 +111334,46 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39588] = 9, - ACTIONS(4235), 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, - ACTIONS(4615), 1, + [39874] = 9, + ACTIONS(4123), 1, + aux_sym__newline_token1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4673), 1, + ACTIONS(4691), 1, sym__block_close, - ACTIONS(4675), 1, + ACTIONS(4693), 1, sym__fenced_code_block_end_tilde, - STATE(2406), 1, + STATE(2413), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111178,33 +111402,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39652] = 9, - ACTIONS(4235), 1, + [39938] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4677), 1, + ACTIONS(4697), 1, sym__block_close, - ACTIONS(4679), 1, + ACTIONS(4699), 1, sym__fenced_code_block_end_tilde, - STATE(2279), 1, + STATE(2404), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111233,33 +111457,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39716] = 9, - ACTIONS(4243), 1, + [40002] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4677), 1, + ACTIONS(4643), 1, sym__block_close, - ACTIONS(4679), 1, - sym__fenced_code_block_end_backtick, - STATE(2277), 1, + ACTIONS(4645), 1, + sym__fenced_code_block_end_tilde, + STATE(2278), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111288,33 +111512,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39780] = 9, - ACTIONS(4243), 1, + [40066] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4673), 1, + ACTIONS(4701), 1, sym__block_close, - ACTIONS(4675), 1, - sym__fenced_code_block_end_backtick, - STATE(2405), 1, + ACTIONS(4703), 1, + sym__fenced_code_block_end_tilde, + STATE(2397), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111343,29 +111567,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39844] = 5, - ACTIONS(4681), 1, - sym__line_ending, - STATE(1241), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [40130] = 9, + ACTIONS(4125), 1, + aux_sym__newline_token1, + ACTIONS(4615), 1, + sym__whitespace_ge_2, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4683), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, + ACTIONS(4701), 1, + sym__block_close, + ACTIONS(4703), 1, + sym__fenced_code_block_end_backtick, + STATE(2402), 1, + sym_code_fence_content, + ACTIONS(4619), 2, + sym__word_no_digit, + sym__digits, + STATE(1199), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111383,59 +111617,47 @@ 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, - 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, - [39900] = 13, - ACTIONS(41), 1, + [40194] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1580), 1, - sym__whitespace, - STATE(1622), 1, - sym__soft_line_break, - STATE(2174), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4705), 1, + sym__block_close, + ACTIONS(4707), 1, + sym__fenced_code_block_end_backtick, + STATE(2390), 1, + sym_code_fence_content, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + STATE(1199), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -111444,42 +111666,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [39972] = 9, - ACTIONS(4243), 1, + [40258] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4685), 1, + ACTIONS(4709), 1, sym__block_close, - ACTIONS(4687), 1, + ACTIONS(4711), 1, sym__fenced_code_block_end_backtick, - STATE(2298), 1, + STATE(2314), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111508,33 +111732,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40036] = 9, - ACTIONS(4235), 1, + [40322] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4685), 1, + ACTIONS(4705), 1, sym__block_close, - ACTIONS(4687), 1, + ACTIONS(4707), 1, sym__fenced_code_block_end_tilde, - STATE(2292), 1, + STATE(2395), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111563,33 +111787,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40100] = 9, - ACTIONS(4235), 1, + [40386] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4689), 1, + ACTIONS(4709), 1, sym__block_close, - ACTIONS(4691), 1, + ACTIONS(4711), 1, sym__fenced_code_block_end_tilde, - STATE(2387), 1, + STATE(2316), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111618,48 +111842,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40164] = 13, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1438), 1, - sym__whitespace, - STATE(1450), 1, - sym__soft_line_break, - STATE(2145), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, + [40450] = 4, + STATE(1153), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, + aux_sym__whitespace_token1, + ACTIONS(4713), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 38, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + aux_sym__newline_token1, + [40504] = 4, + STATE(1153), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4715), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 38, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -111668,6 +111925,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, @@ -111677,33 +111935,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40236] = 9, - ACTIONS(4243), 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(4599), 1, + [40558] = 9, + ACTIONS(4123), 1, + aux_sym__newline_token1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4689), 1, + ACTIONS(4718), 1, sym__block_close, - ACTIONS(4691), 1, - sym__fenced_code_block_end_backtick, - STATE(2382), 1, + ACTIONS(4720), 1, + sym__fenced_code_block_end_tilde, + STATE(2268), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111732,39 +111997,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40300] = 9, - ACTIONS(4243), 1, - aux_sym__newline_token1, - ACTIONS(4599), 1, - sym__whitespace_ge_2, - ACTIONS(4601), 1, + [40622] = 4, + STATE(1153), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4693), 1, - sym__block_close, - ACTIONS(4695), 1, - sym__fenced_code_block_end_backtick, - STATE(2346), 1, - sym_code_fence_content, - ACTIONS(4603), 2, - sym__word_no_digit, - sym__digits, - STATE(1248), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4713), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111782,38 +112036,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40364] = 9, - ACTIONS(4235), 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, + [40676] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, + ACTIONS(4603), 1, + sym__whitespace_ge_2, ACTIONS(4605), 1, + aux_sym__whitespace_token1, + ACTIONS(4663), 1, sym__block_close, - ACTIONS(4607), 1, + ACTIONS(4665), 1, sym__fenced_code_block_end_tilde, - ACTIONS(4615), 1, - sym__whitespace_ge_2, - ACTIONS(4617), 1, - aux_sym__whitespace_token1, - STATE(2381), 1, + STATE(2382), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111842,33 +112102,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40428] = 9, - ACTIONS(4235), 1, + [40740] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4693), 1, + ACTIONS(4722), 1, sym__block_close, - ACTIONS(4695), 1, + ACTIONS(4724), 1, sym__fenced_code_block_end_tilde, - STATE(2344), 1, + STATE(2366), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111897,31 +112157,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40492] = 4, - STATE(1156), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 3, + [40804] = 13, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1542), 1, + sym__whitespace, + STATE(1547), 1, + sym__soft_line_break, + STATE(2153), 1, + sym_link_destination, + STATE(2206), 1, + sym__newline, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4697), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 38, - sym__blank_line_start, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -111930,7 +112207,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, @@ -111940,30 +112216,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40546] = 4, - STATE(1156), 1, + [40876] = 4, + STATE(1152), 1, aux_sym__ignore_matching_tokens, - ACTIONS(405), 3, + ACTIONS(391), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4699), 3, + ACTIONS(4726), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(403), 38, + ACTIONS(389), 38, sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111990,9 +112259,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -112001,24 +112268,37 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [40600] = 4, - STATE(1156), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [40930] = 9, + ACTIONS(4125), 1, + aux_sym__newline_token1, + ACTIONS(4615), 1, + sym__whitespace_ge_2, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4697), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, - sym__blank_line_start, + ACTIONS(4718), 1, + sym__block_close, + ACTIONS(4720), 1, + sym__fenced_code_block_end_backtick, + STATE(2266), 1, + sym_code_fence_content, + ACTIONS(4619), 2, + sym__word_no_digit, + sym__digits, + STATE(1199), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112036,39 +112316,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [40994] = 9, + ACTIONS(4123), 1, + aux_sym__newline_token1, + ACTIONS(4603), 1, sym__whitespace_ge_2, + ACTIONS(4605), 1, + aux_sym__whitespace_token1, + ACTIONS(4728), 1, + sym__block_close, + ACTIONS(4730), 1, + sym__fenced_code_block_end_tilde, + STATE(2257), 1, + sym_code_fence_content, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [40654] = 4, - STATE(1155), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4702), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, - sym__blank_line_start, + STATE(1244), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112086,44 +112371,38 @@ 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, - 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, - [40708] = 9, - ACTIONS(4235), 1, + [41058] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4625), 1, + ACTIONS(4728), 1, sym__block_close, - ACTIONS(4627), 1, - sym__fenced_code_block_end_tilde, - STATE(2234), 1, + ACTIONS(4730), 1, + sym__fenced_code_block_end_backtick, + STATE(2258), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112152,33 +112431,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40772] = 9, - ACTIONS(4235), 1, + [41122] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4704), 1, + ACTIONS(4722), 1, sym__block_close, - ACTIONS(4706), 1, - sym__fenced_code_block_end_tilde, - STATE(2273), 1, + ACTIONS(4724), 1, + sym__fenced_code_block_end_backtick, + STATE(2362), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112207,33 +112486,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40836] = 9, - ACTIONS(4243), 1, + [41186] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4704), 1, + ACTIONS(4687), 1, sym__block_close, - ACTIONS(4706), 1, - sym__fenced_code_block_end_backtick, - STATE(2272), 1, + ACTIONS(4689), 1, + sym__fenced_code_block_end_tilde, + STATE(2414), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112262,33 +112541,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40900] = 9, - ACTIONS(4235), 1, + [41250] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4708), 1, + ACTIONS(4631), 1, sym__block_close, - ACTIONS(4710), 1, + ACTIONS(4633), 1, sym__fenced_code_block_end_tilde, - STATE(2267), 1, + STATE(2298), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112317,42 +112596,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [40964] = 9, - ACTIONS(4243), 1, + [41314] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4708), 1, - sym__block_close, - ACTIONS(4710), 1, - sym__fenced_code_block_end_backtick, - STATE(2266), 1, - sym_code_fence_content, - ACTIONS(4603), 2, - sym__word_no_digit, - sym__digits, - STATE(1248), 5, - sym__text, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1591), 1, sym__whitespace, - sym__word, + STATE(1594), 1, + sym__soft_line_break, + STATE(2151), 1, + sym_link_destination, + STATE(2206), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -112361,44 +112646,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41028] = 9, - ACTIONS(4235), 1, + [41386] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4712), 1, + ACTIONS(4732), 1, sym__block_close, - ACTIONS(4714), 1, + ACTIONS(4734), 1, sym__fenced_code_block_end_tilde, - STATE(2247), 1, + STATE(2259), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112427,33 +112710,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41092] = 9, - ACTIONS(4243), 1, + [41450] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4712), 1, + ACTIONS(4736), 1, sym__block_close, - ACTIONS(4714), 1, + ACTIONS(4738), 1, sym__fenced_code_block_end_backtick, - STATE(2245), 1, + STATE(2294), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112482,33 +112765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41156] = 9, - ACTIONS(4235), 1, + [41514] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4716), 1, + ACTIONS(4740), 1, sym__block_close, - ACTIONS(4718), 1, + ACTIONS(4742), 1, sym__fenced_code_block_end_tilde, - STATE(2378), 1, + STATE(2410), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112537,21 +112820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41220] = 3, - ACTIONS(4720), 1, - sym__last_token_whitespace, - ACTIONS(2990), 3, - anon_sym_LT, - anon_sym_BSLASH, + [41578] = 9, + ACTIONS(4125), 1, + aux_sym__newline_token1, + ACTIONS(4615), 1, + sym__whitespace_ge_2, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(2988), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4732), 1, + sym__block_close, + ACTIONS(4734), 1, + sym__fenced_code_block_end_backtick, + STATE(2264), 1, + sym_code_fence_content, + ACTIONS(4619), 2, + sym__word_no_digit, + sym__digits, + STATE(1199), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112569,38 +112864,44 @@ 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, - 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, + [41642] = 9, + ACTIONS(4125), 1, + aux_sym__newline_token1, + ACTIONS(4615), 1, sym__whitespace_ge_2, + ACTIONS(4617), 1, + aux_sym__whitespace_token1, + ACTIONS(4697), 1, + sym__block_close, + ACTIONS(4699), 1, + sym__fenced_code_block_end_backtick, + STATE(2406), 1, + sym_code_fence_content, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [41272] = 3, - ACTIONS(4722), 1, - sym__last_token_punctuation, - ACTIONS(3094), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2601), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1199), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112618,50 +112919,44 @@ 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, - 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, - [41324] = 9, - ACTIONS(4243), 1, + [41706] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4724), 1, + ACTIONS(4621), 1, sym__block_close, - ACTIONS(4726), 1, - sym__fenced_code_block_end_backtick, - STATE(2244), 1, + ACTIONS(4623), 1, + sym__fenced_code_block_end_tilde, + STATE(2236), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112690,33 +112985,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41388] = 9, - ACTIONS(4235), 1, + [41770] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4724), 1, + ACTIONS(4740), 1, sym__block_close, - ACTIONS(4726), 1, - sym__fenced_code_block_end_tilde, - STATE(2238), 1, + ACTIONS(4742), 1, + sym__fenced_code_block_end_backtick, + STATE(2411), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112745,33 +113040,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41452] = 9, - ACTIONS(4243), 1, + [41834] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4716), 1, + ACTIONS(4736), 1, sym__block_close, - ACTIONS(4718), 1, - sym__fenced_code_block_end_backtick, - STATE(2377), 1, + ACTIONS(4738), 1, + sym__fenced_code_block_end_tilde, + STATE(2291), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112800,42 +113095,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41516] = 9, - ACTIONS(4235), 1, + [41898] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4609), 1, - sym__block_close, - ACTIONS(4611), 1, - sym__fenced_code_block_end_tilde, - ACTIONS(4615), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - STATE(2242), 1, - sym_code_fence_content, - ACTIONS(4619), 2, - sym__word_no_digit, - sym__digits, - STATE(1194), 5, - sym__text, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1584), 1, sym__whitespace, - sym__word, + STATE(1586), 1, + sym__soft_line_break, + STATE(2159), 1, + sym_link_destination, + STATE(2206), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -112844,44 +113145,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41580] = 9, - ACTIONS(4243), 1, + [41970] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4728), 1, + ACTIONS(4744), 1, sym__block_close, - ACTIONS(4730), 1, - sym__fenced_code_block_end_backtick, - STATE(2237), 1, + ACTIONS(4746), 1, + sym__fenced_code_block_end_tilde, + STATE(2326), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112910,33 +113209,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41644] = 9, - ACTIONS(4235), 1, + [42034] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4728), 1, + ACTIONS(4748), 1, sym__block_close, - ACTIONS(4730), 1, - sym__fenced_code_block_end_tilde, - STATE(2236), 1, + ACTIONS(4750), 1, + sym__fenced_code_block_end_backtick, + STATE(2245), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112965,33 +113264,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41708] = 9, - ACTIONS(4243), 1, + [42098] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4732), 1, + ACTIONS(4748), 1, sym__block_close, - ACTIONS(4734), 1, - sym__fenced_code_block_end_backtick, - STATE(2235), 1, + ACTIONS(4750), 1, + sym__fenced_code_block_end_tilde, + STATE(2249), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113020,42 +113319,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41772] = 9, - ACTIONS(4235), 1, + [42162] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4732), 1, - sym__block_close, - ACTIONS(4734), 1, - sym__fenced_code_block_end_tilde, - STATE(2231), 1, - sym_code_fence_content, - ACTIONS(4619), 2, - sym__word_no_digit, - sym__digits, - STATE(1194), 5, - sym__text, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1593), 1, + sym__soft_line_break, + STATE(1595), 1, sym__whitespace, - sym__word, + STATE(2155), 1, + sym_link_destination, + STATE(2206), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -113064,44 +113369,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41836] = 9, - ACTIONS(4243), 1, + [42234] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4621), 1, + ACTIONS(4667), 1, sym__block_close, - ACTIONS(4623), 1, + ACTIONS(4669), 1, sym__fenced_code_block_end_backtick, - STATE(2309), 1, + STATE(2289), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113130,33 +113433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41900] = 9, - ACTIONS(4243), 1, + [42298] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4615), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4736), 1, + ACTIONS(4744), 1, sym__block_close, - ACTIONS(4738), 1, + ACTIONS(4746), 1, sym__fenced_code_block_end_backtick, - STATE(2315), 1, + STATE(2324), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113185,33 +113488,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [41964] = 9, - ACTIONS(4235), 1, + [42362] = 9, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4736), 1, + ACTIONS(4647), 1, sym__block_close, - ACTIONS(4738), 1, - sym__fenced_code_block_end_tilde, - STATE(2316), 1, + ACTIONS(4649), 1, + sym__fenced_code_block_end_backtick, + STATE(2319), 1, sym_code_fence_content, ACTIONS(4619), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1199), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113240,33 +113543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42028] = 9, - ACTIONS(4243), 1, + [42426] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4599), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4740), 1, + ACTIONS(4639), 1, sym__block_close, - ACTIONS(4742), 1, - sym__fenced_code_block_end_backtick, - STATE(2328), 1, + ACTIONS(4641), 1, + sym__fenced_code_block_end_tilde, + STATE(2372), 1, sym_code_fence_content, - ACTIONS(4603), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1248), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113295,33 +113598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42092] = 9, - ACTIONS(4235), 1, + [42490] = 9, + ACTIONS(4123), 1, aux_sym__newline_token1, - ACTIONS(4615), 1, + ACTIONS(4603), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4740), 1, + ACTIONS(4627), 1, sym__block_close, - ACTIONS(4742), 1, + ACTIONS(4629), 1, sym__fenced_code_block_end_tilde, - STATE(2336), 1, + STATE(2347), 1, sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4607), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + STATE(1244), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113350,39 +113653,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42156] = 9, - ACTIONS(4243), 1, - aux_sym__newline_token1, - ACTIONS(4599), 1, + [42554] = 9, + ACTIONS(4755), 1, + anon_sym_DQUOTE, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(4601), 1, + ACTIONS(4766), 1, aux_sym__whitespace_token1, - ACTIONS(4744), 1, - sym__block_close, - ACTIONS(4746), 1, - sym__fenced_code_block_end_backtick, - STATE(2337), 1, - sym_code_fence_content, - ACTIONS(4603), 2, - sym__word_no_digit, - sym__digits, - STATE(1248), 5, - sym__text, + ACTIONS(4769), 1, + aux_sym__newline_token1, + STATE(1556), 1, + sym__newline, + ACTIONS(4757), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1185), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + aux_sym_link_title_repeat1, + ACTIONS(4760), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4752), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113400,38 +113703,34 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42220] = 9, - ACTIONS(4235), 1, - aux_sym__newline_token1, - ACTIONS(4615), 1, + [42617] = 7, + ACTIONS(4775), 1, sym__whitespace_ge_2, - ACTIONS(4617), 1, + ACTIONS(4778), 1, aux_sym__whitespace_token1, - ACTIONS(4744), 1, - sym__block_close, - ACTIONS(4746), 1, - sym__fenced_code_block_end_tilde, - STATE(2363), 1, - sym_code_fence_content, - ACTIONS(4619), 2, + ACTIONS(4784), 1, + aux_sym__newline_token1, + ACTIONS(4781), 2, sym__word_no_digit, sym__digits, - STATE(1194), 5, + ACTIONS(4787), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(1186), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4613), 32, + ACTIONS(4772), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113460,30 +113759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42284] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(4748), 1, - sym__line_ending, - STATE(1359), 1, + [42676] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4750), 3, + ACTIONS(897), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(895), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113501,36 +113797,33 @@ 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, - 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, - [42339] = 7, - ACTIONS(4756), 1, - sym__whitespace_ge_2, - ACTIONS(4759), 1, - aux_sym__whitespace_token1, - ACTIONS(4762), 1, - aux_sym__newline_token1, - STATE(2222), 1, - sym__newline, - ACTIONS(4754), 2, + [42729] = 4, + STATE(1236), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(1380), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1185), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4752), 35, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1378), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113557,41 +113850,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - [42398] = 7, - ACTIONS(4768), 1, sym__whitespace_ge_2, - ACTIONS(4771), 1, - aux_sym__whitespace_token1, - ACTIONS(4777), 1, - aux_sym__newline_token1, - ACTIONS(4774), 2, sym__word_no_digit, sym__digits, - ACTIONS(4780), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(1186), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4765), 32, + aux_sym__newline_token1, + [42782] = 4, + STATE(1236), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(979), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(977), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113609,45 +113895,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42457] = 9, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4593), 1, - aux_sym__newline_token1, - ACTIONS(4786), 1, - anon_sym_SQUOTE, - STATE(1539), 1, - sym__newline, - ACTIONS(4784), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1250), 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, - ACTIONS(4782), 29, + aux_sym__newline_token1, + [42835] = 4, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(979), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4791), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(977), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -113668,22 +113948,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42520] = 4, - STATE(1242), 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, + [42888] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(821), 3, + ACTIONS(987), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(819), 37, + ACTIONS(985), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113710,9 +113997,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113721,18 +114006,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42573] = 4, - STATE(1188), 1, + [42941] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(851), 3, + ACTIONS(969), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4792), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 37, + ACTIONS(967), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113759,9 +114046,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113770,26 +114055,34 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42626] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(851), 3, + [42994] = 7, + ACTIONS(4797), 1, + anon_sym_LPAREN, + ACTIONS(4800), 1, + anon_sym_RPAREN, + ACTIONS(4806), 1, + sym__last_token_punctuation, + ACTIONS(4795), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(849), 37, + ACTIONS(4803), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(2036), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4793), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -113808,26 +114101,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [42679] = 2, - ACTIONS(4403), 3, - anon_sym_LT, - anon_sym_BSLASH, + [43053] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4808), 1, + sym__whitespace_ge_2, + ACTIONS(4810), 1, aux_sym__whitespace_token1, - ACTIONS(4401), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4814), 1, + sym__code_span_close, + STATE(2225), 1, + sym__newline, + ACTIONS(4812), 2, + sym__word_no_digit, + sym__digits, + STATE(1207), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(3022), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113845,41 +114147,47 @@ 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, - 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, + [43114] = 9, + ACTIONS(4119), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4565), 1, aux_sym__newline_token1, - [42728] = 4, - STATE(1190), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(869), 3, + ACTIONS(4818), 1, + anon_sym_DQUOTE, + STATE(1556), 1, + sym__newline, + ACTIONS(4820), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4794), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(867), 37, + STATE(1185), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(4822), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4816), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -113904,29 +114212,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [43177] = 9, + ACTIONS(4830), 1, + anon_sym_SQUOTE, + ACTIONS(4835), 1, + sym__whitespace_ge_2, + ACTIONS(4838), 1, + aux_sym__whitespace_token1, + ACTIONS(4841), 1, + aux_sym__newline_token1, + STATE(1554), 1, + sym__newline, + ACTIONS(4827), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1196), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4832), 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, - [42781] = 4, - STATE(1242), 1, + ACTIONS(4824), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [43240] = 4, + STATE(1208), 1, aux_sym__ignore_matching_tokens, - ACTIONS(869), 3, + ACTIONS(1038), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4844), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 37, + ACTIONS(1036), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113953,9 +114308,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113964,26 +114317,80 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42834] = 7, - ACTIONS(4235), 1, + [43293] = 7, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4852), 1, + aux_sym__newline_token1, + ACTIONS(4848), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1220), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat2, + ACTIONS(4850), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4846), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [43352] = 7, + ACTIONS(4125), 1, aux_sym__newline_token1, ACTIONS(4615), 1, sym__whitespace_ge_2, ACTIONS(4617), 1, aux_sym__whitespace_token1, - ACTIONS(4796), 2, + ACTIONS(4854), 2, sym__word_no_digit, sym__digits, - ACTIONS(4798), 2, + ACTIONS(4856), 2, sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(1186), 5, + sym__fenced_code_block_end_backtick, + STATE(1206), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, ACTIONS(4613), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114012,22 +114419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [42893] = 4, + [43411] = 4, STATE(1242), 1, aux_sym__ignore_matching_tokens, - ACTIONS(905), 3, + ACTIONS(987), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4858), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 37, + ACTIONS(985), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114054,9 +114461,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114065,23 +114470,35 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42946] = 4, - STATE(1193), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(905), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [43464] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4808), 1, + sym__whitespace_ge_2, + ACTIONS(4810), 1, aux_sym__whitespace_token1, - ACTIONS(4800), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(903), 37, + ACTIONS(4860), 1, + sym__code_span_close, + STATE(2225), 1, + sym__newline, + ACTIONS(4812), 2, + sym__word_no_digit, + sym__digits, + STATE(1207), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(3022), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114099,41 +114516,94 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [43525] = 9, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4565), 1, + aux_sym__newline_token1, + ACTIONS(4866), 1, + anon_sym_SQUOTE, + STATE(1554), 1, + sym__newline, + ACTIONS(4864), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1247), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4868), 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, - [42999] = 7, - ACTIONS(4806), 1, + ACTIONS(4862), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_LPAREN, - ACTIONS(4809), 1, anon_sym_RPAREN, - ACTIONS(4815), 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_PIPE, + anon_sym_TILDE, + [43588] = 8, + ACTIONS(4500), 1, sym__last_token_punctuation, - ACTIONS(4804), 3, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(4878), 1, + aux_sym__whitespace_token1, + ACTIONS(4872), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4812), 3, + ACTIONS(4874), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1391), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4876), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(2098), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4802), 32, + ACTIONS(4870), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114158,31 +114628,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [43058] = 4, - STATE(1195), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(950), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [43649] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(4817), 3, + ACTIONS(4880), 1, + sym__line_ending, + STATE(1314), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4882), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 37, + ACTIONS(377), 38, + sym__block_close, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114200,38 +114669,39 @@ 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, - 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, - [43111] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(950), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [43704] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4884), 1, + sym__line_ending, + STATE(1353), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4886), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 37, + ACTIONS(377), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114249,50 +114719,98 @@ 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, - 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, - [43164] = 9, - ACTIONS(4231), 1, + [43759] = 7, + ACTIONS(4891), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4894), 1, aux_sym__whitespace_token1, - ACTIONS(4593), 1, + ACTIONS(4900), 1, aux_sym__newline_token1, - ACTIONS(4786), 1, - anon_sym_DQUOTE, - STATE(1547), 1, + ACTIONS(4787), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(4897), 2, + sym__word_no_digit, + sym__digits, + STATE(1206), 5, + sym__text, + sym__whitespace, + sym__word, sym__newline, - ACTIONS(4821), 2, + aux_sym_code_fence_content_repeat1, + ACTIONS(4888), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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, - STATE(1245), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4823), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [43818] = 8, + ACTIONS(4906), 1, + sym__whitespace_ge_2, + ACTIONS(4909), 1, + aux_sym__whitespace_token1, + ACTIONS(4915), 1, + aux_sym__newline_token1, + ACTIONS(4918), 1, + sym__code_span_close, + STATE(2225), 1, + sym__newline, + ACTIONS(4912), 2, sym__word_no_digit, sym__digits, - ACTIONS(4819), 29, + STATE(1207), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(4903), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114310,26 +114828,27 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [43227] = 4, - STATE(1242), 1, + [43879] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(956), 3, + ACTIONS(752), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(954), 37, + ACTIONS(750), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114356,9 +114875,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114367,18 +114884,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43280] = 4, - STATE(1242), 1, + [43932] = 4, + STATE(1216), 1, aux_sym__ignore_matching_tokens, - ACTIONS(972), 3, + ACTIONS(1064), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4920), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(970), 37, + ACTIONS(1062), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114405,9 +114924,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114416,23 +114933,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43333] = 4, - STATE(1242), 1, + [43985] = 5, + ACTIONS(4922), 1, + sym__line_ending, + STATE(1300), 1, aux_sym__ignore_matching_tokens, - ACTIONS(968), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(379), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4924), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(966), 37, + ACTIONS(377), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114450,33 +114972,31 @@ 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, - anon_sym_LBRACE, 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, - [43386] = 4, - STATE(1242), 1, + [44040] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(964), 3, + ACTIONS(993), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(962), 37, + ACTIONS(991), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114503,9 +115023,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114514,18 +115032,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43439] = 4, - STATE(1242), 1, + [44093] = 4, + STATE(1249), 1, aux_sym__ignore_matching_tokens, - ACTIONS(960), 3, + ACTIONS(993), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4926), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(958), 37, + ACTIONS(991), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114552,9 +115072,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114563,18 +115081,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43492] = 4, - STATE(1242), 1, + [44146] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(920), 3, + ACTIONS(925), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(918), 37, + ACTIONS(923), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114601,9 +115121,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114612,26 +115130,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43545] = 5, - ACTIONS(4825), 1, - sym__line_ending, - STATE(1356), 1, + [44199] = 4, + STATE(1239), 1, aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_LT, + ACTIONS(752), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4827), 3, + ACTIONS(4928), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 37, - sym__block_close, + ACTIONS(750), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114643,40 +115160,49 @@ 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, - anon_sym_LBRACE, 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, - [43600] = 2, - ACTIONS(3107), 3, - anon_sym_LT, - anon_sym_BSLASH, + [44252] = 7, + ACTIONS(4934), 1, + sym__whitespace_ge_2, + ACTIONS(4937), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4940), 1, + aux_sym__newline_token1, + STATE(2206), 1, + sym__newline, + ACTIONS(4932), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1215), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4930), 35, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114688,53 +115214,49 @@ 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_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_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [43649] = 5, - ACTIONS(4829), 1, - sym__line_ending, - STATE(1352), 1, + [44311] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_DASH, + ACTIONS(1175), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4831), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 37, - sym__block_close, + ACTIONS(1173), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -114745,32 +115267,33 @@ 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, - anon_sym_LBRACE, 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, - [43704] = 4, - STATE(1199), 1, + [44364] = 4, + STATE(1187), 1, aux_sym__ignore_matching_tokens, - ACTIONS(777), 3, + ACTIONS(850), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4833), 3, + ACTIONS(4943), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 37, + ACTIONS(848), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114797,9 +115320,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114808,20 +115329,34 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43757] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(777), 3, + [44417] = 9, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4565), 1, + aux_sym__newline_token1, + ACTIONS(4866), 1, + anon_sym_DQUOTE, + STATE(1556), 1, + sym__newline, + ACTIONS(4820), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4790), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(775), 37, + STATE(1195), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(4945), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4816), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -114846,29 +115381,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [43810] = 4, - STATE(1201), 1, + [44480] = 4, + STATE(1231), 1, aux_sym__ignore_matching_tokens, - ACTIONS(803), 3, + ACTIONS(925), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4835), 3, + ACTIONS(4947), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 37, + ACTIONS(923), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114895,9 +115423,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -114906,18 +115432,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43863] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(803), 3, + [44533] = 7, + ACTIONS(4958), 1, + sym__whitespace_ge_2, + ACTIONS(4961), 1, + aux_sym__whitespace_token1, + ACTIONS(4964), 1, + aux_sym__newline_token1, + ACTIONS(4952), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4790), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(801), 37, + STATE(1220), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat2, + ACTIONS(4955), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4949), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114944,29 +115482,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [43916] = 4, - STATE(1202), 1, + [44592] = 4, + STATE(1188), 1, aux_sym__ignore_matching_tokens, - ACTIONS(825), 3, + ACTIONS(969), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4837), 3, + ACTIONS(4966), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 37, + ACTIONS(967), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114993,9 +115524,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115004,18 +115533,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43969] = 4, - STATE(1242), 1, + [44645] = 4, + STATE(1228), 1, aux_sym__ignore_matching_tokens, - ACTIONS(825), 3, + ACTIONS(897), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4968), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 37, + ACTIONS(895), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115042,9 +115573,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115053,18 +115582,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44022] = 4, - STATE(1203), 1, + [44698] = 4, + STATE(1213), 1, aux_sym__ignore_matching_tokens, - ACTIONS(837), 3, + ACTIONS(856), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4839), 3, + ACTIONS(4970), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 37, + ACTIONS(854), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115091,9 +115622,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115102,18 +115631,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44075] = 4, - STATE(1242), 1, + [44751] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(837), 3, + ACTIONS(1206), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 37, + ACTIONS(1204), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115140,9 +115671,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115151,26 +115680,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44128] = 5, - ACTIONS(4841), 1, - sym__line_ending, - STATE(1344), 1, + [44804] = 4, + STATE(1192), 1, aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_QMARK, + ACTIONS(862), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4843), 3, + ACTIONS(4972), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 37, - sym__block_close, + ACTIONS(860), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115185,42 +115713,41 @@ 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, - anon_sym_LBRACE, 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, - [44183] = 5, - ACTIONS(4845), 1, - sym__line_ending, - STATE(1339), 1, + [44857] = 4, + STATE(1256), 1, aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_RBRACK, + ACTIONS(1175), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4847), 3, + ACTIONS(4974), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 37, - sym__block_close, + ACTIONS(1173), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115238,31 +115765,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44238] = 4, - STATE(1204), 1, + [44910] = 4, + STATE(1189), 1, aux_sym__ignore_matching_tokens, - ACTIONS(857), 3, + ACTIONS(868), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4849), 3, + ACTIONS(4976), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 37, + ACTIONS(866), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115289,9 +115818,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115300,18 +115827,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44291] = 4, - STATE(1242), 1, + [44963] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(857), 3, + ACTIONS(1372), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 37, + ACTIONS(1370), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115338,9 +115867,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115349,18 +115876,72 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44344] = 4, - STATE(1205), 1, + [45016] = 7, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4978), 1, + aux_sym__newline_token1, + ACTIONS(4848), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1220), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat2, + ACTIONS(4850), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4846), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [45075] = 4, + STATE(1191), 1, aux_sym__ignore_matching_tokens, - ACTIONS(897), 3, + ACTIONS(874), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4851), 3, + ACTIONS(4980), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 37, + ACTIONS(872), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115387,9 +115968,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115398,18 +115977,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44397] = 4, - STATE(1242), 1, + [45128] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(897), 3, + ACTIONS(1376), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 37, + ACTIONS(1374), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115436,9 +116017,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115447,18 +116026,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44450] = 4, - STATE(1206), 1, + [45181] = 4, + STATE(1211), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1008), 3, + ACTIONS(880), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4853), 3, + ACTIONS(4982), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 37, + ACTIONS(878), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115485,9 +116066,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115496,18 +116075,70 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44503] = 4, - STATE(1242), 1, + [45234] = 5, + ACTIONS(4984), 1, + sym__line_ending, + STATE(1295), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(4986), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, + anon_sym_TILDE, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [45289] = 4, + STATE(1238), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1008), 3, + ACTIONS(391), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(4988), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 37, + ACTIONS(389), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115534,9 +116165,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115545,26 +116174,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44556] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(4855), 1, - sym__line_ending, - STATE(1331), 1, + [45342] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4857), 3, + ACTIONS(391), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 38, - sym__block_close, - sym__blank_line_start, + ACTIONS(389), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115582,31 +116210,33 @@ 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, - 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, - [44611] = 4, - STATE(1211), 1, + [45395] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1247), 3, + ACTIONS(397), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4859), 3, + ACTIONS(4990), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1245), 37, + ACTIONS(395), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115633,9 +116263,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115644,18 +116272,73 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44664] = 4, - STATE(1213), 1, + [45448] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4808), 1, + sym__whitespace_ge_2, + ACTIONS(4810), 1, + aux_sym__whitespace_token1, + ACTIONS(4993), 1, + sym__code_span_close, + STATE(2225), 1, + sym__newline, + ACTIONS(4812), 2, + sym__word_no_digit, + sym__digits, + STATE(1207), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(3022), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, + anon_sym_TILDE, + [45509] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1105), 3, + ACTIONS(404), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4861), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1103), 37, + ACTIONS(402), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115682,9 +116365,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115693,18 +116374,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44717] = 4, - STATE(1215), 1, + [45562] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1186), 3, + ACTIONS(794), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4863), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1184), 37, + ACTIONS(792), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115731,9 +116414,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115742,32 +116423,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44770] = 7, - ACTIONS(4869), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_RPAREN, - ACTIONS(4878), 1, - sym__last_token_punctuation, - ACTIONS(4867), 3, + [45615] = 4, + STATE(1236), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(1368), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4875), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(2098), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4865), 32, + ACTIONS(4789), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1366), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -115786,38 +116463,43 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44829] = 4, - STATE(1217), 1, + [45668] = 5, + ACTIONS(4995), 1, + sym__line_ending, + STATE(1263), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1259), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(379), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4880), 3, + ACTIONS(4997), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1257), 37, + ACTIONS(377), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -115828,33 +116510,32 @@ 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, - anon_sym_LBRACE, 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, - [44882] = 4, - STATE(1221), 1, + [45723] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1115), 3, + ACTIONS(1307), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4882), 3, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1113), 37, + ACTIONS(1305), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115881,9 +116562,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115892,23 +116571,23 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44935] = 4, - STATE(1223), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(1267), 3, - anon_sym_AMP, + [45776] = 2, + ACTIONS(4288), 3, + anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4884), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1265), 37, + ACTIONS(4286), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115920,44 +116599,53 @@ 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_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, - [44988] = 4, - STATE(1225), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(1029), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [45825] = 7, + ACTIONS(4123), 1, + aux_sym__newline_token1, + ACTIONS(4603), 1, + sym__whitespace_ge_2, + ACTIONS(4605), 1, aux_sym__whitespace_token1, - ACTIONS(4886), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1027), 37, + ACTIONS(4856), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(4999), 2, + sym__word_no_digit, + sym__digits, + STATE(1186), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4601), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115975,41 +116663,41 @@ 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, - 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, - [45041] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(1029), 3, + [45884] = 7, + ACTIONS(5005), 1, + anon_sym_LPAREN, + ACTIONS(5008), 1, + anon_sym_RPAREN, + ACTIONS(5014), 1, + sym__last_token_punctuation, + ACTIONS(5003), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4790), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1027), 37, + ACTIONS(5011), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(2036), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(5001), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -116028,29 +116716,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [45094] = 4, - STATE(1235), 1, + [45943] = 4, + STATE(1224), 1, aux_sym__ignore_matching_tokens, - ACTIONS(809), 3, + ACTIONS(794), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4888), 3, + ACTIONS(5016), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(807), 37, + ACTIONS(792), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116077,9 +116762,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116088,33 +116771,38 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [45147] = 7, - ACTIONS(4893), 1, + [45996] = 9, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4896), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4902), 1, + ACTIONS(4565), 1, aux_sym__newline_token1, - ACTIONS(4780), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(4899), 2, - sym__word_no_digit, - sym__digits, - STATE(1237), 5, - sym__text, + ACTIONS(4818), 1, + anon_sym_SQUOTE, + STATE(1554), 1, + sym__newline, + ACTIONS(4864), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1196), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4890), 32, + aux_sym_link_title_repeat2, + ACTIONS(5018), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4862), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -116131,46 +116819,37 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45206] = 8, - ACTIONS(4504), 1, - sym__last_token_punctuation, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(4913), 1, + [46059] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(4907), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4909), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1327), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4911), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4905), 28, + ACTIONS(5020), 1, + sym__line_ending, + STATE(1379), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5022), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -116185,34 +116864,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45267] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(4915), 1, - sym__line_ending, - STATE(1324), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [46114] = 4, + STATE(1236), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4917), 3, + ACTIONS(1242), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(1240), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116230,31 +116911,33 @@ 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, - 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, - [45322] = 4, - STATE(1243), 1, + [46167] = 4, + STATE(1258), 1, aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + ACTIONS(1242), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4919), 3, + ACTIONS(5024), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(1240), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116281,9 +116964,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116292,18 +116973,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [45375] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + [46220] = 7, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4519), 1, + aux_sym__newline_token1, + ACTIONS(4848), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4790), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + STATE(1198), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat2, + ACTIONS(5026), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4846), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116330,29 +117023,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [46279] = 2, + ACTIONS(3107), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3105), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, 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, + [46328] = 7, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4852), 1, + aux_sym__newline_token1, + ACTIONS(4848), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat2, + ACTIONS(5028), 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, - [45428] = 4, - STATE(1242), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4921), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 37, + ACTIONS(4846), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116379,34 +117122,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [45481] = 4, - STATE(1242), 1, + [46387] = 5, + ACTIONS(5030), 1, + sym__line_ending, + STATE(1267), 1, aux_sym__ignore_matching_tokens, - ACTIONS(401), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(379), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4790), 3, + ACTIONS(5032), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 37, + ACTIONS(377), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116418,54 +117157,52 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [45534] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4924), 1, + [46442] = 7, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, - sym__code_span_close, - STATE(2205), 1, - sym__newline, - ACTIONS(4928), 2, - sym__word_no_digit, - sym__digits, - STATE(1246), 5, - sym__soft_line_break, + ACTIONS(4519), 1, + aux_sym__newline_token1, + ACTIONS(4848), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1220), 4, sym__text, sym__whitespace, sym__word, - aux_sym__code_span_repeat1, - ACTIONS(3022), 32, + aux_sym_info_string_repeat2, + ACTIONS(4850), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4846), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116483,41 +117220,28 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45595] = 9, - ACTIONS(4935), 1, - anon_sym_DQUOTE, - ACTIONS(4943), 1, - sym__whitespace_ge_2, - ACTIONS(4946), 1, - aux_sym__whitespace_token1, - ACTIONS(4949), 1, - aux_sym__newline_token1, - STATE(1547), 1, - sym__newline, - ACTIONS(4937), 2, + [46501] = 4, + STATE(1236), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(1050), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1245), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4940), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4932), 29, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1048), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -116542,37 +117266,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45658] = 8, - ACTIONS(4955), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4958), 1, - aux_sym__whitespace_token1, - ACTIONS(4964), 1, - aux_sym__newline_token1, - ACTIONS(4967), 1, - sym__code_span_close, - STATE(2205), 1, - sym__newline, - ACTIONS(4961), 2, sym__word_no_digit, sym__digits, - STATE(1246), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(4952), 32, + aux_sym__newline_token1, + [46554] = 4, + STATE(1259), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(756), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(5034), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(754), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116590,37 +117311,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45719] = 7, - ACTIONS(4978), 1, - sym__whitespace_ge_2, - ACTIONS(4981), 1, - aux_sym__whitespace_token1, - ACTIONS(4984), 1, - aux_sym__newline_token1, - ACTIONS(4972), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1247), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4975), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4969), 30, + aux_sym__newline_token1, + [46607] = 4, + STATE(1236), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(756), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(754), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116647,36 +117364,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45778] = 7, - ACTIONS(4243), 1, - aux_sym__newline_token1, - ACTIONS(4599), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4601), 1, - aux_sym__whitespace_token1, - ACTIONS(4798), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(4986), 2, sym__word_no_digit, sym__digits, - STATE(1237), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4597), 32, + aux_sym__newline_token1, + [46660] = 4, + STATE(1236), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(1064), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4789), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1062), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116694,42 +117409,49 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45837] = 7, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4994), 1, - aux_sym__newline_token1, - ACTIONS(4990), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1247), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4992), 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, + [46713] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, + sym__whitespace_ge_2, + ACTIONS(5044), 1, + aux_sym__whitespace_token1, + ACTIONS(5048), 1, + aux_sym__newline_token1, + ACTIONS(5050), 1, + sym__block_close, + ACTIONS(5046), 2, sym__word_no_digit, sym__digits, - ACTIONS(4988), 30, + STATE(1275), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116741,56 +117463,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45896] = 9, - ACTIONS(5002), 1, - anon_sym_SQUOTE, - ACTIONS(5007), 1, - sym__whitespace_ge_2, - ACTIONS(5010), 1, + [46775] = 4, + STATE(1262), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5013), 1, - aux_sym__newline_token1, - STATE(1539), 1, - sym__newline, - ACTIONS(4999), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1250), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(5004), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4996), 29, + ACTIONS(5052), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -116801,35 +117511,32 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [45959] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4924), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(5016), 1, - sym__code_span_close, - STATE(2205), 1, - sym__newline, - ACTIONS(4928), 2, sym__word_no_digit, sym__digits, - STATE(1246), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(3022), 32, + aux_sym__newline_token1, + [46827] = 4, + STATE(1262), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5054), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116842,7 +117549,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, @@ -116858,46 +117564,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46020] = 9, - ACTIONS(4231), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4593), 1, - aux_sym__newline_token1, - ACTIONS(5018), 1, - anon_sym_DQUOTE, - STATE(1547), 1, - sym__newline, - ACTIONS(4821), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1200), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(5020), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4819), 29, + aux_sym__newline_token1, + [46879] = 4, + STATE(1262), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5052), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + 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, @@ -116908,50 +117607,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46083] = 9, - ACTIONS(4231), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4593), 1, - aux_sym__newline_token1, - ACTIONS(5018), 1, - anon_sym_SQUOTE, - STATE(1539), 1, - sym__newline, - ACTIONS(4784), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1187), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(5022), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4782), 29, + aux_sym__newline_token1, + [46931] = 4, + STATE(1261), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5057), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -116962,41 +117655,38 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46146] = 7, - ACTIONS(4231), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(5024), 1, - aux_sym__newline_token1, - ACTIONS(4990), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1247), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4992), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4988), 30, + aux_sym__newline_token1, + [46983] = 4, + STATE(1266), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5059), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117008,41 +117698,37 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46205] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4924), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(5026), 1, - sym__code_span_close, - STATE(2205), 1, - sym__newline, - ACTIONS(4928), 2, sym__word_no_digit, sym__digits, - STATE(1246), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(3022), 32, + aux_sym__newline_token1, + [47035] = 4, + STATE(1266), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5061), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117060,7 +117746,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, @@ -117071,37 +117756,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46266] = 7, - ACTIONS(4231), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(5024), 1, - aux_sym__newline_token1, - ACTIONS(4990), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1249), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(5028), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4988), 30, + aux_sym__newline_token1, + [47087] = 4, + STATE(1266), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5059), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117113,42 +117794,47 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46325] = 9, - ACTIONS(5032), 1, + aux_sym__html_block_1_token2, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [47139] = 9, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5068), 1, anon_sym_QMARK_GT, - ACTIONS(5036), 1, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5044), 1, + ACTIONS(5078), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117176,32 +117862,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46387] = 9, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5050), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5052), 1, + [47201] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5058), 1, - sym__last_token_punctuation, - ACTIONS(5056), 2, + ACTIONS(5048), 1, + aux_sym__newline_token1, + ACTIONS(5082), 1, + sym__block_close, + ACTIONS(5080), 2, sym__word_no_digit, sym__digits, - STATE(1634), 4, + STATE(1317), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117214,11 +117900,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, @@ -117229,29 +117915,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46449] = 7, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [47263] = 4, + STATE(1265), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5066), 1, + ACTIONS(5084), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, sym__block_close, - ACTIONS(5062), 2, - sym__word_no_digit, - sym__digits, - STATE(1285), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5060), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117269,7 +117948,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, @@ -117280,29 +117958,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46507] = 7, - ACTIONS(4213), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(5064), 1, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5070), 1, - sym__block_close, - ACTIONS(5068), 2, + [47315] = 9, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5090), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, + aux_sym__whitespace_token1, + ACTIONS(5098), 1, + sym__last_token_punctuation, + ACTIONS(5096), 2, sym__word_no_digit, sym__digits, - STATE(1259), 5, - sym__text, + STATE(1578), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5060), 32, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117315,7 +118001,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, @@ -117331,32 +118016,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46565] = 9, - ACTIONS(5074), 1, + [47377] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5086), 1, + ACTIONS(5114), 1, sym__block_close, - ACTIONS(5082), 2, + ACTIONS(5110), 2, sym__word_no_digit, sym__digits, - STATE(1288), 4, + STATE(1318), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117384,32 +118069,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46627] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [47439] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5102), 1, + ACTIONS(5118), 1, sym__block_close, - ACTIONS(5098), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1272), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117422,11 +118107,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, @@ -117437,32 +118122,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46689] = 9, - ACTIONS(5074), 1, + [47501] = 9, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, - aux_sym__newline_token1, - ACTIONS(5106), 1, - sym__block_close, - ACTIONS(5104), 2, + ACTIONS(5120), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5124), 1, + sym__last_token_punctuation, + ACTIONS(5122), 2, sym__word_no_digit, sym__digits, - STATE(1273), 4, + STATE(1412), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117490,32 +118175,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46751] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, - sym__whitespace_ge_2, + [47563] = 9, ACTIONS(5038), 1, - aux_sym__whitespace_token1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, ACTIONS(5042), 1, + sym__whitespace_ge_2, + ACTIONS(5044), 1, + aux_sym__whitespace_token1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5110), 1, + ACTIONS(5128), 1, sym__block_close, - ACTIONS(5108), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1274), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117533,9 +118218,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, @@ -117543,32 +118228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46813] = 9, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [47625] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5112), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5116), 1, - sym__last_token_punctuation, - ACTIONS(5114), 2, + ACTIONS(5076), 1, + aux_sym__newline_token1, + ACTIONS(5132), 1, + sym__block_close, + ACTIONS(5130), 2, sym__word_no_digit, sym__digits, - STATE(1536), 4, + STATE(1332), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117581,6 +118266,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, @@ -117588,7 +118274,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, @@ -117596,32 +118281,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46875] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [47687] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5120), 1, + ACTIONS(5148), 1, sym__block_close, - ACTIONS(5118), 2, + ACTIONS(5144), 2, sym__word_no_digit, sym__digits, - STATE(1290), 4, + STATE(1312), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117642,39 +118327,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46937] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [47749] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5124), 1, + ACTIONS(5152), 1, sym__block_close, - ACTIONS(5122), 2, + ACTIONS(5150), 2, sym__word_no_digit, sym__digits, - STATE(1304), 4, + STATE(1398), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117692,42 +118377,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [46999] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [47811] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5128), 1, + ACTIONS(5154), 1, sym__block_close, - ACTIONS(5126), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1305), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117740,6 +118425,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, @@ -117747,7 +118433,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, @@ -117755,32 +118440,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [47873] = 5, + ACTIONS(379), 1, + aux_sym__whitespace_token1, + ACTIONS(5156), 1, + sym__line_ending, + STATE(1445), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5158), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 37, + sym__block_close, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, - [47061] = 9, - ACTIONS(1710), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5048), 1, + [47927] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5052), 1, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5130), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5134), 1, - sym__last_token_punctuation, - ACTIONS(5132), 2, + ACTIONS(5112), 1, + aux_sym__newline_token1, + ACTIONS(5160), 1, + sym__block_close, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1635), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117808,32 +118542,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47123] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [47989] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5150), 1, + ACTIONS(5162), 1, sym__block_close, - ACTIONS(5146), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1300), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117854,39 +118588,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47185] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [48051] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5154), 1, + ACTIONS(5164), 1, sym__block_close, - ACTIONS(5152), 2, + ACTIONS(5150), 2, sym__word_no_digit, sym__digits, - STATE(1307), 4, + STATE(1398), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117907,39 +118641,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47247] = 9, - ACTIONS(5090), 1, + [48113] = 9, + ACTIONS(5038), 1, anon_sym_LT, - ACTIONS(5092), 1, + ACTIONS(5040), 1, aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5158), 1, + ACTIONS(5166), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117967,32 +118701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47309] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, - sym__whitespace_ge_2, - ACTIONS(5080), 1, + [48175] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, - aux_sym__newline_token1, - ACTIONS(5162), 1, + STATE(1285), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5168), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 38, sym__block_close, - ACTIONS(5160), 2, - sym__word_no_digit, - sym__digits, - STATE(1316), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118005,6 +118729,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, @@ -118020,32 +118745,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47371] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48227] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, + sym__whitespace_ge_2, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5164), 1, + ACTIONS(5171), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5150), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1398), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118066,52 +118795,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47433] = 9, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, + [48289] = 5, + ACTIONS(5173), 1, + sym__line_ending, + STATE(1545), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4593), 1, - aux_sym__newline_token1, - ACTIONS(5018), 1, - anon_sym_RPAREN, - STATE(1641), 1, - sym__newline, - ACTIONS(4583), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1366), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(4591), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4581), 28, + ACTIONS(5175), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -118122,36 +118841,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47495] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48343] = 7, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5168), 1, + ACTIONS(5183), 1, sym__block_close, - ACTIONS(5166), 2, + ACTIONS(5179), 2, sym__word_no_digit, sym__digits, - STATE(1310), 4, + STATE(1355), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(5177), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118176,35 +118898,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47557] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [48401] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5172), 1, + ACTIONS(5187), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5185), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1340), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118222,42 +118945,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47619] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [48463] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5174), 1, + ACTIONS(5191), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5189), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1342), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118270,7 +118993,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, @@ -118278,6 +119000,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, @@ -118285,32 +119008,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47681] = 9, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [48525] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5176), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5180), 1, - sym__last_token_punctuation, - ACTIONS(5178), 2, + ACTIONS(5076), 1, + aux_sym__newline_token1, + ACTIONS(5195), 1, + sym__block_close, + ACTIONS(5193), 2, sym__word_no_digit, sym__digits, - STATE(1477), 4, + STATE(1359), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118323,6 +119046,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, @@ -118330,7 +119054,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, @@ -118338,41 +119061,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47743] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [48587] = 9, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(4565), 1, aux_sym__newline_token1, - ACTIONS(5182), 1, - sym__block_close, - ACTIONS(5170), 2, - sym__word_no_digit, - sym__digits, - STATE(1321), 4, + ACTIONS(4866), 1, + anon_sym_RPAREN, + STATE(1698), 1, + sym__newline, + ACTIONS(4555), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1370), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym_link_title_repeat3, + ACTIONS(4563), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4553), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -118387,45 +119110,45 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47805] = 9, - ACTIONS(5190), 1, - anon_sym_RPAREN, - ACTIONS(5195), 1, + [48649] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5198), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5201), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - STATE(1641), 1, - sym__newline, - ACTIONS(5187), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1281), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5192), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5197), 1, + sym__block_close, + ACTIONS(5150), 2, sym__word_no_digit, sym__digits, - ACTIONS(5184), 28, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -118440,27 +119163,26 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47867] = 5, - ACTIONS(5204), 1, - sym__line_ending, - STATE(1538), 1, + [48711] = 4, + STATE(1297), 1, aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_DASH, + ACTIONS(391), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5206), 3, + ACTIONS(5199), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 36, + ACTIONS(389), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118473,6 +119195,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, @@ -118480,7 +119203,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, @@ -118488,37 +119210,27 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47921] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, - sym__whitespace_ge_2, - ACTIONS(5080), 1, + [48763] = 4, + STATE(1296), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5084), 1, - aux_sym__newline_token1, - ACTIONS(5208), 1, + ACTIONS(5201), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, sym__block_close, - ACTIONS(5160), 2, - sym__word_no_digit, - sym__digits, - STATE(1316), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118531,6 +119243,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, @@ -118538,7 +119251,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, @@ -118546,32 +119258,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [47983] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(5096), 1, - aux_sym__whitespace_token1, - ACTIONS(5100), 1, - aux_sym__newline_token1, - ACTIONS(5210), 1, - sym__block_close, - ACTIONS(5156), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__newline_token1, + [48815] = 4, + STATE(1296), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5203), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118589,9 +119296,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, @@ -118599,29 +119306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48045] = 7, - ACTIONS(5215), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(5218), 1, - aux_sym__whitespace_token1, - ACTIONS(5224), 1, - aux_sym__newline_token1, - ACTIONS(5227), 1, - sym__block_close, - ACTIONS(5221), 2, sym__word_no_digit, sym__digits, - STATE(1285), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5212), 32, + aux_sym__newline_token1, + [48867] = 4, + STATE(1296), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5201), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118642,7 +119347,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, @@ -118650,32 +119354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48103] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(5096), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48919] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, + sym__whitespace_ge_2, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5231), 1, + ACTIONS(5208), 1, sym__block_close, - ACTIONS(5229), 2, + ACTIONS(5206), 2, sym__word_no_digit, sym__digits, - STATE(1287), 4, + STATE(1283), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118693,42 +119402,32 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48165] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, - sym__whitespace_ge_2, - ACTIONS(5096), 1, + [48981] = 4, + STATE(1306), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5100), 1, - aux_sym__newline_token1, - ACTIONS(5233), 1, + ACTIONS(5210), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, sym__block_close, - ACTIONS(5156), 2, - sym__word_no_digit, - sym__digits, - STATE(1315), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118746,42 +119445,37 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48227] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(5080), 1, - aux_sym__whitespace_token1, - ACTIONS(5084), 1, - aux_sym__newline_token1, - ACTIONS(5235), 1, - sym__block_close, - ACTIONS(5160), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__newline_token1, + [49033] = 4, + STATE(1305), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5212), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118794,6 +119488,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, @@ -118805,36 +119500,40 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48289] = 9, - ACTIONS(1710), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [49085] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5237), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5241), 1, - sym__last_token_punctuation, - ACTIONS(5239), 2, + ACTIONS(5048), 1, + aux_sym__newline_token1, + ACTIONS(5216), 1, + sym__block_close, + ACTIONS(5214), 2, sym__word_no_digit, sym__digits, - STATE(1623), 4, + STATE(1372), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118847,11 +119546,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, @@ -118862,32 +119561,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48351] = 9, - ACTIONS(5032), 1, + [49147] = 9, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5068), 1, anon_sym_QMARK_GT, - ACTIONS(5036), 1, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5243), 1, + ACTIONS(5220), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5218), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1282), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118915,32 +119614,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48413] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [49209] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5247), 1, + ACTIONS(5224), 1, sym__block_close, - ACTIONS(5245), 2, + ACTIONS(5222), 2, sym__word_no_digit, sym__digits, - STATE(1277), 4, + STATE(1281), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118953,7 +119652,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, @@ -118965,35 +119663,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48475] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, - sym__whitespace_ge_2, + [49271] = 9, ACTIONS(5038), 1, - aux_sym__whitespace_token1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, ACTIONS(5042), 1, + sym__whitespace_ge_2, + ACTIONS(5044), 1, + aux_sym__whitespace_token1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5251), 1, + ACTIONS(5228), 1, sym__block_close, - ACTIONS(5249), 2, + ACTIONS(5226), 2, sym__word_no_digit, sym__digits, - STATE(1278), 4, + STATE(1389), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119011,9 +119710,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, @@ -119021,32 +119720,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48537] = 9, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, - sym__whitespace_ge_2, - ACTIONS(5054), 1, + [49333] = 4, + STATE(1305), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5253), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5257), 1, - sym__last_token_punctuation, - ACTIONS(5255), 2, - sym__word_no_digit, - sym__digits, - STATE(1507), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + ACTIONS(5230), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119059,6 +119748,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, @@ -119070,36 +119760,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48599] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(5080), 1, - aux_sym__whitespace_token1, - ACTIONS(5084), 1, - aux_sym__newline_token1, - ACTIONS(5261), 1, - sym__block_close, - ACTIONS(5259), 2, sym__word_no_digit, sym__digits, - STATE(1283), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__newline_token1, + [49385] = 4, + STATE(1305), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5212), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119112,6 +119796,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, @@ -119123,36 +119808,40 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48661] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49437] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, + sym__whitespace_ge_2, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5263), 1, + ACTIONS(5235), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5233), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1405), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119165,7 +119854,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, @@ -119177,35 +119865,97 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48723] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [49499] = 17, + ACTIONS(417), 1, + aux_sym__whitespace_token1, + ACTIONS(4523), 1, + aux_sym__html_block_1_token1, + ACTIONS(4525), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4527), 1, + anon_sym_LT_QMARK, + ACTIONS(4529), 1, + aux_sym__html_block_4_token1, + ACTIONS(4531), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4533), 1, + aux_sym__html_block_6_token1, + ACTIONS(4535), 1, + aux_sym__html_block_6_token2, + ACTIONS(4537), 1, + sym__block_quote_start, + ACTIONS(4543), 1, + sym__thematic_break, + ACTIONS(4545), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4547), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4549), 1, + sym__blank_line_start, + ACTIONS(415), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(4539), 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(4567), 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(2146), 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, + [49577] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5267), 1, + ACTIONS(5239), 1, sym__block_close, - ACTIONS(5265), 2, + ACTIONS(5237), 2, sym__word_no_digit, sym__digits, - STATE(1284), 4, + STATE(1279), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119223,9 +119973,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, @@ -119233,32 +119983,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48785] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, - sym__whitespace_ge_2, - ACTIONS(5038), 1, + [49639] = 17, + ACTIONS(736), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4571), 1, + aux_sym__html_block_1_token1, + ACTIONS(4573), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4575), 1, + anon_sym_LT_QMARK, + ACTIONS(4577), 1, + aux_sym__html_block_4_token1, + ACTIONS(4579), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4581), 1, + aux_sym__html_block_6_token1, + ACTIONS(4583), 1, + aux_sym__html_block_6_token2, + ACTIONS(4585), 1, + sym__block_quote_start, + ACTIONS(4589), 1, + sym__thematic_break, + ACTIONS(4591), 1, + sym__blank_line_start, + ACTIONS(734), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5269), 1, + ACTIONS(4587), 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(4521), 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(1925), 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, + [49717] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1322), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5241), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(5040), 2, - sym__word_no_digit, - sym__digits, - STATE(1320), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119279,6 +120080,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, @@ -119286,32 +120088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48847] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49769] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, + sym__whitespace_ge_2, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5271), 1, + ACTIONS(5243), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5150), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1398), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119324,6 +120130,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, @@ -119335,36 +120142,32 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48909] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [49831] = 7, + ACTIONS(5248), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5251), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5257), 1, aux_sym__newline_token1, - ACTIONS(5273), 1, + ACTIONS(5260), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5254), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1313), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(5245), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119382,6 +120185,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, @@ -119392,32 +120196,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [48971] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, - sym__whitespace_ge_2, - ACTIONS(5144), 1, + [49889] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, - aux_sym__newline_token1, - ACTIONS(5275), 1, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4235), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(5170), 2, - sym__word_no_digit, - sym__digits, - STATE(1321), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119442,35 +120236,40 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49033] = 9, - ACTIONS(5138), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49941] = 9, + ACTIONS(5136), 1, anon_sym_RBRACK, - ACTIONS(5140), 1, + ACTIONS(5138), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5279), 1, + ACTIONS(5264), 1, sym__block_close, - ACTIONS(5277), 2, + ACTIONS(5262), 2, sym__word_no_digit, sym__digits, - STATE(1280), 4, + STATE(1278), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119498,38 +120297,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49095] = 7, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [50003] = 7, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(4878), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4872), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4874), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5281), 1, - sym__block_close, - ACTIONS(5062), 2, + STATE(1391), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4876), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1285), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5060), 32, + ACTIONS(4870), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -119544,98 +120344,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49153] = 17, - ACTIONS(483), 1, - aux_sym__whitespace_token1, - ACTIONS(4547), 1, - aux_sym__html_block_1_token1, - ACTIONS(4549), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4551), 1, - anon_sym_LT_QMARK, - ACTIONS(4553), 1, - aux_sym__html_block_4_token1, - ACTIONS(4555), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4557), 1, - aux_sym__html_block_6_token1, - ACTIONS(4559), 1, - aux_sym__html_block_6_token2, - ACTIONS(4561), 1, - sym__block_quote_start, - ACTIONS(4567), 1, - sym__thematic_break, - ACTIONS(4569), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4571), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4573), 1, - sym__blank_line_start, - ACTIONS(481), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4563), 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(4577), 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(2137), 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, - [49231] = 9, - ACTIONS(5090), 1, + [50061] = 9, + ACTIONS(5038), 1, anon_sym_LT, - ACTIONS(5092), 1, + ACTIONS(5040), 1, aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5283), 1, + ACTIONS(5266), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119663,32 +120401,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49293] = 9, - ACTIONS(5074), 1, + [50123] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5285), 1, + ACTIONS(5268), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119716,29 +120454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49355] = 7, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [50185] = 5, + ACTIONS(5270), 1, + sym__line_ending, + STATE(1477), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5289), 1, - sym__block_close, - ACTIONS(5287), 2, - sym__word_no_digit, - sym__digits, - STATE(1302), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5060), 32, + ACTIONS(5272), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119763,36 +120495,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49413] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(5038), 1, - aux_sym__whitespace_token1, - ACTIONS(5042), 1, - aux_sym__newline_token1, - ACTIONS(5291), 1, - sym__block_close, - ACTIONS(5040), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__newline_token1, + [50239] = 4, + ACTIONS(397), 1, + aux_sym__whitespace_token1, + STATE(1320), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5274), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 38, + sym__block_close, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119813,6 +120539,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, @@ -119820,32 +120547,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49475] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [50291] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, + sym__whitespace_ge_2, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5295), 1, + ACTIONS(5279), 1, sym__block_close, - ACTIONS(5293), 2, + ACTIONS(5277), 2, sym__word_no_digit, sym__digits, - STATE(1295), 4, + STATE(1284), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119863,32 +120594,32 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49537] = 4, - ACTIONS(401), 1, + [50353] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(1325), 1, + STATE(1320), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5297), 3, + ACTIONS(4235), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 38, + ACTIONS(402), 38, sym__block_close, - sym__fenced_code_block_end_backtick, + sym__blank_line_start, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119917,36 +120648,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [49589] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [50405] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5299), 1, + ACTIONS(5281), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119967,39 +120698,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49651] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [50467] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5303), 1, + ACTIONS(5283), 1, sym__block_close, - ACTIONS(5301), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1297), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120012,7 +120743,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, @@ -120020,6 +120750,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, @@ -120027,32 +120758,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49713] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [50529] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5307), 1, + ACTIONS(5285), 1, sym__block_close, - ACTIONS(5305), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1298), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120065,11 +120796,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, @@ -120080,41 +120811,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49775] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [50591] = 9, + ACTIONS(5293), 1, + anon_sym_RPAREN, + ACTIONS(5298), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5301), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5304), 1, aux_sym__newline_token1, - ACTIONS(5311), 1, - sym__block_close, - ACTIONS(5309), 2, + STATE(1698), 1, + sym__newline, + ACTIONS(5290), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1326), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(5295), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1299), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + ACTIONS(5287), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -120123,49 +120854,51 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49837] = 7, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(4913), 1, - aux_sym__whitespace_token1, - ACTIONS(4907), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4909), 3, - anon_sym_RPAREN, + [50653] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, + ACTIONS(5142), 1, + aux_sym__whitespace_token1, + ACTIONS(5146), 1, aux_sym__newline_token1, - STATE(1327), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4911), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5309), 1, + sym__block_close, + ACTIONS(5307), 2, sym__word_no_digit, sym__digits, - ACTIONS(4905), 28, + STATE(1365), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -120180,36 +120913,97 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49895] = 9, - ACTIONS(5316), 1, - anon_sym_LT, - ACTIONS(5319), 1, - aux_sym__html_block_1_token2, - ACTIONS(5322), 1, - sym__whitespace_ge_2, - ACTIONS(5325), 1, + [50715] = 17, + ACTIONS(736), 1, aux_sym__whitespace_token1, - ACTIONS(5331), 1, + ACTIONS(4523), 1, + aux_sym__html_block_1_token1, + ACTIONS(4525), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4527), 1, + anon_sym_LT_QMARK, + ACTIONS(4529), 1, + aux_sym__html_block_4_token1, + ACTIONS(4531), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4533), 1, + aux_sym__html_block_6_token1, + ACTIONS(4535), 1, + aux_sym__html_block_6_token2, + ACTIONS(4537), 1, + sym__block_quote_start, + ACTIONS(4543), 1, + sym__thematic_break, + ACTIONS(4545), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4547), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4549), 1, + sym__blank_line_start, + ACTIONS(734), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5334), 1, - sym__block_close, - ACTIONS(5328), 2, + ACTIONS(4539), 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(5311), 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(2142), 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, + [50793] = 9, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, + aux_sym__whitespace_token1, + ACTIONS(5313), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5317), 1, + sym__last_token_punctuation, + ACTIONS(5315), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1482), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5313), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120222,11 +121016,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, @@ -120237,32 +121031,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [49957] = 9, - ACTIONS(5339), 1, + [50855] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5342), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5345), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5348), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5354), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5357), 1, + ACTIONS(5321), 1, sym__block_close, - ACTIONS(5351), 2, + ACTIONS(5319), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1390), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5336), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120290,39 +121084,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50019] = 7, - ACTIONS(5365), 1, - anon_sym_LPAREN, - ACTIONS(5373), 1, - aux_sym__whitespace_token1, - ACTIONS(5362), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5368), 3, - anon_sym_RPAREN, + [50917] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, + ACTIONS(5142), 1, + aux_sym__whitespace_token1, + ACTIONS(5146), 1, aux_sym__newline_token1, - STATE(1317), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5370), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5323), 1, + sym__block_close, + ACTIONS(5150), 2, sym__word_no_digit, sym__digits, - ACTIONS(5359), 28, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -120337,27 +121133,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50077] = 5, - ACTIONS(379), 1, + [50979] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, + sym__whitespace_ge_2, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5375), 1, - sym__line_ending, - STATE(1618), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5377), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, - sym__code_span_close, + ACTIONS(5076), 1, + aux_sym__newline_token1, + ACTIONS(5325), 1, + sym__block_close, + ACTIONS(5074), 2, + sym__word_no_digit, + sym__digits, + STATE(1406), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120378,7 +121183,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, @@ -120386,43 +121190,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [51041] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50131] = 7, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(5383), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(4907), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5379), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, + ACTIONS(5076), 1, aux_sym__newline_token1, - STATE(1317), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5381), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5327), 1, + sym__block_close, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - ACTIONS(4905), 28, + STATE(1406), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -120434,39 +121236,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50189] = 9, - ACTIONS(5388), 1, - anon_sym_QMARK, - ACTIONS(5391), 1, - anon_sym_QMARK_GT, - ACTIONS(5394), 1, + [51103] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5397), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5403), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5406), 1, + ACTIONS(5329), 1, sym__block_close, - ACTIONS(5400), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5385), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120479,7 +121281,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, @@ -120487,6 +121288,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, @@ -120494,32 +121296,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50251] = 9, - ACTIONS(5411), 1, - anon_sym_RBRACK, - ACTIONS(5414), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5417), 1, + [51165] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5420), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5426), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5429), 1, + ACTIONS(5331), 1, sym__block_close, - ACTIONS(5423), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5408), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120537,32 +121339,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50313] = 4, - ACTIONS(391), 1, + [51227] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, + sym__whitespace_ge_2, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - STATE(1365), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5431), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(5076), 1, + aux_sym__newline_token1, + ACTIONS(5335), 1, sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(5333), 2, + sym__word_no_digit, + sym__digits, + STATE(1361), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120583,7 +121395,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, @@ -120591,55 +121402,49 @@ static const uint16_t ts_small_parse_table[] = { 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, - [50365] = 17, - ACTIONS(691), 1, + [51289] = 17, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(4547), 1, + ACTIONS(4059), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4061), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4571), 1, aux_sym__html_block_1_token1, - ACTIONS(4549), 1, + ACTIONS(4573), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4551), 1, + ACTIONS(4575), 1, anon_sym_LT_QMARK, - ACTIONS(4553), 1, + ACTIONS(4577), 1, aux_sym__html_block_4_token1, - ACTIONS(4555), 1, + ACTIONS(4579), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4557), 1, + ACTIONS(4581), 1, aux_sym__html_block_6_token1, - ACTIONS(4559), 1, + ACTIONS(4583), 1, aux_sym__html_block_6_token2, - ACTIONS(4561), 1, + ACTIONS(4585), 1, sym__block_quote_start, - ACTIONS(4567), 1, + ACTIONS(4589), 1, sym__thematic_break, - ACTIONS(4569), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4571), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4573), 1, + ACTIONS(4591), 1, sym__blank_line_start, - ACTIONS(689), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(415), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4563), 6, + ACTIONS(4587), 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(5433), 7, + ACTIONS(4145), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -120647,7 +121452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - STATE(2124), 12, + STATE(1904), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -120660,66 +121465,20 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [50443] = 4, - ACTIONS(391), 1, + [51367] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(1370), 1, + STATE(1285), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5435), 3, + ACTIONS(5337), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(402), 38, sym__block_close, sym__fenced_code_block_end_tilde, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - 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, - [50495] = 4, - ACTIONS(405), 1, - aux_sym__whitespace_token1, - STATE(1325), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5437), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120748,94 +121507,45 @@ static const uint16_t ts_small_parse_table[] = { 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, - [50547] = 7, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(5444), 1, - aux_sym__whitespace_token1, - ACTIONS(4907), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5440), 3, - anon_sym_RPAREN, + [51419] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, + ACTIONS(5142), 1, + aux_sym__whitespace_token1, + ACTIONS(5146), 1, aux_sym__newline_token1, - STATE(1319), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5442), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5341), 1, + sym__block_close, + ACTIONS(5339), 2, sym__word_no_digit, sym__digits, - ACTIONS(4905), 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, + STATE(1364), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [50605] = 7, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(5444), 1, - aux_sym__whitespace_token1, - ACTIONS(4907), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5440), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1317), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5381), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4905), 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, @@ -120850,79 +121560,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50663] = 9, - ACTIONS(5090), 1, + [51481] = 9, + ACTIONS(5038), 1, anon_sym_LT, - ACTIONS(5092), 1, + ACTIONS(5040), 1, aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5448), 1, + ACTIONS(5343), 1, sym__block_close, - ACTIONS(5446), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1404), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(5088), 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_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, + ACTIONS(5036), 31, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [50725] = 4, - ACTIONS(401), 1, - aux_sym__whitespace_token1, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 38, - sym__block_close, - sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120940,7 +121607,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, @@ -120951,26 +121617,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [51543] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50777] = 4, - ACTIONS(405), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5450), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 38, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5347), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5345), 2, + sym__word_no_digit, + sym__digits, + STATE(1331), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120995,30 +121667,35 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [51605] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50829] = 4, - ACTIONS(391), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - STATE(1330), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4241), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(5112), 1, + aux_sym__newline_token1, + ACTIONS(5349), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5116), 2, + sym__word_no_digit, + sym__digits, + STATE(1397), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121031,7 +121708,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, @@ -121047,26 +121723,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [51667] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50881] = 4, - ACTIONS(391), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - STATE(1329), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5453), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(5048), 1, + aux_sym__newline_token1, + ACTIONS(5353), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5351), 2, + sym__word_no_digit, + sym__digits, + STATE(1357), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121084,7 +121766,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, @@ -121095,36 +121776,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [51729] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50933] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, - sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5455), 1, + ACTIONS(5357), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5355), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1333), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121145,29 +121822,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [50995] = 4, - STATE(1338), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_RBRACK, + [51791] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, + sym__whitespace_ge_2, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5457), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 37, + ACTIONS(5112), 1, + aux_sym__newline_token1, + ACTIONS(5361), 1, sym__block_close, + ACTIONS(5359), 2, + sym__word_no_digit, + sym__digits, + STATE(1358), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121180,7 +121867,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, @@ -121192,40 +121878,36 @@ 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, - 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, - [51047] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [51853] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5459), 1, + ACTIONS(5365), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5363), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1334), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121238,7 +121920,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, @@ -121246,6 +121927,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, @@ -121253,32 +121935,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [51109] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [51915] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5461), 1, + ACTIONS(5369), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5367), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1335), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121291,11 +121973,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, @@ -121306,32 +121988,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [51171] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [51977] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5463), 1, + ACTIONS(5373), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5371), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1360), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121349,9 +122031,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, @@ -121359,31 +122041,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [51233] = 4, - STATE(1338), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_RBRACK, + [52039] = 7, + ACTIONS(5381), 1, + anon_sym_LPAREN, + ACTIONS(5389), 1, aux_sym__whitespace_token1, - ACTIONS(5465), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 37, - sym__block_close, + ACTIONS(5378), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5384), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1349), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5386), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5375), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -121398,31 +122088,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [52097] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51285] = 4, - STATE(1338), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5457), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5393), 1, sym__block_close, + ACTIONS(5391), 2, + sym__word_no_digit, + sym__digits, + STATE(1363), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121450,27 +122145,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51337] = 4, - STATE(1334), 1, + [52159] = 5, + ACTIONS(5395), 1, + sym__line_ending, + STATE(1424), 1, aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + ACTIONS(379), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5468), 3, + ACTIONS(5397), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, - sym__block_close, + ACTIONS(377), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121491,34 +122182,34 @@ 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, - anon_sym_LBRACE, 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, - [51389] = 4, - STATE(1342), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_QMARK, + [52213] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - ACTIONS(5470), 3, + STATE(1352), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5399), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 37, + ACTIONS(395), 38, sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121539,6 +122230,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, @@ -121546,27 +122238,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51441] = 4, - STATE(1342), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_QMARK, + [52265] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(5472), 3, + STATE(1285), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5337), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(403), 37, + ACTIONS(389), 38, sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121587,6 +122278,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, @@ -121594,37 +122286,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51493] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, - sym__whitespace_ge_2, - ACTIONS(5144), 1, + [52317] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, - aux_sym__newline_token1, - ACTIONS(5477), 1, + STATE(1338), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5402), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(5475), 2, - sym__word_no_digit, - sym__digits, - STATE(1333), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121649,25 +122330,37 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [51555] = 4, - STATE(1342), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [52369] = 7, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5470), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5406), 1, sym__block_close, + ACTIONS(5404), 2, + sym__word_no_digit, + sym__digits, + STATE(1313), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__indented_chunk_repeat1, + ACTIONS(5177), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121688,6 +122381,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, @@ -121695,36 +122389,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [52427] = 7, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(5412), 1, + aux_sym__whitespace_token1, + ACTIONS(4872), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5408), 3, + anon_sym_RPAREN, sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1349), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5410), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [51607] = 4, - STATE(1341), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5479), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, - sym__block_close, + ACTIONS(4870), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -121736,35 +122433,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [52485] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, + ACTIONS(5044), 1, + aux_sym__whitespace_token1, + ACTIONS(5048), 1, + aux_sym__newline_token1, + ACTIONS(5414), 1, + sym__block_close, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [51659] = 5, - ACTIONS(5481), 1, - sym__line_ending, - STATE(1560), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5483), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 36, + STATE(1394), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121782,9 +122483,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, @@ -121792,37 +122493,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51713] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [52547] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5485), 1, + ACTIONS(5416), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121835,7 +122531,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, @@ -121847,25 +122542,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [51775] = 4, - STATE(1349), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_DASH, + [52609] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, + sym__whitespace_ge_2, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5487), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 37, + ACTIONS(5076), 1, + aux_sym__newline_token1, + ACTIONS(5418), 1, sym__block_close, + ACTIONS(5074), 2, + sym__word_no_digit, + sym__digits, + STATE(1406), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121878,6 +122584,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, @@ -121885,7 +122592,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, @@ -121893,27 +122599,32 @@ static const uint16_t ts_small_parse_table[] = { 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, + [52671] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51827] = 4, - STATE(1349), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_DASH, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5489), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 37, + ACTIONS(5076), 1, + aux_sym__newline_token1, + ACTIONS(5420), 1, sym__block_close, + ACTIONS(5074), 2, + sym__word_no_digit, + sym__digits, + STATE(1406), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121926,6 +122637,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, @@ -121933,7 +122645,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, @@ -121941,37 +122652,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51879] = 9, - ACTIONS(5032), 1, + [52733] = 9, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5068), 1, anon_sym_QMARK_GT, - ACTIONS(5036), 1, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5494), 1, + ACTIONS(5422), 1, sym__block_close, - ACTIONS(5492), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1335), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121999,32 +122705,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [51941] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [52795] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5498), 1, + ACTIONS(5426), 1, sym__block_close, - ACTIONS(5496), 2, + ACTIONS(5424), 2, sym__word_no_digit, sym__digits, - STATE(1336), 4, + STATE(1286), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122037,6 +122743,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, @@ -122048,26 +122755,35 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52003] = 4, - STATE(1349), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, + [52857] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, + sym__whitespace_ge_2, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5487), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5428), 1, sym__block_close, + ACTIONS(5150), 2, + sym__word_no_digit, + sym__digits, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122080,6 +122796,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, @@ -122091,31 +122808,35 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + [52919] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [52055] = 4, - STATE(1348), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5500), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5430), 1, sym__block_close, + ACTIONS(5150), 2, + sym__word_no_digit, + sym__digits, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122128,6 +122849,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, @@ -122139,31 +122861,35 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + [52981] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [52107] = 4, - STATE(1355), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_LT, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5502), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 37, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5432), 1, sym__block_close, + ACTIONS(5150), 2, + sym__word_no_digit, + sym__digits, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122181,37 +122907,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + [53043] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [52159] = 4, - STATE(1355), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_LT, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5504), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 37, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5436), 1, sym__block_close, + ACTIONS(5434), 2, + sym__word_no_digit, + sym__digits, + STATE(1293), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122229,37 +122960,33 @@ 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, - 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, - [52211] = 4, - STATE(1355), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_LT, + [53105] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(5502), 3, + ACTIONS(5438), 1, + sym__line_ending, + STATE(1623), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5440), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, - sym__block_close, + ACTIONS(377), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122277,6 +123004,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, @@ -122287,37 +123015,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52263] = 9, - ACTIONS(5032), 1, + [53159] = 9, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5068), 1, anon_sym_QMARK_GT, - ACTIONS(5036), 1, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5507), 1, + ACTIONS(5444), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5442), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1268), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122345,22 +123072,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52325] = 4, - STATE(1354), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_LT, + [53221] = 9, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5509), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, - sym__block_close, + ACTIONS(5446), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5450), 1, + sym__last_token_punctuation, + ACTIONS(5448), 2, + sym__word_no_digit, + sym__digits, + STATE(1558), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122373,11 +123110,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, @@ -122388,36 +123125,41 @@ static const uint16_t ts_small_parse_table[] = { 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, + [53283] = 9, + ACTIONS(4119), 1, sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4565), 1, + aux_sym__newline_token1, + ACTIONS(4818), 1, + anon_sym_RPAREN, + STATE(1698), 1, + sym__newline, + ACTIONS(4555), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1326), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(5452), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [52377] = 4, - ACTIONS(391), 1, - aux_sym__whitespace_token1, - STATE(1325), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5297), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(4553), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -122432,41 +123174,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [53345] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [52429] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, - sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5511), 1, + ACTIONS(5456), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5454), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1323), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122479,6 +123216,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, @@ -122486,7 +123224,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, @@ -122494,22 +123231,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52491] = 4, - ACTIONS(391), 1, + [53407] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, + sym__whitespace_ge_2, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - STATE(1309), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5513), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(5048), 1, + aux_sym__newline_token1, + ACTIONS(5458), 1, sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(5126), 2, + sym__word_no_digit, + sym__digits, + STATE(1394), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122527,7 +123274,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, @@ -122538,36 +123284,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52543] = 9, - ACTIONS(5074), 1, + [53469] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5517), 1, + ACTIONS(5462), 1, sym__block_close, - ACTIONS(5515), 2, + ACTIONS(5460), 2, sym__word_no_digit, sym__digits, - STATE(1399), 4, + STATE(1324), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122595,32 +123337,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52605] = 9, - ACTIONS(5090), 1, + [53531] = 9, + ACTIONS(5038), 1, anon_sym_LT, - ACTIONS(5092), 1, + ACTIONS(5040), 1, aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5519), 1, + ACTIONS(5466), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5464), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1325), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122648,32 +123390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52667] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [53593] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5523), 1, + ACTIONS(5470), 1, sym__block_close, - ACTIONS(5521), 2, + ACTIONS(5468), 2, sym__word_no_digit, sym__digits, - STATE(1396), 4, + STATE(1273), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122686,7 +123428,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, @@ -122694,6 +123435,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, @@ -122701,22 +123443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52729] = 4, - ACTIONS(401), 1, + [53655] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(1370), 1, + STATE(1352), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5435), 3, + ACTIONS(5472), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 38, + ACTIONS(402), 38, sym__block_close, - sym__fenced_code_block_end_tilde, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122745,45 +123487,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52781] = 9, - ACTIONS(4231), 1, + [53707] = 7, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4593), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(4786), 1, - anon_sym_RPAREN, - STATE(1641), 1, - sym__newline, - ACTIONS(4583), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1281), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5525), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5476), 1, + sym__block_close, + ACTIONS(5474), 2, sym__word_no_digit, sym__digits, - ACTIONS(4581), 28, + STATE(1378), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__indented_chunk_repeat1, + ACTIONS(5177), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -122798,36 +123537,34 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52843] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [53765] = 7, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5529), 1, + ACTIONS(5478), 1, sym__block_close, - ACTIONS(5527), 2, + ACTIONS(5404), 2, sym__word_no_digit, sym__digits, - STATE(1378), 4, + STATE(1313), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(5177), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122845,6 +123582,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, @@ -122855,32 +123593,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52905] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, - sym__whitespace_ge_2, - ACTIONS(5096), 1, + [53823] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, - aux_sym__newline_token1, - ACTIONS(5533), 1, + STATE(1352), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5472), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(5531), 2, - sym__word_no_digit, - sym__digits, - STATE(1337), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122898,6 +123626,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, @@ -122908,32 +123637,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [52967] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, - aux_sym__whitespace_token1, - ACTIONS(5084), 1, - aux_sym__newline_token1, - ACTIONS(5537), 1, - sym__block_close, - ACTIONS(5535), 2, sym__word_no_digit, sym__digits, - STATE(1379), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__newline_token1, + [53875] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1376), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5480), 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_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122946,6 +123669,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, @@ -122961,22 +123685,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53029] = 4, - ACTIONS(405), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [53927] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, + sym__whitespace_ge_2, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - STATE(1370), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5539), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 38, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5482), 1, sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(5150), 2, + sym__word_no_digit, + sym__digits, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123001,40 +123739,35 @@ 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, - 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, - [53081] = 9, - ACTIONS(5032), 1, + [53989] = 9, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5068), 1, anon_sym_QMARK_GT, - ACTIONS(5036), 1, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5544), 1, + ACTIONS(5484), 1, sym__block_close, - ACTIONS(5542), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1380), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123062,32 +123795,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53143] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [54051] = 9, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, - aux_sym__newline_token1, - ACTIONS(5548), 1, - sym__block_close, - ACTIONS(5546), 2, + ACTIONS(5486), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5490), 1, + sym__last_token_punctuation, + ACTIONS(5488), 2, sym__word_no_digit, sym__digits, - STATE(1382), 4, + STATE(1520), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123100,7 +123833,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, @@ -123112,35 +123844,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53205] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [54113] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5552), 1, + ACTIONS(5492), 1, sym__block_close, - ACTIONS(5550), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1347), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123153,7 +123886,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, @@ -123165,35 +123897,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53267] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [54175] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5554), 1, + ACTIONS(5494), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123211,42 +123944,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53329] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, - sym__whitespace_ge_2, + [54237] = 9, ACTIONS(5038), 1, - aux_sym__whitespace_token1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, ACTIONS(5042), 1, + sym__whitespace_ge_2, + ACTIONS(5044), 1, + aux_sym__whitespace_token1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5558), 1, + ACTIONS(5498), 1, sym__block_close, - ACTIONS(5556), 2, + ACTIONS(5496), 2, sym__word_no_digit, sym__digits, - STATE(1357), 4, + STATE(1407), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123264,9 +123997,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, @@ -123274,32 +124007,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53391] = 9, - ACTIONS(5074), 1, + [54299] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5562), 1, + ACTIONS(5502), 1, sym__block_close, - ACTIONS(5560), 2, + ACTIONS(5500), 2, sym__word_no_digit, sym__digits, - STATE(1360), 4, + STATE(1404), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123327,32 +124060,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53453] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [54361] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5566), 1, + ACTIONS(5506), 1, sym__block_close, - ACTIONS(5564), 2, + ACTIONS(5504), 2, sym__word_no_digit, sym__digits, - STATE(1363), 4, + STATE(1403), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123370,9 +124103,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, @@ -123380,32 +124113,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53515] = 9, - ACTIONS(5090), 1, + [54423] = 9, + ACTIONS(5038), 1, anon_sym_LT, - ACTIONS(5092), 1, + ACTIONS(5040), 1, aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5568), 1, + ACTIONS(5508), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123433,32 +124166,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53577] = 9, - ACTIONS(5074), 1, + [54485] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5570), 1, + ACTIONS(5510), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123486,41 +124219,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53639] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, - sym__whitespace_ge_2, - ACTIONS(5038), 1, + [54547] = 7, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(4872), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5512), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5572), 1, - sym__block_close, - ACTIONS(5040), 2, + STATE(1349), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5410), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1320), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(4870), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -123532,97 +124263,46 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53701] = 5, - ACTIONS(5574), 1, - sym__line_ending, - STATE(1472), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_RBRACK, + [54605] = 7, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, aux_sym__whitespace_token1, - ACTIONS(5576), 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, + ACTIONS(4872), 2, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_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, - [53755] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + ACTIONS(5512), 3, + anon_sym_RPAREN, sym__whitespace_ge_2, - ACTIONS(5144), 1, - aux_sym__whitespace_token1, - ACTIONS(5148), 1, aux_sym__newline_token1, - ACTIONS(5578), 1, - sym__block_close, - ACTIONS(5170), 2, + STATE(1356), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5516), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1321), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + ACTIONS(4870), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -123637,36 +124317,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53817] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [54663] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5580), 1, + ACTIONS(5520), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5518), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1385), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123679,11 +124359,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, @@ -123694,32 +124374,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53879] = 9, - ACTIONS(5090), 1, + [54725] = 9, + ACTIONS(5525), 1, anon_sym_LT, - ACTIONS(5092), 1, + ACTIONS(5528), 1, aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + ACTIONS(5531), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5534), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5540), 1, aux_sym__newline_token1, - ACTIONS(5582), 1, + ACTIONS(5543), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5537), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + ACTIONS(5522), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123747,32 +124427,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [53941] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, + [54787] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5586), 1, + ACTIONS(5547), 1, sym__block_close, - ACTIONS(5584), 2, + ACTIONS(5545), 2, sym__word_no_digit, sym__digits, - STATE(1394), 4, + STATE(1402), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123790,42 +124470,42 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54003] = 9, - ACTIONS(5074), 1, + [54849] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5590), 1, + ACTIONS(5551), 1, sym__block_close, - ACTIONS(5588), 2, + ACTIONS(5549), 2, sym__word_no_digit, sym__digits, - STATE(1395), 4, + STATE(1384), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123853,32 +124533,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54065] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [54911] = 9, + ACTIONS(5556), 1, + anon_sym_DASH, + ACTIONS(5559), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5562), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5565), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5571), 1, aux_sym__newline_token1, - ACTIONS(5594), 1, + ACTIONS(5574), 1, sym__block_close, - ACTIONS(5592), 2, + ACTIONS(5568), 2, sym__word_no_digit, sym__digits, STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5553), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123891,7 +124571,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, @@ -123899,6 +124578,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, @@ -123906,24 +124586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54127] = 9, - ACTIONS(5138), 1, + [54973] = 9, + ACTIONS(5579), 1, anon_sym_RBRACK, - ACTIONS(5140), 1, + ACTIONS(5582), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + ACTIONS(5585), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5588), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5594), 1, aux_sym__newline_token1, - ACTIONS(5598), 1, + ACTIONS(5597), 1, sym__block_close, - ACTIONS(5596), 2, + ACTIONS(5591), 2, sym__word_no_digit, sym__digits, STATE(1398), 4, @@ -123931,7 +124609,9 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + ACTIONS(5576), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123959,32 +124639,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54189] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [55035] = 9, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, - aux_sym__newline_token1, - ACTIONS(5600), 1, - sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5599), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5603), 1, + sym__last_token_punctuation, + ACTIONS(5601), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1552), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123997,7 +124677,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, @@ -124009,35 +124688,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54251] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [55097] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5604), 1, + ACTIONS(5607), 1, sym__block_close, - ACTIONS(5602), 2, + ACTIONS(5605), 2, sym__word_no_digit, sym__digits, - STATE(1389), 4, + STATE(1382), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124058,39 +124738,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54313] = 9, - ACTIONS(5138), 1, + [55159] = 9, + ACTIONS(5136), 1, anon_sym_RBRACK, - ACTIONS(5140), 1, + ACTIONS(5138), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5146), 1, aux_sym__newline_token1, - ACTIONS(5608), 1, + ACTIONS(5611), 1, sym__block_close, - ACTIONS(5606), 2, + ACTIONS(5609), 2, sym__word_no_digit, sym__digits, - STATE(1374), 4, + STATE(1381), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124118,84 +124798,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54375] = 17, - ACTIONS(483), 1, - aux_sym__whitespace_token1, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4521), 1, - aux_sym__html_block_1_token1, - ACTIONS(4523), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4525), 1, - anon_sym_LT_QMARK, - ACTIONS(4527), 1, - aux_sym__html_block_4_token1, - ACTIONS(4529), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4531), 1, - aux_sym__html_block_6_token1, - ACTIONS(4533), 1, - aux_sym__html_block_6_token2, - ACTIONS(4535), 1, - sym__block_quote_start, - ACTIONS(4539), 1, - sym__thematic_break, - ACTIONS(4541), 1, - sym__blank_line_start, - ACTIONS(481), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + [55221] = 9, + ACTIONS(5136), 1, + anon_sym_RBRACK, + ACTIONS(5138), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5140), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4537), 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(4199), 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(1918), 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, - [54453] = 5, - ACTIONS(379), 1, + ACTIONS(5142), 1, aux_sym__whitespace_token1, - ACTIONS(5610), 1, - sym__line_ending, - STATE(1426), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5612), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, + ACTIONS(5146), 1, + aux_sym__newline_token1, + ACTIONS(5613), 1, sym__block_close, + ACTIONS(5150), 2, + sym__word_no_digit, + sym__digits, + STATE(1398), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5134), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124220,40 +124848,35 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [55283] = 9, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_QMARK_GT, + ACTIONS(5070), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [54507] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, - sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5072), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(5076), 1, aux_sym__newline_token1, - ACTIONS(5614), 1, + ACTIONS(5615), 1, sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5064), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124271,9 +124894,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, @@ -124281,32 +124904,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54569] = 9, - ACTIONS(5074), 1, + [55345] = 9, + ACTIONS(5102), 1, anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5616), 1, + ACTIONS(5617), 1, sym__block_close, - ACTIONS(5160), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124334,32 +124957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54631] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [55407] = 9, + ACTIONS(5102), 1, + anon_sym_DASH, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5108), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5112), 1, aux_sym__newline_token1, - ACTIONS(5618), 1, + ACTIONS(5619), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5116), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1397), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(5100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124372,7 +124995,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, @@ -124380,6 +125002,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, @@ -124387,32 +125010,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54693] = 9, - ACTIONS(5032), 1, + [55469] = 9, + ACTIONS(5624), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5627), 1, anon_sym_QMARK_GT, - ACTIONS(5036), 1, + ACTIONS(5630), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(5633), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(5639), 1, aux_sym__newline_token1, - ACTIONS(5620), 1, + ACTIONS(5642), 1, sym__block_close, - ACTIONS(5040), 2, + ACTIONS(5636), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1406), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + ACTIONS(5621), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124440,32 +125063,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54755] = 9, - ACTIONS(5138), 1, - anon_sym_RBRACK, - ACTIONS(5140), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5142), 1, + [55531] = 9, + ACTIONS(5038), 1, + anon_sym_LT, + ACTIONS(5040), 1, + aux_sym__html_block_1_token2, + ACTIONS(5042), 1, sym__whitespace_ge_2, - ACTIONS(5144), 1, + ACTIONS(5044), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5048), 1, aux_sym__newline_token1, - ACTIONS(5622), 1, + ACTIONS(5644), 1, sym__block_close, - ACTIONS(5170), 2, + ACTIONS(5126), 2, sym__word_no_digit, sym__digits, - STATE(1321), 4, + STATE(1394), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(5136), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5036), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124483,42 +125106,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54817] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [55593] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5624), 1, + ACTIONS(5648), 1, sym__block_close, - ACTIONS(5160), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5646), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1526), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124531,6 +125151,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, @@ -124546,32 +125167,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54879] = 9, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_QMARK_GT, - ACTIONS(5036), 1, + [55652] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5038), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5042), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5628), 1, + ACTIONS(4412), 1, sym__block_close, - ACTIONS(5626), 2, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1257), 4, + STATE(1564), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5030), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124592,6 +125210,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, @@ -124599,32 +125218,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [54941] = 9, - ACTIONS(5074), 1, - anon_sym_DASH, - ACTIONS(5076), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5078), 1, + [55711] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5080), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5084), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5632), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5660), 1, sym__block_close, - ACTIONS(5630), 2, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - STATE(1383), 4, + STATE(1565), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5072), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124637,13 +125254,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, @@ -124652,93 +125269,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55003] = 17, - ACTIONS(691), 1, - aux_sym__whitespace_token1, - ACTIONS(4125), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4127), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4521), 1, - aux_sym__html_block_1_token1, - ACTIONS(4523), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4525), 1, - anon_sym_LT_QMARK, - ACTIONS(4527), 1, - aux_sym__html_block_4_token1, - ACTIONS(4529), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4531), 1, - aux_sym__html_block_6_token1, - ACTIONS(4533), 1, - aux_sym__html_block_6_token2, - ACTIONS(4535), 1, - sym__block_quote_start, - ACTIONS(4539), 1, - sym__thematic_break, - ACTIONS(4541), 1, - sym__blank_line_start, - ACTIONS(689), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + [55770] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4537), 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(4595), 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(1924), 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, - [55081] = 9, - ACTIONS(5090), 1, - anon_sym_LT, - ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, - sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5636), 1, + ACTIONS(5664), 1, sym__block_close, - ACTIONS(5634), 2, + STATE(1711), 1, + sym__newline, + ACTIONS(5662), 2, sym__word_no_digit, sym__digits, - STATE(1384), 4, + STATE(1449), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124756,6 +125309,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, @@ -124766,32 +125320,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55143] = 9, - ACTIONS(5090), 1, - anon_sym_LT, + [55829] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, ACTIONS(5092), 1, - aux_sym__html_block_1_token2, - ACTIONS(5094), 1, sym__whitespace_ge_2, - ACTIONS(5096), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5100), 1, - aux_sym__newline_token1, - ACTIONS(5638), 1, - sym__block_close, - ACTIONS(5156), 2, + ACTIONS(5313), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1568), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5088), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124804,11 +125356,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, @@ -124819,21 +125371,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55205] = 4, - ACTIONS(964), 1, + [55888] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(962), 37, - sym__code_span_close, + ACTIONS(5313), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5315), 2, + sym__word_no_digit, + sym__digits, + STATE(1482), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124846,7 +125407,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, @@ -124862,27 +125422,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [55947] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5670), 1, + anon_sym_DQUOTE, + ACTIONS(5672), 1, sym__whitespace_ge_2, + ACTIONS(5674), 1, + aux_sym__whitespace_token1, + STATE(2220), 1, + sym__newline, + ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [55256] = 4, - STATE(1529), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5642), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + STATE(1421), 4, + sym__soft_line_break, + sym__whitespace, + sym__word, + aux_sym__attribute_value_repeat2, + ACTIONS(5668), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -124901,6 +125465,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, @@ -124908,42 +125473,36 @@ static const uint16_t ts_small_parse_table[] = { 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, + [56006] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [55307] = 8, - ACTIONS(5647), 1, - anon_sym_RBRACK, - ACTIONS(5650), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5652), 1, + ACTIONS(5670), 1, + anon_sym_SQUOTE, + ACTIONS(5672), 1, sym__whitespace_ge_2, - ACTIONS(5655), 1, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - ACTIONS(5661), 1, - aux_sym__newline_token1, - ACTIONS(5658), 2, + STATE(2220), 1, + sym__newline, + ACTIONS(5680), 2, sym__word_no_digit, sym__digits, - STATE(1407), 4, + STATE(1423), 4, + sym__soft_line_break, sym__whitespace, sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(5644), 31, + aux_sym__attribute_value_repeat1, + ACTIONS(5678), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -124961,32 +125520,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55366] = 8, - ACTIONS(4213), 1, + [56065] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5666), 1, + ACTIONS(5684), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5664), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1428), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125015,22 +125575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55425] = 5, + [56124] = 5, ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(5668), 1, + ACTIONS(5686), 1, sym__line_ending, - STATE(1645), 1, + STATE(1646), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5670), 3, + ACTIONS(5688), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, ACTIONS(377), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125059,33 +125619,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55478] = 8, - ACTIONS(4213), 1, + [56177] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4413), 1, + ACTIONS(5690), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125114,29 +125674,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55537] = 8, - ACTIONS(4213), 1, + [56236] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5678), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5694), 1, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + ACTIONS(5692), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1468), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125156,7 +125717,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, @@ -125165,30 +125725,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55596] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [56295] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5680), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4368), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, + STATE(1564), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125201,6 +125760,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, @@ -125216,31 +125776,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55655] = 8, - ACTIONS(4213), 1, + [56354] = 8, + ACTIONS(5699), 1, + anon_sym_DQUOTE, + ACTIONS(5701), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5704), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5710), 1, aux_sym__newline_token1, - ACTIONS(5684), 1, - sym__block_close, - STATE(1716), 1, + STATE(2220), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5707), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1421), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__attribute_value_repeat2, + ACTIONS(5696), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -125267,36 +125827,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [56413] = 4, + STATE(1422), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(397), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5713), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 36, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, - [55714] = 8, - ACTIONS(4213), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [56464] = 8, + ACTIONS(5719), 1, + anon_sym_SQUOTE, + ACTIONS(5721), 1, + sym__whitespace_ge_2, + ACTIONS(5724), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5730), 1, aux_sym__newline_token1, - ACTIONS(5686), 1, - sym__block_close, - STATE(1716), 1, + STATE(2220), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5727), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1423), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5716), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -125318,29 +125925,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [56523] = 4, + STATE(1422), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5733), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, - [55773] = 8, - ACTIONS(4213), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [56574] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5684), 1, + ACTIONS(5735), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5688), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1574), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125369,30 +126023,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55832] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [56633] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5690), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5739), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5737), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, + STATE(1425), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125405,6 +126058,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, @@ -125420,21 +126074,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [55891] = 4, - STATE(1417), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_QMARK, + [56692] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5692), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 36, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5739), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, + sym__word_no_digit, + sym__digits, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125455,6 +126117,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, @@ -125462,34 +126125,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55942] = 8, - ACTIONS(4213), 1, + [56751] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5695), 1, + ACTIONS(5741), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125518,29 +126176,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56001] = 8, - ACTIONS(4213), 1, + [56810] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5699), 1, + ACTIONS(5741), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5697), 2, + ACTIONS(5743), 2, sym__word_no_digit, sym__digits, - STATE(1418), 3, + STATE(1427), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125569,29 +126227,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56060] = 8, - ACTIONS(4213), 1, + [56869] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5699), 1, + ACTIONS(4432), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125620,29 +126278,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56119] = 8, - ACTIONS(4213), 1, + [56928] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5701), 1, + ACTIONS(5745), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125671,29 +126329,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56178] = 8, - ACTIONS(4213), 1, + [56987] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5701), 1, + ACTIONS(5749), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5703), 2, + ACTIONS(5747), 2, sym__word_no_digit, sym__digits, - STATE(1420), 3, + STATE(1431), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125722,29 +126380,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56237] = 8, - ACTIONS(4213), 1, + [57046] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4333), 1, + ACTIONS(5749), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125773,29 +126431,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56296] = 8, - ACTIONS(4213), 1, + [57105] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5707), 1, + ACTIONS(5751), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5705), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1433), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125824,21 +126482,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56355] = 4, - ACTIONS(401), 1, - aux_sym__whitespace_token1, - STATE(1552), 1, + [57164] = 4, + STATE(1422), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5709), 3, + ACTIONS(404), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5733), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 37, - sym__block_close, + ACTIONS(402), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125859,7 +126517,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, @@ -125867,25 +126524,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [56406] = 4, - ACTIONS(391), 1, + [57215] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1552), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5709), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4470), 1, sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, + sym__word_no_digit, + sym__digits, + STATE(1564), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125914,34 +126580,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [57274] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [56457] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5717), 1, + ACTIONS(5751), 1, sym__block_close, - ACTIONS(5715), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5753), 2, sym__word_no_digit, sym__digits, - STATE(1461), 4, + STATE(1433), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125961,6 +126622,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, @@ -125969,29 +126631,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56516] = 8, - ACTIONS(4213), 1, + [57333] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5719), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5755), 1, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1565), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126011,7 +126674,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, @@ -126020,29 +126682,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56575] = 8, - ACTIONS(4213), 1, + [57392] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4339), 1, + ACTIONS(4334), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126071,21 +126733,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56634] = 4, - ACTIONS(391), 1, - aux_sym__whitespace_token1, - STATE(1425), 1, + [57451] = 4, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5721), 3, + ACTIONS(397), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5757), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(395), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, + anon_sym_TILDE, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [57502] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4306), 1, sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, + sym__word_no_digit, + sym__digits, + STATE(1564), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126114,34 +126831,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [56685] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [57561] = 4, + STATE(1435), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5725), 1, - sym__block_close, - ACTIONS(5723), 2, - sym__word_no_digit, - sym__digits, - STATE(1612), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + ACTIONS(5760), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126161,7 +126865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -126169,29 +126873,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56744] = 8, - ACTIONS(4213), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [57612] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5719), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5762), 1, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5727), 2, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - STATE(1434), 3, + STATE(1565), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126211,7 +126921,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, @@ -126220,29 +126929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56803] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [57671] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5729), 1, + STATE(1480), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5764), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126271,29 +126972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56862] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5731), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [57722] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1585), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5766), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126322,31 +127019,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56921] = 8, - ACTIONS(41), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5735), 1, - anon_sym_DQUOTE, - ACTIONS(5737), 1, + [57773] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5739), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(2208), 1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5770), 1, + sym__block_close, + STATE(1711), 1, sym__newline, - ACTIONS(5741), 2, + ACTIONS(5768), 2, sym__word_no_digit, sym__digits, - STATE(1550), 4, - sym__soft_line_break, + STATE(1436), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5733), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -126373,29 +127074,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [56980] = 8, - ACTIONS(4213), 1, + [57832] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5745), 1, + ACTIONS(5774), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5743), 2, + ACTIONS(5772), 2, sym__word_no_digit, sym__digits, - STATE(1442), 3, + STATE(1418), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126424,30 +127125,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57039] = 8, - ACTIONS(4213), 1, + [57891] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, + ACTIONS(5656), 1, anon_sym_GT, - ACTIONS(5747), 1, + ACTIONS(5778), 1, sym__block_close, - ACTIONS(5723), 2, + ACTIONS(5776), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1438), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126475,82 +127176,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57098] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym__soft_line_break, - STATE(2170), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 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, - [57161] = 8, - ACTIONS(4213), 1, + [57950] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5751), 1, + ACTIONS(4276), 1, sym__block_close, - STATE(1748), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5749), 2, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1429), 3, + STATE(1564), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126579,21 +127227,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57220] = 4, - ACTIONS(897), 1, + [58009] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(895), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5782), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5780), 2, + sym__word_no_digit, + sym__digits, + STATE(1420), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126622,34 +127278,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + [58068] = 8, + ACTIONS(3190), 1, aux_sym__newline_token1, - [57271] = 8, - ACTIONS(4213), 1, + ACTIONS(3247), 1, + anon_sym_RBRACK, + ACTIONS(5784), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5786), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5788), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5755), 1, - sym__block_close, - ACTIONS(5753), 2, + ACTIONS(5790), 2, sym__word_no_digit, sym__digits, - STATE(1431), 4, + STATE(1473), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(3245), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126669,37 +127321,38 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57330] = 8, - ACTIONS(4213), 1, + [58127] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(4453), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5794), 1, sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, + ACTIONS(5792), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1458), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126719,7 +127372,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, @@ -126728,29 +127380,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57389] = 8, - ACTIONS(4213), 1, + [58186] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5759), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5798), 1, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5757), 2, + ACTIONS(5796), 2, sym__word_no_digit, sym__digits, - STATE(1493), 3, + STATE(1410), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126770,7 +127423,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, @@ -126779,29 +127431,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57448] = 8, - ACTIONS(4213), 1, + [58245] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4472), 1, + ACTIONS(5802), 1, sym__block_close, - STATE(1716), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5800), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1466), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126830,21 +127482,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57507] = 4, - ACTIONS(897), 1, + [58304] = 8, + ACTIONS(3209), 1, + aux_sym__newline_token1, + ACTIONS(5804), 1, + anon_sym_QMARK, + ACTIONS(5806), 1, + anon_sym_QMARK_GT, + ACTIONS(5808), 1, + sym__whitespace_ge_2, + ACTIONS(5810), 1, aux_sym__whitespace_token1, - STATE(1520), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5761), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(895), 37, - sym__code_span_close, + ACTIONS(5812), 2, + sym__word_no_digit, + sym__digits, + STATE(1563), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(3225), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126865,7 +127526,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, @@ -126873,34 +127533,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + [58363] = 8, + ACTIONS(1758), 1, aux_sym__newline_token1, - [57558] = 8, - ACTIONS(4213), 1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5765), 1, - sym__block_close, - ACTIONS(5763), 2, + ACTIONS(5120), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5122), 2, sym__word_no_digit, sym__digits, - STATE(1437), 4, + STATE(1412), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126913,13 +127569,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, @@ -126928,35 +127584,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57617] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [58422] = 6, + ACTIONS(5825), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5819), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1457), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(5814), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5769), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5767), 2, + ACTIONS(5822), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1410), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + ACTIONS(5816), 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, @@ -126974,34 +127629,34 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57676] = 8, - ACTIONS(4213), 1, + [58477] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5773), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5827), 1, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5771), 2, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - STATE(1463), 3, + STATE(1565), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127021,7 +127676,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, @@ -127030,29 +127684,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57735] = 8, - ACTIONS(4213), 1, + [58536] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5773), 1, + ACTIONS(5829), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127081,74 +127735,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57794] = 10, - ACTIONS(4231), 1, + [58595] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1760), 1, - sym__whitespace, - STATE(2170), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5833), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5831), 2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 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, + STATE(1459), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [57857] = 4, - ACTIONS(1008), 1, - aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1006), 37, - sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127177,33 +127786,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [58654] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [57908] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5775), 1, + ACTIONS(5833), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127232,29 +127837,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [57967] = 8, - ACTIONS(4213), 1, + [58713] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5779), 1, + ACTIONS(5835), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5777), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1452), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127283,29 +127888,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58026] = 8, - ACTIONS(4213), 1, + [58772] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5779), 1, + ACTIONS(5835), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5837), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1461), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127334,29 +127939,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58085] = 8, - ACTIONS(4213), 1, + [58831] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5781), 1, + ACTIONS(4402), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127385,29 +127990,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58144] = 8, - ACTIONS(4213), 1, + [58890] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5781), 1, + ACTIONS(5774), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5783), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1454), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127436,29 +128041,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58203] = 8, - ACTIONS(4213), 1, + [58949] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4385), 1, + ACTIONS(4396), 1, sym__block_close, - STATE(1716), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1564), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127487,21 +128092,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58262] = 4, - ACTIONS(857), 1, + [59008] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(855), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4390), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, + sym__word_no_digit, + sym__digits, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127530,25 +128143,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [59067] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5839), 1, + sym__block_close, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [58313] = 4, - ACTIONS(857), 1, - aux_sym__whitespace_token1, - STATE(1405), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5785), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(855), 37, - sym__code_span_close, + STATE(1565), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127568,7 +128186,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, @@ -127577,25 +128194,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [59126] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5843), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5841), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [58364] = 4, - ACTIONS(809), 1, - aux_sym__whitespace_token1, - STATE(1558), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5787), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(807), 37, - sym__code_span_close, + STATE(1416), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127624,34 +128245,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [59185] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [58415] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5789), 1, + ACTIONS(5648), 1, sym__block_close, - ACTIONS(5723), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127671,6 +128287,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, @@ -127679,29 +128296,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58474] = 8, - ACTIONS(4213), 1, + [59244] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4397), 1, + ACTIONS(5843), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127730,29 +128347,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58533] = 8, - ACTIONS(4213), 1, + [59303] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5791), 1, + ACTIONS(4296), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127781,30 +128398,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58592] = 8, - ACTIONS(4213), 1, + [59362] = 8, + ACTIONS(5848), 1, + anon_sym_RBRACK, + ACTIONS(5851), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5853), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5856), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(5862), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5793), 1, - sym__block_close, - ACTIONS(5723), 2, + ACTIONS(5859), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1473), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(5845), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127824,44 +128441,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58651] = 8, - ACTIONS(4213), 1, + [59421] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5672), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5791), 1, - sym__block_close, - STATE(1716), 1, + ACTIONS(5865), 1, + anon_sym_SQUOTE, + STATE(2220), 1, sym__newline, - ACTIONS(5795), 2, + ACTIONS(5867), 2, sym__word_no_digit, sym__digits, - STATE(1467), 3, + STATE(1415), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5678), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -127883,23 +128500,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58710] = 4, - ACTIONS(837), 1, + [59480] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5672), 1, + sym__whitespace_ge_2, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(835), 37, - sym__code_span_close, - anon_sym_BANG, + ACTIONS(5865), 1, anon_sym_DQUOTE, + STATE(2220), 1, + sym__newline, + ACTIONS(5869), 2, + sym__word_no_digit, + sym__digits, + STATE(1414), 4, + sym__soft_line_break, + sym__whitespace, + sym__word, + aux_sym__attribute_value_repeat2, + ACTIONS(5668), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -127926,33 +128551,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [58761] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [59539] = 4, + STATE(1489), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5797), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(5871), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127977,40 +128590,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58820] = 8, - ACTIONS(5802), 1, - anon_sym_SQUOTE, - ACTIONS(5804), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(5807), 1, - aux_sym__whitespace_token1, - ACTIONS(5813), 1, - aux_sym__newline_token1, - STATE(2208), 1, - sym__newline, - ACTIONS(5810), 2, sym__word_no_digit, sym__digits, - STATE(1468), 4, - sym__soft_line_break, - sym__whitespace, - sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5799), 31, + aux_sym__newline_token1, + [59590] = 4, + STATE(1531), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5873), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -128028,33 +128637,37 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58879] = 8, - ACTIONS(4213), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [59641] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4375), 1, + ACTIONS(5877), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5875), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1481), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128083,31 +128696,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58938] = 8, - ACTIONS(5819), 1, - anon_sym_DQUOTE, - ACTIONS(5821), 1, + [59700] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5824), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5830), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(2208), 1, + ACTIONS(5877), 1, + sym__block_close, + STATE(1727), 1, sym__newline, - ACTIONS(5827), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1470), 4, - sym__soft_line_break, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5816), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -128134,21 +128747,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [58997] = 4, - STATE(1484), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + [59759] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - ACTIONS(5833), 3, + STATE(1585), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5766), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(402), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128173,29 +128786,37 @@ 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, - 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, - [59048] = 4, - STATE(1521), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + [59810] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5835), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5879), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, + sym__word_no_digit, + sym__digits, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128220,29 +128841,34 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [59869] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, + ACTIONS(5094), 1, + aux_sym__whitespace_token1, + ACTIONS(5881), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [59099] = 4, - ACTIONS(837), 1, - aux_sym__whitespace_token1, - STATE(1528), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5837), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(835), 37, - sym__code_span_close, + STATE(1568), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128255,7 +128881,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, @@ -128271,33 +128896,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + [59928] = 8, + ACTIONS(1758), 1, aux_sym__newline_token1, - [59150] = 8, - ACTIONS(4213), 1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4371), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + ACTIONS(5881), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5883), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1487), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128310,7 +128932,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, @@ -128326,37 +128947,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59209] = 6, - ACTIONS(5847), 1, + [59987] = 10, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(5841), 2, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1777), 1, + sym__whitespace, + STATE(2178), 1, + sym_link_destination, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5845), 2, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1524), 2, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(5843), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5839), 30, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -128365,7 +128991,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, @@ -128375,30 +129000,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59264] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [60050] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5849), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5851), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4328), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1416), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128411,6 +129035,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, @@ -128426,30 +129051,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59323] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [60109] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5849), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5879), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5885), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, + STATE(1496), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128462,6 +129086,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, @@ -128477,21 +129102,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59382] = 4, - ACTIONS(825), 1, + [60168] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(823), 37, - sym__code_span_close, + ACTIONS(5887), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, + sym__word_no_digit, + sym__digits, + STATE(1568), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128504,7 +129138,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, @@ -128520,25 +129153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [60227] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5891), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5889), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [59433] = 4, - ACTIONS(825), 1, - aux_sym__whitespace_token1, - STATE(1531), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5853), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(823), 37, - sym__code_span_close, + STATE(1491), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128567,46 +129204,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [59484] = 10, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, + [60286] = 4, + STATE(1531), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1757), 1, - sym__whitespace, - STATE(2161), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + ACTIONS(5873), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -128615,81 +129236,44 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59547] = 8, - ACTIONS(1710), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [60337] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5112), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5114), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5891), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1536), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 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, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [59606] = 4, - ACTIONS(803), 1, - aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(801), 37, - sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128718,34 +129302,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [60396] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [59657] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5857), 1, + ACTIONS(5893), 1, sym__block_close, - ACTIONS(5855), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1506), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128765,6 +129344,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, @@ -128773,21 +129353,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59716] = 4, - STATE(1521), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_RBRACK, + [60455] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5835), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 36, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5893), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5895), 2, + sym__word_no_digit, + sym__digits, + STATE(1493), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128812,29 +129400,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [60514] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5897), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [59767] = 4, - ACTIONS(803), 1, - aux_sym__whitespace_token1, - STATE(1532), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5859), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(801), 37, - sym__code_span_close, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128863,34 +129455,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [60573] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [59818] = 8, - ACTIONS(3285), 1, - aux_sym__newline_token1, - ACTIONS(5861), 1, - anon_sym_QMARK, - ACTIONS(5863), 1, - anon_sym_QMARK_GT, - ACTIONS(5865), 1, - sym__whitespace_ge_2, - ACTIONS(5867), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5869), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5899), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1546), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(3157), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128911,6 +129498,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, @@ -128918,29 +129506,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59877] = 8, - ACTIONS(4213), 1, + [60632] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5871), 1, + ACTIONS(5901), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128969,30 +129557,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59936] = 8, - ACTIONS(4213), 1, + [60691] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5875), 1, + ACTIONS(5903), 1, sym__block_close, - ACTIONS(5873), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1564), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129012,6 +129599,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, @@ -129020,29 +129608,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [59995] = 8, - ACTIONS(4213), 1, + [60750] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5879), 1, + ACTIONS(5907), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5877), 2, + ACTIONS(5905), 2, sym__word_no_digit, sym__digits, - STATE(1411), 3, + STATE(1494), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129071,29 +129659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60054] = 8, - ACTIONS(4213), 1, + [60809] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5883), 1, + ACTIONS(5907), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5881), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1511), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129122,29 +129710,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60113] = 8, - ACTIONS(4213), 1, + [60868] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4239), 1, + ACTIONS(5911), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5909), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1495), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129173,30 +129761,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60172] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [60927] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5130), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5132), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5911), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1635), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129209,6 +129796,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, @@ -129224,29 +129812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60231] = 8, - ACTIONS(4213), 1, + [60986] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5885), 1, + ACTIONS(5915), 1, sym__block_close, - STATE(1716), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5913), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1518), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129275,30 +129863,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60290] = 8, - ACTIONS(3285), 1, + [61045] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5861), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5919), 1, + sym__block_close, + ACTIONS(5917), 2, + sym__word_no_digit, + sym__digits, + STATE(1512), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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, - ACTIONS(5865), 1, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [61104] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5867), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5887), 1, - anon_sym_QMARK_GT, - ACTIONS(5869), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5923), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5921), 2, sym__word_no_digit, sym__digits, - STATE(1546), 4, + STATE(1514), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(3157), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129319,6 +129957,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, @@ -129326,30 +129965,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60349] = 8, - ACTIONS(4213), 1, + [61163] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5891), 1, + ACTIONS(5925), 1, sym__block_close, - ACTIONS(5889), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1625), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129369,6 +130007,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, @@ -129377,29 +130016,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60408] = 8, - ACTIONS(4213), 1, + [61222] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5885), 1, + ACTIONS(5925), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5893), 2, + ACTIONS(5927), 2, sym__word_no_digit, sym__digits, - STATE(1543), 3, + STATE(1498), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129428,30 +130067,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60467] = 8, - ACTIONS(3271), 1, - anon_sym_RBRACK, - ACTIONS(3287), 1, - aux_sym__newline_token1, - ACTIONS(5895), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5897), 1, + [61281] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5899), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5901), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5929), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1407), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(3269), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129476,33 +130114,85 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60526] = 8, - ACTIONS(3271), 1, + [61340] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5929), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5931), 2, + sym__word_no_digit, + sym__digits, + STATE(1500), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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, - ACTIONS(3287), 1, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [61399] = 8, + ACTIONS(1758), 1, aux_sym__newline_token1, - ACTIONS(5897), 1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(5899), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5903), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5901), 2, + ACTIONS(5933), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - STATE(1407), 4, + STATE(1568), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(3269), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129515,7 +130205,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, @@ -129527,32 +130216,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60585] = 8, - ACTIONS(4213), 1, + [61458] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4407), 1, + ACTIONS(5935), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129581,29 +130271,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [61517] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5937), 1, + sym__block_close, + ACTIONS(5658), 2, + sym__word_no_digit, + sym__digits, + STATE(1565), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, - [60644] = 8, - ACTIONS(4213), 1, + [61576] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5905), 1, + ACTIONS(5935), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5939), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1465), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129632,30 +130373,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60703] = 8, - ACTIONS(4213), 1, + [61635] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, + ACTIONS(5656), 1, anon_sym_GT, - ACTIONS(5909), 1, + ACTIONS(5941), 1, sym__block_close, - ACTIONS(5907), 2, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - STATE(1554), 4, + STATE(1565), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129683,29 +130424,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60762] = 8, - ACTIONS(4213), 1, + [61694] = 8, + ACTIONS(5946), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5949), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5955), 1, aux_sym__newline_token1, - ACTIONS(5913), 1, + ACTIONS(5958), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5911), 2, + ACTIONS(5952), 2, sym__word_no_digit, sym__digits, - STATE(1575), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(5943), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129734,29 +130475,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60821] = 8, - ACTIONS(4213), 1, + [61753] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4421), 1, + ACTIONS(4464), 1, sym__block_close, - STATE(1748), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1564), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129785,29 +130526,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60880] = 8, - ACTIONS(4213), 1, + [61812] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5915), 1, + ACTIONS(5960), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129836,30 +130577,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60939] = 8, - ACTIONS(4213), 1, + [61871] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5917), 1, + ACTIONS(4460), 1, sym__block_close, - ACTIONS(5723), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129879,6 +130619,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, @@ -129887,30 +130628,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [60998] = 8, - ACTIONS(4213), 1, + [61930] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5919), 1, + ACTIONS(4233), 1, sym__block_close, - ACTIONS(5723), 2, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129930,6 +130670,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, @@ -129938,30 +130679,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61057] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [61989] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5176), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4446), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, + STATE(1564), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129974,6 +130714,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, @@ -129989,30 +130730,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61116] = 8, - ACTIONS(1710), 1, + [62048] = 8, + ACTIONS(1758), 1, aux_sym__newline_token1, - ACTIONS(5048), 1, + ACTIONS(5088), 1, anon_sym_DASH, - ACTIONS(5052), 1, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5176), 1, + ACTIONS(5962), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5178), 2, + ACTIONS(5964), 2, sym__word_no_digit, sym__digits, - STATE(1477), 4, + STATE(1508), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130040,29 +130781,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61175] = 8, - ACTIONS(4213), 1, + [62107] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5923), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5921), 2, + ACTIONS(5962), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1568), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130075,7 +130817,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, @@ -130091,29 +130832,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61234] = 8, - ACTIONS(4213), 1, + [62166] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4459), 1, + ACTIONS(5960), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5966), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1471), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130142,29 +130883,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + [62225] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, + aux_sym__whitespace_token1, + ACTIONS(5968), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, + sym__word_no_digit, + sym__digits, + STATE(1568), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, - [61293] = 8, - ACTIONS(4213), 1, + [62284] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4445), 1, + ACTIONS(4456), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130193,29 +130985,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61352] = 8, - ACTIONS(4213), 1, + [62343] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5927), 1, + ACTIONS(4442), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5925), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1578), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130244,21 +131036,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61411] = 4, - ACTIONS(777), 1, + [62402] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(775), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5972), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5970), 2, + sym__word_no_digit, + sym__digits, + STATE(1534), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130287,33 +131087,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [62461] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61462] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5915), 1, + ACTIONS(5974), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5929), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1542), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130342,30 +131138,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61521] = 8, - ACTIONS(4213), 1, + [62520] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(5933), 1, + ACTIONS(4384), 1, sym__block_close, - ACTIONS(5931), 2, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1464), 4, + STATE(1564), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130385,6 +131180,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, @@ -130393,29 +131189,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61580] = 8, - ACTIONS(4213), 1, + [62579] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5937), 1, + ACTIONS(5978), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5935), 2, + ACTIONS(5976), 2, sym__word_no_digit, sym__digits, - STATE(1605), 3, + STATE(1536), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130444,21 +131240,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61639] = 4, - ACTIONS(777), 1, + [62638] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1533), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5939), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(775), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5978), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, + sym__word_no_digit, + sym__digits, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130487,33 +131291,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [62697] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61690] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5943), 1, + ACTIONS(5974), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5941), 2, + ACTIONS(5980), 2, sym__word_no_digit, sym__digits, - STATE(1583), 3, + STATE(1532), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130542,21 +131342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61749] = 4, - ACTIONS(920), 1, - aux_sym__whitespace_token1, - STATE(1619), 1, + [62756] = 4, + STATE(1531), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(397), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5982), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(918), 37, - sym__code_span_close, + ACTIONS(395), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130581,29 +131381,37 @@ 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, - 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, - [61800] = 4, - ACTIONS(960), 1, + [62807] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(958), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5985), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, + sym__word_no_digit, + sym__digits, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130632,25 +131440,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [62866] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5972), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [61851] = 4, - STATE(1521), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(5945), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 36, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130675,37 +131487,33 @@ 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, - 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, - [61902] = 8, - ACTIONS(4213), 1, + [62925] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5666), 1, + ACTIONS(5987), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130734,21 +131542,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [61961] = 4, - ACTIONS(391), 1, + [62984] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1620), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5948), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5987), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5989), 2, + sym__word_no_digit, + sym__digits, + STATE(1537), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130777,38 +131593,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [63043] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [62012] = 6, - ACTIONS(5961), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5953), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5959), 2, - sym__whitespace_ge_2, + ACTIONS(4231), 1, aux_sym__newline_token1, - STATE(1524), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(5956), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5991), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - ACTIONS(5950), 30, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130826,33 +131639,34 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [62067] = 8, - ACTIONS(4213), 1, + [63102] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4429), 1, + ACTIONS(5993), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130881,82 +131695,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [62126] = 10, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, + [63161] = 4, + STATE(1440), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(404), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1774), 1, - sym__whitespace, - STATE(2145), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + ACTIONS(5995), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, - [62189] = 8, - ACTIONS(4213), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [63212] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5965), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(5999), 1, sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5963), 2, + ACTIONS(5997), 2, sym__word_no_digit, sym__digits, - STATE(1600), 3, + STATE(1443), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130976,7 +131785,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, @@ -130985,21 +131793,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [62248] = 4, - ACTIONS(968), 1, + [63271] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(966), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(5991), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(6001), 2, + sym__word_no_digit, + sym__digits, + STATE(1541), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131028,25 +131844,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [63330] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(6003), 1, + sym__block_close, + STATE(1727), 1, + sym__newline, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [62299] = 4, - STATE(1417), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5967), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(399), 36, + STATE(1513), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131067,6 +131887,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, @@ -131074,43 +131895,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62350] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, + [63389] = 10, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(5965), 1, - sym__block_close, - STATE(1716), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1484), 1, + sym__soft_line_break, + STATE(2182), 1, + sym_link_destination, + STATE(2206), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -131119,38 +131939,43 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [62409] = 4, - ACTIONS(972), 1, + [63452] = 6, + ACTIONS(6013), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(970), 37, - sym__code_span_close, + ACTIONS(6009), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1457), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(6005), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(6011), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(6007), 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, @@ -131168,30 +131993,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [63507] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(6017), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(6015), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [62460] = 4, - ACTIONS(956), 1, - aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(954), 37, - sym__code_span_close, + STATE(1441), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131220,25 +132048,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62511] = 4, - ACTIONS(950), 1, - aux_sym__whitespace_token1, - STATE(1619), 1, + [63566] = 4, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(391), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 37, - sym__code_span_close, + ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131251,7 +132075,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, @@ -131267,25 +132090,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62562] = 4, - STATE(1573), 1, + [63617] = 4, + STATE(1538), 1, aux_sym__ignore_matching_tokens, ACTIONS(391), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5969), 3, + ACTIONS(6019), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131313,86 +132137,87 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62613] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [63668] = 10, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(5237), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5239), 2, - sym__word_no_digit, - sym__digits, - STATE(1623), 4, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1772), 1, sym__whitespace, + STATE(2182), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, - [62672] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, + [63731] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5237), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4436), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, + STATE(1564), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131405,6 +132230,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, @@ -131420,21 +132246,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [62731] = 4, - ACTIONS(851), 1, + [63790] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1610), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(849), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4426), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, + sym__word_no_digit, + sym__digits, + STATE(1564), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131463,25 +132297,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [63849] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6021), 1, + sym__block_close, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [62782] = 4, - STATE(1555), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(5973), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + STATE(1565), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131494,13 +132333,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, @@ -131509,30 +132348,36 @@ static const uint16_t ts_small_parse_table[] = { 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, + [63908] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6023), 1, + sym__block_close, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [62833] = 4, - ACTIONS(5975), 1, - sym__blank_line_start, - STATE(2521), 1, - sym__blank_line, - ACTIONS(4804), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4802), 37, + STATE(1565), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131546,89 +132391,89 @@ 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, - 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, + [63967] = 8, + ACTIONS(1758), 1, aux_sym__newline_token1, - [62884] = 10, - ACTIONS(4231), 1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1787), 1, - sym__whitespace, - STATE(2150), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5486), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + STATE(1568), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, - [62947] = 4, - ACTIONS(950), 1, + [64026] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - STATE(1571), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5977), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(948), 37, - sym__code_span_close, + ACTIONS(5486), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5488), 2, + sym__word_no_digit, + sym__digits, + STATE(1520), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131641,7 +132486,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, @@ -131657,39 +132501,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62998] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [64085] = 4, + ACTIONS(6025), 1, + sym__blank_line_start, + STATE(2484), 1, + sym__blank_line, + ACTIONS(4795), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5979), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4793), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131707,34 +132537,41 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63057] = 8, - ACTIONS(4213), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5981), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + [64136] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5090), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, + aux_sym__whitespace_token1, + ACTIONS(5096), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1578), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131747,7 +132584,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, @@ -131763,27 +132599,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63116] = 4, - ACTIONS(905), 1, + [64195] = 4, + ACTIONS(6025), 1, + sym__blank_line_start, + STATE(2530), 1, + sym__blank_line, + ACTIONS(5003), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1572), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5983), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(903), 37, - sym__code_span_close, + ACTIONS(5001), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131801,45 +132635,48 @@ 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, - 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, - [63167] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, + [64246] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5739), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5987), 1, - anon_sym_SQUOTE, - STATE(2208), 1, - sym__newline, - ACTIONS(5989), 2, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6029), 1, + sym__block_close, + ACTIONS(6027), 2, sym__word_no_digit, sym__digits, - STATE(1468), 4, - sym__soft_line_break, + STATE(1569), 4, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5985), 31, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -131852,7 +132689,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, @@ -131861,30 +132697,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63226] = 8, - ACTIONS(5650), 1, - anon_sym_QMARK_GT, - ACTIONS(5994), 1, - anon_sym_QMARK, - ACTIONS(5997), 1, + [64305] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5090), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(6000), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(6006), 1, - aux_sym__newline_token1, - ACTIONS(6003), 2, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - STATE(1546), 4, + STATE(1568), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(5991), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131897,7 +132733,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, @@ -131905,6 +132740,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, @@ -131912,25 +132748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63285] = 4, - ACTIONS(5975), 1, - sym__blank_line_start, - STATE(2519), 1, - sym__blank_line, - ACTIONS(4867), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [64364] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4865), 37, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6033), 1, + sym__block_close, + ACTIONS(6031), 2, + sym__word_no_digit, + sym__digits, + STATE(1510), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131944,44 +132791,37 @@ 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, - 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, - [63336] = 8, - ACTIONS(4213), 1, + [64423] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6011), 1, + ACTIONS(4316), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(6009), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1499), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132010,29 +132850,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63395] = 8, - ACTIONS(4213), 1, + [64482] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6015), 1, + ACTIONS(4312), 1, sym__block_close, - STATE(1748), 1, + STATE(1727), 1, sym__newline, - ACTIONS(6013), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1503), 3, + STATE(1513), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132061,31 +132901,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63454] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, + [64541] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5739), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5987), 1, - anon_sym_DQUOTE, - STATE(2208), 1, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(6037), 1, + sym__block_close, + STATE(1711), 1, sym__newline, - ACTIONS(6017), 2, + ACTIONS(6035), 2, sym__word_no_digit, sym__digits, - STATE(1470), 4, - sym__soft_line_break, + STATE(1409), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5733), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -132112,30 +132952,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63513] = 8, - ACTIONS(3271), 1, - anon_sym_RBRACK, - ACTIONS(3287), 1, - aux_sym__newline_token1, - ACTIONS(5897), 1, + [64600] = 8, + ACTIONS(5851), 1, + anon_sym_QMARK_GT, + ACTIONS(6042), 1, + anon_sym_QMARK, + ACTIONS(6045), 1, sym__whitespace_ge_2, - ACTIONS(5899), 1, + ACTIONS(6048), 1, aux_sym__whitespace_token1, - ACTIONS(6019), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5901), 2, + ACTIONS(6054), 1, + aux_sym__newline_token1, + ACTIONS(6051), 2, sym__word_no_digit, sym__digits, - STATE(1407), 4, + STATE(1563), 4, sym__whitespace, sym__word, sym__newline, aux_sym__processing_instruction_repeat1, - ACTIONS(3269), 31, + ACTIONS(6039), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132156,28 +132996,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63572] = 4, - ACTIONS(405), 1, + [64659] = 8, + ACTIONS(6060), 1, + sym__whitespace_ge_2, + ACTIONS(6063), 1, aux_sym__whitespace_token1, - STATE(1552), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6021), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 37, + ACTIONS(6069), 1, + aux_sym__newline_token1, + ACTIONS(6072), 1, sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(6066), 2, + sym__word_no_digit, + sym__digits, + STATE(1564), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(6057), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132206,34 +133054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [64718] = 8, + ACTIONS(6077), 1, + anon_sym_GT, + ACTIONS(6080), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [63623] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(6089), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6026), 1, + ACTIONS(6092), 1, sym__block_close, - ACTIONS(6024), 2, + ACTIONS(6086), 2, sym__word_no_digit, sym__digits, - STATE(1505), 4, + STATE(1565), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + ACTIONS(6074), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132261,30 +133105,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63682] = 8, - ACTIONS(4213), 1, + [64777] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6028), 1, - sym__block_close, - ACTIONS(5723), 2, + ACTIONS(6094), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(6096), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1522), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132297,13 +133141,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, @@ -132312,21 +133156,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63741] = 4, - STATE(1555), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(405), 2, - anon_sym_DASH, + [64836] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(6030), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 36, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6098), 1, + sym__block_close, + ACTIONS(5658), 2, + sym__word_no_digit, + sym__digits, + STATE(1565), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132339,13 +133192,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, @@ -132354,34 +133207,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [64895] = 8, + ACTIONS(6103), 1, + anon_sym_DASH, + ACTIONS(6106), 1, anon_sym_DASH_DASH_GT, + ACTIONS(6108), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [63792] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(6117), 1, aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + ACTIONS(6114), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1568), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(6100), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132394,7 +133243,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, @@ -132410,30 +133258,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63851] = 8, - ACTIONS(3285), 1, - aux_sym__newline_token1, - ACTIONS(5861), 1, - anon_sym_QMARK, - ACTIONS(5865), 1, + [64954] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5867), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(6033), 1, - anon_sym_QMARK_GT, - ACTIONS(5869), 2, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6120), 1, + sym__block_close, + ACTIONS(5658), 2, sym__word_no_digit, sym__digits, - STATE(1546), 4, + STATE(1565), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__processing_instruction_repeat1, - ACTIONS(3157), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132453,7 +133301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -132461,21 +133309,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [63910] = 4, - ACTIONS(1029), 1, + [65013] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1027), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(6124), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(6122), 2, + sym__word_no_digit, + sym__digits, + STATE(1548), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132504,34 +133360,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [65072] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [63961] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, - sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5253), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5255), 2, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(6128), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(6126), 2, sym__word_no_digit, sym__digits, - STATE(1507), 4, + STATE(1549), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132544,6 +133395,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, @@ -132559,21 +133411,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64020] = 4, - STATE(1417), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, + [65131] = 4, + ACTIONS(850), 1, aux_sym__whitespace_token1, - ACTIONS(5967), 3, + STATE(1602), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6130), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(848), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132594,6 +133446,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, @@ -132601,34 +133454,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [64071] = 8, - ACTIONS(4213), 1, + [65182] = 8, + ACTIONS(3190), 1, + aux_sym__newline_token1, + ACTIONS(3247), 1, + anon_sym_RBRACK, + ACTIONS(5786), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5788), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5879), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + ACTIONS(6132), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5790), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1473), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(3245), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132653,33 +133506,33 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64130] = 8, - ACTIONS(4213), 1, + [65241] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(4221), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6136), 1, sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, + ACTIONS(6134), 2, sym__word_no_digit, sym__digits, - STATE(1608), 3, + STATE(1551), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132699,7 +133552,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, @@ -132708,30 +133560,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64189] = 8, - ACTIONS(4213), 1, + [65300] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6035), 1, + ACTIONS(4342), 1, sym__block_close, - ACTIONS(5723), 2, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1564), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132751,6 +133602,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, @@ -132759,30 +133611,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64248] = 8, - ACTIONS(4213), 1, + [65359] = 8, + ACTIONS(3209), 1, + aux_sym__newline_token1, + ACTIONS(5804), 1, + anon_sym_QMARK, + ACTIONS(5808), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5810), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6037), 1, - sym__block_close, - ACTIONS(5723), 2, + ACTIONS(6138), 1, + anon_sym_QMARK_GT, + ACTIONS(5812), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, + STATE(1563), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(3225), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132802,7 +133654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -132810,21 +133662,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64307] = 4, - ACTIONS(1029), 1, + [65418] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - STATE(1451), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6039), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1027), 37, - sym__code_span_close, + ACTIONS(4231), 1, + aux_sym__newline_token1, + ACTIONS(4354), 1, + sym__block_close, + STATE(1711), 1, + sym__newline, + ACTIONS(5652), 2, + sym__word_no_digit, + sym__digits, + STATE(1564), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132853,140 +133713,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [65477] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, + ACTIONS(5094), 1, + aux_sym__whitespace_token1, + ACTIONS(6094), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5666), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [64358] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1540), 1, - sym__soft_line_break, - STATE(2155), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, + STATE(1568), 4, + sym__whitespace, sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, - [64421] = 10, - ACTIONS(4231), 1, + [65536] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1754), 1, - sym__whitespace, - STATE(2155), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5599), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5601), 2, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + STATE(1552), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, - [64484] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [65595] = 4, + ACTIONS(1038), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6043), 1, - sym__block_close, - ACTIONS(6041), 2, - sym__word_no_digit, - sym__digits, - STATE(1577), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + STATE(1582), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6140), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1036), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133006,6 +133849,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, @@ -133014,38 +133858,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64543] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6047), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(6045), 2, sym__word_no_digit, sym__digits, - STATE(1581), 3, + aux_sym__newline_token1, + [65646] = 10, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1784), 1, sym__whitespace, + STATE(2161), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -133054,40 +133906,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64602] = 8, - ACTIONS(6052), 1, - sym__whitespace_ge_2, - ACTIONS(6055), 1, + [65709] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - ACTIONS(6061), 1, - aux_sym__newline_token1, - ACTIONS(6064), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6058), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(6049), 32, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(750), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133116,21 +133958,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64661] = 4, - ACTIONS(905), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [65760] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1619), 1, + STATE(1596), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(6144), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 37, + ACTIONS(750), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133159,34 +134005,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [64712] = 4, - ACTIONS(869), 1, - aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(867), 37, - sym__code_span_close, + [65811] = 10, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1581), 1, + sym__soft_line_break, + STATE(2181), 1, + sym_link_destination, + STATE(2206), 1, + sym__newline, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -133195,36 +134053,30 @@ 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, - 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, - [64763] = 4, - STATE(1555), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(401), 2, - anon_sym_DASH, + [65874] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - ACTIONS(5973), 3, + STATE(1585), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6146), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 36, + ACTIONS(395), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133237,6 +134089,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, @@ -133252,43 +134105,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [64814] = 8, - ACTIONS(4213), 1, + [65925] = 10, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5707), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1787), 1, sym__whitespace, + STATE(2181), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -133297,40 +134153,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64873] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [65988] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4355), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, - sym__word_no_digit, - sym__digits, - STATE(1608), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + STATE(1608), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6149), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(854), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133359,29 +134205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64932] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6068), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6066), 2, sym__word_no_digit, sym__digits, - STATE(1504), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [66039] = 4, + ACTIONS(862), 1, + aux_sym__whitespace_token1, + STATE(1630), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6151), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(860), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133410,80 +134252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [64991] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6070), 1, - sym__block_close, - ACTIONS(5723), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 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, + aux_sym__newline_token1, + [66090] = 4, + ACTIONS(868), 1, + aux_sym__whitespace_token1, + STATE(1635), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6153), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(866), 37, + sym__code_span_close, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [65050] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4327), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, - sym__word_no_digit, - sym__digits, - STATE(1608), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133512,21 +134299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65109] = 4, - ACTIONS(869), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66141] = 4, + ACTIONS(874), 1, aux_sym__whitespace_token1, - STATE(1616), 1, + STATE(1641), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6072), 3, + ACTIONS(6155), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 37, + ACTIONS(872), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133555,40 +134346,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [65160] = 10, + [66192] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4257), 1, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4585), 1, + ACTIONS(4557), 1, anon_sym_LPAREN, - STATE(1567), 1, + STATE(1586), 1, sym__soft_line_break, - STATE(2173), 1, + STATE(2159), 1, sym_link_destination, - STATE(2222), 1, + STATE(2206), 1, sym__newline, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133612,29 +134403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65223] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [66255] = 4, + ACTIONS(880), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4265), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, - sym__word_no_digit, - sym__digits, - STATE(1608), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + STATE(1640), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6157), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(878), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133663,38 +134446,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65282] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6076), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6074), 2, sym__word_no_digit, sym__digits, - STATE(1561), 3, + aux_sym__newline_token1, + [66306] = 10, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1786), 1, sym__whitespace, + STATE(2153), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -133703,49 +134494,51 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65341] = 8, - ACTIONS(4213), 1, + [66369] = 10, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4279), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, - sym__word_no_digit, - sym__digits, - STATE(1608), 3, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1768), 1, sym__whitespace, + STATE(2159), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -133754,49 +134547,51 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65400] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, + [66432] = 10, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6080), 1, - sym__block_close, - STATE(1716), 1, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(1547), 1, + sym__soft_line_break, + STATE(2153), 1, + sym_link_destination, + STATE(2206), 1, sym__newline, - ACTIONS(6078), 2, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1414), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -133805,40 +134600,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65459] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [66495] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6068), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(792), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133867,21 +134652,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65518] = 4, - ACTIONS(1105), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66546] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1482), 1, + STATE(1638), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6082), 3, + ACTIONS(6159), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1103), 37, + ACTIONS(792), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133910,33 +134699,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [65569] = 8, - ACTIONS(4213), 1, + [66597] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6086), 1, + ACTIONS(4422), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(6084), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1638), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133965,29 +134754,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65628] = 8, - ACTIONS(4213), 1, + [66656] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4275), 1, + ACTIONS(6163), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(6161), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1601), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134016,29 +134805,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65687] = 8, - ACTIONS(4213), 1, + [66715] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6086), 1, + ACTIONS(6163), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134067,29 +134856,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65746] = 8, - ACTIONS(4213), 1, + [66774] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6088), 1, + ACTIONS(6165), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134118,29 +134907,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65805] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [66833] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6092), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6090), 2, - sym__word_no_digit, - sym__digits, - STATE(1590), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(895), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134169,29 +134950,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65864] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6092), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [66884] = 4, + ACTIONS(1050), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1048), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134220,29 +134997,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65923] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66935] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6096), 1, + ACTIONS(6169), 1, sym__block_close, - STATE(1716), 1, + STATE(1711), 1, sym__newline, - ACTIONS(6094), 2, + ACTIONS(6167), 2, sym__word_no_digit, sym__digits, - STATE(1596), 3, + STATE(1527), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134271,29 +135052,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [65982] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [66994] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6098), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + STATE(1633), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6171), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(895), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134322,29 +135095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66041] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6096), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67045] = 4, + ACTIONS(1175), 1, + aux_sym__whitespace_token1, + STATE(1603), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6173), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1173), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134373,29 +135142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66100] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6100), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67096] = 4, + ACTIONS(1175), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1173), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134424,29 +135189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66159] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6100), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6102), 2, sym__word_no_digit, sym__digits, - STATE(1609), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67147] = 4, + ACTIONS(925), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(923), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134475,29 +135236,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66218] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5871), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6104), 2, sym__word_no_digit, sym__digits, - STATE(1628), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67198] = 4, + ACTIONS(1064), 1, + aux_sym__whitespace_token1, + STATE(1607), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6175), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1062), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134526,29 +135283,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66277] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6098), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6106), 2, sym__word_no_digit, sym__digits, - STATE(1592), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67249] = 4, + ACTIONS(1064), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1062), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134577,29 +135330,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66336] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [67300] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6108), 1, + ACTIONS(6165), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(6177), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1614), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134628,30 +135385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66395] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, - sym__whitespace_ge_2, - ACTIONS(5054), 1, + [67359] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - ACTIONS(6110), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, - sym__word_no_digit, - sym__digits, - STATE(1621), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(754), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134664,6 +135412,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, @@ -134679,29 +135428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66454] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4468), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67410] = 4, + ACTIONS(756), 1, + aux_sym__whitespace_token1, + STATE(1610), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6179), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(754), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134730,29 +135475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66513] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [67461] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6108), 1, + ACTIONS(6181), 1, sym__block_close, - STATE(1716), 1, + STATE(1727), 1, sym__newline, - ACTIONS(6112), 2, + ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1606), 3, + STATE(1513), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(4223), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134781,29 +135530,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66572] = 8, - ACTIONS(4213), 1, + [67520] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(4271), 1, + ACTIONS(6185), 1, sym__block_close, - STATE(1716), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(6183), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1577), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134832,29 +135581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66631] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [67579] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4439), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(5674), 2, - sym__word_no_digit, - sym__digits, - STATE(1608), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + STATE(1612), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6187), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1240), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134883,29 +135624,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66690] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [67630] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, + ACTIONS(4231), 1, aux_sym__newline_token1, - ACTIONS(6114), 1, + ACTIONS(6191), 1, sym__block_close, - STATE(1716), 1, + STATE(1711), 1, sym__newline, - ACTIONS(5676), 2, + ACTIONS(6189), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1575), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5650), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134934,30 +135679,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66749] = 8, - ACTIONS(4213), 1, + [67689] = 8, + ACTIONS(3190), 1, + aux_sym__newline_token1, + ACTIONS(3247), 1, + anon_sym_RBRACK, + ACTIONS(5786), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5788), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6118), 1, - sym__block_close, - ACTIONS(6116), 2, + ACTIONS(6193), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5790), 2, sym__word_no_digit, sym__digits, - STATE(1563), 4, + STATE(1473), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(3245), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134977,37 +135722,29 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66808] = 8, - ACTIONS(6123), 1, - sym__whitespace_ge_2, - ACTIONS(6126), 1, + [67748] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - ACTIONS(6132), 1, - aux_sym__newline_token1, - ACTIONS(6135), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(6129), 2, - sym__word_no_digit, - sym__digits, - STATE(1608), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(6120), 32, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1240), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135036,29 +135773,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66867] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6137), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [67799] = 4, + ACTIONS(1307), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1305), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135087,21 +135820,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [66926] = 4, - ACTIONS(821), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [67850] = 4, + ACTIONS(1368), 1, aux_sym__whitespace_token1, - STATE(1619), 1, + STATE(1624), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(6142), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(819), 37, + ACTIONS(1366), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135130,25 +135867,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [66977] = 4, - ACTIONS(1247), 1, + [67901] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1513), 1, + STATE(1625), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6139), 3, + ACTIONS(6195), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1245), 37, + ACTIONS(389), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135177,34 +135914,72 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67028] = 8, - ACTIONS(6144), 1, + [67952] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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(6147), 1, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, sym__whitespace_ge_2, - ACTIONS(6150), 1, - aux_sym__whitespace_token1, - ACTIONS(6156), 1, - aux_sym__newline_token1, - ACTIONS(6159), 1, - sym__block_close, - ACTIONS(6153), 2, sym__word_no_digit, sym__digits, - STATE(1612), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(6141), 31, + aux_sym__newline_token1, + [68003] = 4, + ACTIONS(397), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6197), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(395), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135224,6 +135999,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, @@ -135232,29 +136008,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67087] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4345), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [68054] = 4, + ACTIONS(404), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(402), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135283,21 +136055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67146] = 4, - ACTIONS(1008), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [68105] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1519), 1, + STATE(1631), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6161), 3, + ACTIONS(6200), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 37, + ACTIONS(923), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135326,34 +136102,85 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67197] = 8, - ACTIONS(1710), 1, + [68156] = 8, + ACTIONS(4225), 1, + sym__whitespace_ge_2, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(5181), 1, aux_sym__newline_token1, - ACTIONS(5048), 1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6204), 1, + sym__block_close, + ACTIONS(6202), 2, + sym__word_no_digit, + sym__digits, + STATE(1567), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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, - ACTIONS(5052), 1, + 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_PIPE, + anon_sym_TILDE, + [68215] = 8, + ACTIONS(3209), 1, + aux_sym__newline_token1, + ACTIONS(5804), 1, + anon_sym_QMARK, + ACTIONS(5808), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5810), 1, aux_sym__whitespace_token1, - ACTIONS(6163), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(6165), 2, + ACTIONS(6206), 1, + anon_sym_QMARK_GT, + ACTIONS(5812), 2, sym__word_no_digit, sym__digits, - STATE(1412), 4, + STATE(1563), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(3225), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135366,6 +136193,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, @@ -135373,7 +136201,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, @@ -135381,21 +136208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67256] = 4, - ACTIONS(851), 1, + [68274] = 4, + ACTIONS(1380), 1, aux_sym__whitespace_token1, - STATE(1619), 1, + STATE(1624), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(6142), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 37, + ACTIONS(1378), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135424,33 +136251,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67307] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [68325] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6076), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(967), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135479,21 +136298,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67366] = 4, - ACTIONS(391), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [68376] = 4, + ACTIONS(1376), 1, aux_sym__whitespace_token1, - STATE(1619), 1, + STATE(1624), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(6142), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(1374), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135522,25 +136345,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67417] = 4, - ACTIONS(405), 1, + [68427] = 8, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5088), 1, + anon_sym_DASH, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - STATE(1619), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6167), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(403), 37, - sym__code_span_close, + ACTIONS(5446), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5448), 2, + sym__word_no_digit, + sym__digits, + STATE(1558), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5086), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135553,7 +136385,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, @@ -135569,25 +136400,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67468] = 4, - ACTIONS(401), 1, + [68486] = 4, + ACTIONS(1372), 1, aux_sym__whitespace_token1, - STATE(1619), 1, + STATE(1624), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5640), 3, + ACTIONS(6142), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 37, + ACTIONS(1370), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135616,34 +136443,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67519] = 8, - ACTIONS(6173), 1, - anon_sym_DASH, - ACTIONS(6176), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(6178), 1, - sym__whitespace_ge_2, - ACTIONS(6181), 1, + [68537] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - ACTIONS(6187), 1, - aux_sym__newline_token1, - ACTIONS(6184), 2, - sym__word_no_digit, - sym__digits, - STATE(1621), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(6170), 31, + STATE(1629), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6208), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(967), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135656,6 +136474,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, @@ -135671,42 +136490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67578] = 10, - ACTIONS(4231), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1762), 1, - sym__whitespace, - STATE(2173), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + aux_sym__newline_token1, + [68588] = 4, + ACTIONS(979), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(977), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -135715,39 +136526,36 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67641] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, - aux_sym__whitespace_token1, - ACTIONS(6163), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__newline_token1, + [68639] = 4, + ACTIONS(979), 1, + aux_sym__whitespace_token1, + STATE(1621), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6210), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(977), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135760,6 +136568,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, @@ -135775,30 +136584,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67700] = 8, - ACTIONS(1710), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5050), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5052), 1, + [68690] = 8, + ACTIONS(4225), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(4227), 1, aux_sym__whitespace_token1, - ACTIONS(5056), 2, + ACTIONS(5181), 1, + aux_sym__newline_token1, + ACTIONS(5656), 1, + anon_sym_GT, + ACTIONS(6214), 1, + sym__block_close, + ACTIONS(6212), 2, sym__word_no_digit, sym__digits, - STATE(1634), 4, + STATE(1550), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5654), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135811,13 +136624,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, @@ -135826,30 +136639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67759] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [68749] = 4, + ACTIONS(1206), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, - aux_sym__newline_token1, - ACTIONS(5713), 1, - anon_sym_GT, - ACTIONS(6190), 1, - sym__block_close, - ACTIONS(5723), 2, - sym__word_no_digit, - sym__digits, - STATE(1612), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5711), 31, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1204), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135869,6 +136673,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, @@ -135877,29 +136682,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67818] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(5905), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(6192), 2, sym__word_no_digit, sym__digits, - STATE(1487), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [68800] = 4, + ACTIONS(993), 1, + aux_sym__whitespace_token1, + STATE(1619), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6216), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(991), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135928,29 +136729,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67877] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6196), 1, - sym__block_close, - STATE(1748), 1, - sym__newline, - ACTIONS(6194), 2, sym__word_no_digit, sym__digits, - STATE(1562), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5672), 32, + aux_sym__newline_token1, + [68851] = 4, + ACTIONS(993), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(991), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135979,29 +136776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67936] = 8, - ACTIONS(4213), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, - aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6198), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + aux_sym__newline_token1, + [68902] = 4, + ACTIONS(987), 1, + aux_sym__whitespace_token1, + STATE(1624), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6142), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(985), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136030,36 +136823,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [67995] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5735), 1, - anon_sym_SQUOTE, - ACTIONS(5737), 1, sym__whitespace_ge_2, - ACTIONS(5739), 1, - aux_sym__whitespace_token1, - STATE(2208), 1, - sym__newline, - ACTIONS(6200), 2, sym__word_no_digit, sym__digits, - STATE(1545), 4, - sym__soft_line_break, - sym__whitespace, - sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5985), 31, + aux_sym__newline_token1, + [68953] = 4, + ACTIONS(987), 1, + aux_sym__whitespace_token1, + STATE(1620), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6218), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(985), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -136081,27 +136870,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68054] = 4, - ACTIONS(1267), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [69004] = 3, + ACTIONS(6224), 1, + sym__last_token_punctuation, + ACTIONS(6222), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1440), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6202), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1265), 37, - sym__code_span_close, + ACTIONS(6220), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136119,44 +136908,34 @@ 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, - 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, - [68105] = 8, - ACTIONS(4213), 1, - sym__whitespace_ge_2, - ACTIONS(4215), 1, + [69052] = 3, + ACTIONS(6230), 1, + sym__last_token_punctuation, + ACTIONS(6228), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(4293), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + ACTIONS(6226), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136174,26 +136953,31 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68164] = 4, - ACTIONS(1115), 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, + [69100] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1458), 1, + STATE(1649), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6204), 3, + ACTIONS(6232), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1113), 37, - sym__code_span_close, + ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136222,34 +137006,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68215] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, - sym__whitespace_ge_2, - ACTIONS(5054), 1, + [69150] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(6206), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(6208), 2, - sym__word_no_digit, - sym__digits, - STATE(1601), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + STATE(1653), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6234), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136262,6 +137036,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, @@ -136277,42 +137052,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68274] = 8, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5048), 1, - anon_sym_DASH, - ACTIONS(5052), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, - aux_sym__whitespace_token1, - ACTIONS(6206), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5682), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__newline_token1, + [69200] = 4, + STATE(1647), 1, + aux_sym_info_string_repeat1, + ACTIONS(6236), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(6241), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(6239), 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, @@ -136323,35 +137091,39 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68333] = 8, - ACTIONS(1710), 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(5048), 1, - anon_sym_DASH, - ACTIONS(5050), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5052), 1, + [69250] = 7, + ACTIONS(1782), 1, + aux_sym__newline_token1, + ACTIONS(5672), 1, sym__whitespace_ge_2, - ACTIONS(5054), 1, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - ACTIONS(5682), 2, + ACTIONS(6245), 1, + anon_sym_GT, + ACTIONS(6247), 2, sym__word_no_digit, sym__digits, - STATE(1621), 4, + STATE(1696), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5046), 31, + aux_sym__declaration_repeat1, + ACTIONS(6243), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136364,13 +137136,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, @@ -136379,21 +137151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68392] = 4, - ACTIONS(1259), 1, + [69306] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(1466), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6210), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1257), 37, - sym__code_span_close, + ACTIONS(402), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136422,25 +137193,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68443] = 4, - ACTIONS(1186), 1, + [69356] = 6, + ACTIONS(4808), 1, + sym__whitespace_ge_2, + ACTIONS(4810), 1, aux_sym__whitespace_token1, - STATE(1478), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6212), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1184), 37, + ACTIONS(6251), 1, sym__code_span_close, + ACTIONS(6249), 2, + sym__word_no_digit, + sym__digits, + STATE(1661), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(3022), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136469,33 +137245,28 @@ static const uint16_t ts_small_parse_table[] = { 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, + [69410] = 7, + ACTIONS(1782), 1, aux_sym__newline_token1, - [68494] = 8, - ACTIONS(4213), 1, + ACTIONS(5672), 1, sym__whitespace_ge_2, - ACTIONS(4215), 1, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - ACTIONS(4219), 1, - aux_sym__newline_token1, - ACTIONS(6080), 1, - sym__block_close, - STATE(1716), 1, - sym__newline, - ACTIONS(5676), 2, + ACTIONS(6253), 1, + anon_sym_GT, + ACTIONS(6255), 2, sym__word_no_digit, sym__digits, - STATE(1570), 3, + STATE(1700), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4211), 32, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6243), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136515,7 +137286,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, @@ -136524,42 +137294,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68553] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(1450), 1, - sym__soft_line_break, - STATE(2145), 1, - sym_link_destination, - STATE(2222), 1, - sym__newline, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + [69466] = 4, + ACTIONS(1038), 1, + aux_sym__whitespace_token1, + STATE(1654), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6257), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1036), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -136568,29 +137325,35 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [68616] = 4, - ACTIONS(920), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [69516] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6259), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(918), 36, + ACTIONS(395), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136619,30 +137382,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68666] = 4, - ACTIONS(5975), 1, - sym__blank_line_start, - STATE(2525), 1, - sym__blank_line, - ACTIONS(6218), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [69566] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - ACTIONS(6216), 36, + STATE(1653), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6234), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(750), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -136658,34 +137423,35 @@ 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, - 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, - [68716] = 3, - ACTIONS(6226), 1, - sym__last_token_punctuation, - ACTIONS(6223), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [69616] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - ACTIONS(6220), 37, + STATE(1663), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6262), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(750), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136703,34 +137469,35 @@ 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, - 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, - [68764] = 3, - ACTIONS(6232), 1, - sym__last_token_punctuation, - ACTIONS(6230), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [69666] = 4, + ACTIONS(850), 1, aux_sym__whitespace_token1, - ACTIONS(6228), 37, + STATE(1665), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6264), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(848), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136748,31 +137515,29 @@ 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, - 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, - [68812] = 4, - ACTIONS(391), 1, + [69716] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1646), 1, + STATE(1667), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6234), 3, + ACTIONS(6266), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(854), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136801,24 +137566,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68862] = 4, - ACTIONS(391), 1, + [69766] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1669), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6268), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(860), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136847,24 +137612,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68912] = 4, - ACTIONS(401), 1, + [69816] = 4, + ACTIONS(868), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1671), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6270), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 36, + ACTIONS(866), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136893,76 +137658,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68962] = 7, - ACTIONS(6239), 1, - anon_sym_GT, - ACTIONS(6241), 1, - sym__whitespace_ge_2, - ACTIONS(6244), 1, + [69866] = 4, + ACTIONS(874), 1, aux_sym__whitespace_token1, - ACTIONS(6250), 1, - aux_sym__newline_token1, - ACTIONS(6247), 2, - sym__word_no_digit, - sym__digits, - STATE(1647), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6236), 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, + STATE(1673), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6272), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(872), 36, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [69018] = 3, - ACTIONS(6257), 1, - sym__last_token_punctuation, - ACTIONS(6255), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(6253), 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, @@ -136980,34 +137699,41 @@ 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, - 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, - [69066] = 3, - ACTIONS(6263), 1, - sym__last_token_punctuation, - ACTIONS(6261), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [69916] = 6, + ACTIONS(6277), 1, + sym__whitespace_ge_2, + ACTIONS(6280), 1, aux_sym__whitespace_token1, - ACTIONS(6259), 37, + ACTIONS(6286), 1, + sym__code_span_close, + ACTIONS(6283), 2, + sym__word_no_digit, + sym__digits, + STATE(1661), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(6274), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137025,31 +137751,25 @@ 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, - 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, - [69114] = 4, - ACTIONS(809), 1, + [69970] = 4, + ACTIONS(880), 1, aux_sym__whitespace_token1, - STATE(1652), 1, + STATE(1676), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6265), 3, + ACTIONS(6288), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(807), 36, + ACTIONS(878), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137078,24 +137798,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69164] = 4, - ACTIONS(405), 1, + [70020] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6267), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(403), 36, + ACTIONS(792), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137124,24 +137844,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69214] = 4, - ACTIONS(1029), 1, + [70070] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1678), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6290), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 36, + ACTIONS(792), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137170,24 +137890,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69264] = 4, - ACTIONS(1029), 1, + [70120] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1661), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6270), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 36, + ACTIONS(895), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137216,24 +137936,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69314] = 4, - ACTIONS(1267), 1, + [70170] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1663), 1, + STATE(1679), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6272), 3, + ACTIONS(6292), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1265), 36, + ACTIONS(895), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137262,24 +137982,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69364] = 4, - ACTIONS(1115), 1, + [70220] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1666), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6274), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1113), 36, + ACTIONS(923), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137308,24 +138028,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69414] = 4, - ACTIONS(1259), 1, + [70270] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1668), 1, + STATE(1680), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6276), 3, + ACTIONS(6294), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1257), 36, + ACTIONS(923), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137354,24 +138074,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69464] = 4, - ACTIONS(1186), 1, + [70320] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1670), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6278), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1184), 36, + ACTIONS(967), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137400,24 +138120,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69514] = 4, - ACTIONS(1105), 1, + [70370] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1673), 1, + STATE(1681), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6280), 3, + ACTIONS(6296), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1103), 36, + ACTIONS(967), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137446,32 +138166,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69564] = 7, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, - sym__whitespace_ge_2, - ACTIONS(5739), 1, + [70420] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - ACTIONS(6284), 1, - anon_sym_GT, - ACTIONS(6286), 2, - sym__word_no_digit, - sym__digits, - STATE(1647), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6282), 31, + STATE(1653), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6234), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(977), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137491,6 +138203,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, @@ -137499,20 +138212,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [69620] = 4, - ACTIONS(1247), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [70470] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1677), 1, + STATE(1682), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6288), 3, + ACTIONS(6298), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1245), 36, + ACTIONS(977), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137541,24 +138258,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69670] = 4, - ACTIONS(1008), 1, + [70520] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 36, + ACTIONS(985), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137587,24 +138304,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69720] = 4, - ACTIONS(1008), 1, + [70570] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1640), 1, + STATE(1684), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6290), 3, + ACTIONS(6300), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 36, + ACTIONS(985), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137633,30 +138350,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69770] = 4, - ACTIONS(897), 1, + [70620] = 3, + ACTIONS(6308), 1, + sym__last_token_punctuation, + ACTIONS(6305), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(895), 36, + ACTIONS(6302), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137674,29 +138388,31 @@ 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, - 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, - [69820] = 4, - ACTIONS(897), 1, + [70668] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(1679), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6292), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 36, + ACTIONS(991), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137725,32 +138441,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69870] = 7, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, - sym__whitespace_ge_2, - ACTIONS(5739), 1, + [70718] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - ACTIONS(6294), 1, - anon_sym_GT, - ACTIONS(6296), 2, - sym__word_no_digit, - sym__digits, - STATE(1676), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6282), 31, + STATE(1685), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6310), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(991), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137770,6 +138478,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, @@ -137778,20 +138487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [69926] = 4, - ACTIONS(857), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [70768] = 4, + ACTIONS(1206), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 36, + ACTIONS(1204), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137820,24 +138533,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69976] = 4, - ACTIONS(857), 1, + [70818] = 4, + ACTIONS(1372), 1, aux_sym__whitespace_token1, - STATE(1680), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6298), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 36, + ACTIONS(1370), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137866,24 +138579,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70026] = 4, - ACTIONS(837), 1, + [70868] = 4, + ACTIONS(1376), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 36, + ACTIONS(1374), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137912,24 +138625,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70076] = 4, - ACTIONS(837), 1, + [70918] = 4, + ACTIONS(1380), 1, aux_sym__whitespace_token1, - STATE(1681), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6300), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 36, + ACTIONS(1378), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137958,24 +138671,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70126] = 4, - ACTIONS(825), 1, + [70968] = 4, + ACTIONS(1368), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 36, + ACTIONS(1366), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138004,22 +138717,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70176] = 3, - ACTIONS(6302), 1, + [71018] = 3, + ACTIONS(6312), 1, sym__last_token_whitespace, ACTIONS(2990), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, ACTIONS(2988), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138046,9 +138759,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138057,16 +138768,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70224] = 4, - ACTIONS(825), 1, + [71066] = 4, + ACTIONS(1307), 1, aux_sym__whitespace_token1, - STATE(1682), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6304), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 36, + ACTIONS(1305), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138095,24 +138808,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70274] = 4, - ACTIONS(803), 1, + [71116] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 36, + ACTIONS(1240), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138141,32 +138854,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70324] = 7, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, - sym__whitespace_ge_2, - ACTIONS(5739), 1, + [71166] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - ACTIONS(6306), 1, - anon_sym_GT, - ACTIONS(6308), 2, - sym__word_no_digit, - sym__digits, - STATE(1659), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6282), 31, + STATE(1688), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6314), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1240), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138186,6 +138891,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, @@ -138194,20 +138900,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [70380] = 4, - ACTIONS(803), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [71216] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - STATE(1684), 1, + STATE(1689), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6310), 3, + ACTIONS(6316), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 36, + ACTIONS(754), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138236,32 +138946,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70430] = 7, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, - sym__whitespace_ge_2, - ACTIONS(5739), 1, + [71266] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - ACTIONS(6312), 1, - anon_sym_GT, - ACTIONS(6286), 2, - sym__word_no_digit, - sym__digits, - STATE(1647), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6282), 31, + STATE(1653), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6234), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(754), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138281,6 +138983,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, @@ -138289,20 +138992,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [70486] = 4, - ACTIONS(777), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [71316] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 36, + ACTIONS(1062), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138331,24 +139038,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70536] = 4, - ACTIONS(777), 1, + [71366] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1685), 1, + STATE(1695), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6314), 3, + ACTIONS(6318), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 36, + ACTIONS(1062), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138377,24 +139084,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70586] = 4, - ACTIONS(960), 1, + [71416] = 4, + ACTIONS(1050), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(958), 36, + ACTIONS(1048), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138423,24 +139130,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70636] = 4, - ACTIONS(964), 1, + [71466] = 7, + ACTIONS(1782), 1, + aux_sym__newline_token1, + ACTIONS(5672), 1, + sym__whitespace_ge_2, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(962), 36, + ACTIONS(6320), 1, + anon_sym_GT, + ACTIONS(6322), 2, + sym__word_no_digit, + sym__digits, + STATE(1693), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6243), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138460,7 +139175,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, @@ -138469,24 +139183,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [71522] = 7, + ACTIONS(1782), 1, + aux_sym__newline_token1, + ACTIONS(5672), 1, sym__whitespace_ge_2, + ACTIONS(5674), 1, + aux_sym__whitespace_token1, + ACTIONS(6324), 1, + anon_sym_GT, + ACTIONS(6326), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [70686] = 4, - ACTIONS(968), 1, - aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(966), 36, + STATE(1701), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6243), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138506,7 +139224,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, @@ -138515,24 +139232,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [71578] = 6, + ACTIONS(4808), 1, sym__whitespace_ge_2, + ACTIONS(4810), 1, + aux_sym__whitespace_token1, + ACTIONS(6328), 1, + sym__code_span_close, + ACTIONS(6249), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [70736] = 4, - ACTIONS(972), 1, + STATE(1661), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(3022), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, + anon_sym_TILDE, + [71632] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(1651), 1, + STATE(1653), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, + ACTIONS(6234), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(970), 36, + ACTIONS(1173), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138561,32 +139322,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70786] = 7, - ACTIONS(1840), 1, + [71682] = 7, + ACTIONS(1782), 1, aux_sym__newline_token1, - ACTIONS(5737), 1, + ACTIONS(5672), 1, sym__whitespace_ge_2, - ACTIONS(5739), 1, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - ACTIONS(6316), 1, + ACTIONS(6330), 1, anon_sym_GT, - ACTIONS(6286), 2, + ACTIONS(6326), 2, sym__word_no_digit, sym__digits, - STATE(1647), 4, + STATE(1701), 4, sym__whitespace, sym__word, sym__newline, aux_sym__declaration_repeat1, - ACTIONS(6282), 31, + ACTIONS(6243), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138614,26 +139375,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [70842] = 4, - ACTIONS(956), 1, + [71738] = 3, + ACTIONS(6336), 1, + sym__last_token_punctuation, + ACTIONS(6334), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(954), 36, + ACTIONS(6332), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138651,37 +139409,37 @@ 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, - 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, - [70892] = 4, - ACTIONS(950), 1, + [71786] = 4, + ACTIONS(6025), 1, + sym__blank_line_start, + STATE(2488), 1, + sym__blank_line, + ACTIONS(6340), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(948), 36, + ACTIONS(6338), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -138697,38 +139455,41 @@ 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, - 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, - [70942] = 4, - ACTIONS(950), 1, + [71836] = 5, + ACTIONS(6336), 1, + sym__last_token_punctuation, + ACTIONS(6345), 1, aux_sym__whitespace_token1, - STATE(1689), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6318), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(948), 36, + ACTIONS(6334), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(6342), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(6332), 34, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -138743,37 +139504,37 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, + [71888] = 7, + ACTIONS(1782), 1, aux_sym__newline_token1, - [70992] = 7, - ACTIONS(1840), 1, - aux_sym__newline_token1, - ACTIONS(5737), 1, + ACTIONS(5672), 1, sym__whitespace_ge_2, - ACTIONS(5739), 1, + ACTIONS(5674), 1, aux_sym__whitespace_token1, - ACTIONS(6320), 1, + ACTIONS(6348), 1, anon_sym_GT, - ACTIONS(6322), 2, + ACTIONS(6326), 2, sym__word_no_digit, sym__digits, - STATE(1683), 4, + STATE(1701), 4, sym__whitespace, sym__word, sym__newline, aux_sym__declaration_repeat1, - ACTIONS(6282), 31, + ACTIONS(6243), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138801,66 +139562,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [71048] = 4, - ACTIONS(905), 1, - aux_sym__whitespace_token1, - STATE(1690), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6324), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(903), 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, + [71944] = 7, + ACTIONS(6353), 1, 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, + ACTIONS(6355), 1, sym__whitespace_ge_2, + ACTIONS(6358), 1, + aux_sym__whitespace_token1, + ACTIONS(6364), 1, + aux_sym__newline_token1, + ACTIONS(6361), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [71098] = 4, - ACTIONS(905), 1, - aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(903), 36, + STATE(1701), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6350), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138880,7 +139603,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, @@ -138889,30 +139611,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71148] = 4, - ACTIONS(869), 1, + [72000] = 3, + ACTIONS(6224), 1, + sym__last_token_punctuation, + ACTIONS(6369), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(867), 36, + ACTIONS(6367), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138930,27 +139645,29 @@ 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, - 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, - [71198] = 3, - ACTIONS(4878), 1, + [72048] = 3, + ACTIONS(5014), 1, sym__last_token_punctuation, - ACTIONS(4867), 3, + ACTIONS(5003), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4865), 37, + ACTIONS(5001), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138977,9 +139694,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138988,16 +139703,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71246] = 4, - ACTIONS(869), 1, + [72096] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(1693), 1, + STATE(1691), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6326), 3, + ACTIONS(6371), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 36, + ACTIONS(1173), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139026,24 +139743,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71296] = 4, - ACTIONS(851), 1, + [72146] = 6, + ACTIONS(4808), 1, + sym__whitespace_ge_2, + ACTIONS(4810), 1, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(849), 36, + ACTIONS(6373), 1, + sym__code_span_close, + ACTIONS(6249), 2, + sym__word_no_digit, + sym__digits, + STATE(1661), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(3022), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139072,36 +139795,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71346] = 6, - ACTIONS(4924), 1, - sym__whitespace_ge_2, - ACTIONS(4926), 1, + [72200] = 3, + ACTIONS(6381), 1, + sym__last_token_punctuation, + ACTIONS(6378), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6330), 1, - sym__code_span_close, - ACTIONS(6328), 2, - sym__word_no_digit, - sym__digits, - STATE(1699), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(3022), 32, + ACTIONS(6375), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139119,31 +139829,34 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [71400] = 4, - ACTIONS(851), 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, + [72248] = 3, + ACTIONS(4806), 1, + sym__last_token_punctuation, + ACTIONS(4795), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1696), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6332), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(849), 36, + ACTIONS(4793), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139161,35 +139874,34 @@ 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, - 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, - [71450] = 4, - ACTIONS(821), 1, + [72296] = 3, + ACTIONS(6383), 1, + sym__last_token_punctuation, + ACTIONS(6228), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1651), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6214), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(819), 36, + ACTIONS(6226), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139207,27 +139919,27 @@ 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, - 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, - [71500] = 3, - ACTIONS(6340), 1, - sym__last_token_punctuation, - ACTIONS(6337), 3, + [72344] = 2, + ACTIONS(6385), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6334), 37, + ACTIONS(4755), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139254,9 +139966,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139265,14 +139975,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71548] = 3, - ACTIONS(4815), 1, - sym__last_token_punctuation, - ACTIONS(4804), 3, + [72389] = 2, + ACTIONS(3107), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4802), 37, + ACTIONS(3105), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139299,9 +140009,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139310,22 +140018,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71596] = 6, - ACTIONS(6345), 1, - sym__whitespace_ge_2, - ACTIONS(6348), 1, + [72434] = 4, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(6389), 1, aux_sym__whitespace_token1, - ACTIONS(6354), 1, - sym__code_span_close, - ACTIONS(6351), 2, - sym__word_no_digit, - sym__digits, - STATE(1699), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(6342), 32, + STATE(2437), 1, + sym__blank_line, + ACTIONS(6387), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139354,23 +140057,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [71650] = 3, - ACTIONS(6356), 1, - sym__last_token_punctuation, - ACTIONS(6255), 3, - anon_sym_AMP, - anon_sym_BSLASH, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [72483] = 3, + ACTIONS(6369), 1, aux_sym__whitespace_token1, - ACTIONS(6253), 37, + ACTIONS(6391), 1, + sym__last_token_punctuation, + ACTIONS(6367), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139388,34 +140096,25 @@ 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, - 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, - [71698] = 5, - ACTIONS(6232), 1, - sym__last_token_punctuation, - ACTIONS(6361), 1, - aux_sym__whitespace_token1, - ACTIONS(6230), 2, + [72530] = 2, + ACTIONS(5825), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(6358), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(6228), 34, + aux_sym__whitespace_token1, + ACTIONS(5814), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139423,6 +140122,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, @@ -139441,31 +140141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - [71750] = 6, - ACTIONS(4924), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(6364), 1, - sym__code_span_close, - ACTIONS(6328), 2, sym__word_no_digit, sym__digits, - STATE(1699), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(3022), 32, + aux_sym__newline_token1, + [72575] = 3, + ACTIONS(6393), 1, + sym__last_token_whitespace, + ACTIONS(2990), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(2988), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139486,7 +140180,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, @@ -139494,32 +140187,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [71804] = 6, - ACTIONS(4924), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(6366), 1, - sym__code_span_close, - ACTIONS(6328), 2, sym__word_no_digit, sym__digits, - STATE(1699), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(3022), 32, + aux_sym__newline_token1, + [72622] = 2, + ACTIONS(2210), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2208), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139537,23 +140224,29 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [71858] = 3, - ACTIONS(2990), 1, - aux_sym__whitespace_token1, - ACTIONS(6368), 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, + [72667] = 3, + ACTIONS(6395), 1, sym__last_token_whitespace, - ACTIONS(2988), 38, + ACTIONS(2990), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(2988), 37, sym__block_close, - sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139566,7 +140259,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, @@ -139582,20 +140274,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71905] = 2, - ACTIONS(2194), 3, + [72714] = 2, + ACTIONS(6399), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2192), 37, + ACTIONS(6397), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139622,9 +140315,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139633,17 +140324,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71950] = 2, - ACTIONS(2166), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [72759] = 3, + ACTIONS(6403), 1, aux_sym__whitespace_token1, - ACTIONS(2164), 37, + ACTIONS(6405), 2, + sym__close_block, + sym__last_token_punctuation, + ACTIONS(6401), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139661,29 +140357,38 @@ 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, - 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, - [71995] = 3, - ACTIONS(2990), 1, + [72806] = 7, + ACTIONS(6409), 1, + anon_sym_GT, + ACTIONS(6411), 1, + anon_sym_BSLASH, + ACTIONS(6415), 1, + sym__whitespace_ge_2, + ACTIONS(6417), 1, aux_sym__whitespace_token1, - ACTIONS(6370), 1, - sym__last_token_whitespace, - ACTIONS(2988), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(6413), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1745), 4, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(6407), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139701,39 +140406,45 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, + [72861] = 7, + ACTIONS(6422), 1, + anon_sym_GT, + ACTIONS(6424), 1, + anon_sym_BSLASH, + ACTIONS(6430), 1, sym__whitespace_ge_2, + ACTIONS(6433), 1, + aux_sym__whitespace_token1, + ACTIONS(6427), 3, + sym_backslash_escape, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [72042] = 3, - ACTIONS(6372), 1, - sym__last_token_punctuation, - ACTIONS(6218), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(6216), 36, + STATE(1720), 4, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(6419), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -139743,9 +140454,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, anon_sym_AT, anon_sym_LBRACK, @@ -139753,28 +140462,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [72089] = 2, - ACTIONS(2250), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [72916] = 3, + ACTIONS(6436), 1, + sym__last_token_whitespace, + ACTIONS(2990), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(2248), 37, + ACTIONS(2988), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139792,41 +140497,37 @@ 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, - anon_sym_LBRACE, 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, - [72134] = 3, - ACTIONS(6378), 1, - sym__last_token_punctuation, - ACTIONS(6376), 2, - anon_sym_DASH, + [72963] = 2, + ACTIONS(2236), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6374), 37, - sym__block_close, + ACTIONS(2234), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -139837,26 +140538,27 @@ 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, - anon_sym_LBRACE, 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, - [72181] = 2, - ACTIONS(2228), 3, + [73008] = 2, + ACTIONS(5825), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2226), 37, + ACTIONS(5814), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139883,9 +140585,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139894,12 +140594,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72226] = 2, - ACTIONS(6382), 3, + [73053] = 2, + ACTIONS(6440), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6380), 37, + ACTIONS(6438), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139926,9 +140628,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139937,12 +140637,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72271] = 2, - ACTIONS(2174), 3, + [73098] = 2, + ACTIONS(6442), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2172), 37, + ACTIONS(4830), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139969,9 +140671,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139980,25 +140680,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72316] = 4, - ACTIONS(6384), 1, - anon_sym_LPAREN, - ACTIONS(6218), 3, + [73143] = 2, + ACTIONS(6446), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6386), 4, - anon_sym_RPAREN, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(6216), 32, + ACTIONS(6444), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -140017,25 +140714,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [72365] = 2, - ACTIONS(2202), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [73188] = 4, + ACTIONS(2142), 1, + sym__blank_line_start, + ACTIONS(6450), 1, aux_sym__whitespace_token1, - ACTIONS(2200), 37, + STATE(2476), 1, + sym__blank_line, + ACTIONS(6448), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140053,30 +140757,27 @@ 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, - 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, - [72410] = 4, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(6391), 1, + [73237] = 3, + ACTIONS(6452), 1, + sym__last_token_whitespace, + ACTIONS(2990), 2, + anon_sym_LT, aux_sym__whitespace_token1, - STATE(2509), 1, - sym__blank_line, - ACTIONS(6389), 37, + ACTIONS(2988), 37, sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140094,7 +140795,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, @@ -140105,20 +140805,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [72459] = 2, - ACTIONS(5373), 3, + [73284] = 2, + ACTIONS(417), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5368), 37, + ACTIONS(415), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140145,9 +140846,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140156,12 +140855,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72504] = 2, - ACTIONS(6337), 3, + [73329] = 2, + ACTIONS(6456), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6334), 37, + ACTIONS(6454), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140188,9 +140889,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140199,25 +140898,60 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72549] = 7, - ACTIONS(6395), 1, + [73374] = 3, + ACTIONS(6369), 1, + aux_sym__whitespace_token1, + ACTIONS(6458), 1, + sym__last_token_punctuation, + ACTIONS(6367), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + 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(6397), 1, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(6401), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, sym__whitespace_ge_2, - ACTIONS(6403), 1, - aux_sym__whitespace_token1, - ACTIONS(6399), 3, - sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1733), 4, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(6393), 29, + aux_sym__newline_token1, + [73421] = 3, + ACTIONS(6464), 1, + sym__last_token_punctuation, + ACTIONS(6462), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(6460), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140235,24 +140969,31 @@ 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_QMARK, + 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, - [72604] = 2, - ACTIONS(6407), 3, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [73468] = 2, + ACTIONS(2220), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6405), 37, + ACTIONS(2218), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140279,9 +141020,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140290,20 +141029,19 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72649] = 3, - ACTIONS(6413), 1, - sym__last_token_punctuation, - ACTIONS(6411), 2, - anon_sym_QMARK, + [73513] = 2, + ACTIONS(6305), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6409), 37, - sym__block_close, + ACTIONS(6302), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140318,28 +141056,30 @@ 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, - anon_sym_LBRACE, 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, - [72696] = 2, - ACTIONS(5961), 3, + [73558] = 2, + ACTIONS(6469), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5959), 37, + ACTIONS(6466), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140366,9 +141106,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140377,12 +141115,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72741] = 2, - ACTIONS(3107), 3, + [73603] = 2, + ACTIONS(6378), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3105), 37, + ACTIONS(6375), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140409,9 +141149,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140420,24 +141158,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72786] = 2, - ACTIONS(6417), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [73648] = 3, + ACTIONS(6476), 1, + sym__last_token_punctuation, + ACTIONS(6474), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6415), 37, + ACTIONS(6472), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -140448,27 +141190,26 @@ 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, - anon_sym_LBRACE, 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, - [72831] = 2, - ACTIONS(6422), 3, + [73695] = 2, + ACTIONS(2216), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6419), 37, + ACTIONS(2214), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140495,9 +141236,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140506,19 +141245,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72876] = 2, - ACTIONS(6223), 3, + [73740] = 3, + ACTIONS(6478), 1, + sym__last_token_punctuation, + ACTIONS(6340), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6220), 37, + ACTIONS(6338), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -140538,9 +141280,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140549,12 +141289,19 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72921] = 2, - ACTIONS(2178), 3, + [73787] = 4, + ACTIONS(6487), 1, + aux_sym__whitespace_token1, + ACTIONS(6482), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2176), 37, + ACTIONS(6484), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(6480), 34, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140562,7 +141309,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, @@ -140581,31 +141327,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [72966] = 2, - ACTIONS(2186), 3, + [73836] = 4, + ACTIONS(6490), 1, + anon_sym_LPAREN, + ACTIONS(6340), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2184), 37, + ACTIONS(6492), 4, + anon_sym_RPAREN, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(6338), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -140624,23 +141373,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73011] = 2, - ACTIONS(691), 3, + [73885] = 2, + ACTIONS(2228), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(689), 37, + ACTIONS(2226), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140667,9 +141413,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140678,17 +141422,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73056] = 2, - ACTIONS(2254), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [73930] = 3, + ACTIONS(6499), 1, + sym__last_token_punctuation, + ACTIONS(6497), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(2252), 37, + ACTIONS(6495), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140700,33 +141449,31 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73101] = 2, - ACTIONS(6427), 3, + [73977] = 2, + ACTIONS(736), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6425), 37, + ACTIONS(734), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140753,9 +141500,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140764,69 +141509,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73146] = 3, - ACTIONS(6429), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(2988), 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, + [74022] = 7, + ACTIONS(6411), 1, 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, + ACTIONS(6415), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [73193] = 7, - ACTIONS(6434), 1, - anon_sym_GT, - ACTIONS(6436), 1, - anon_sym_BSLASH, - ACTIONS(6442), 1, - sym__whitespace_ge_2, - ACTIONS(6445), 1, + ACTIONS(6417), 1, aux_sym__whitespace_token1, - ACTIONS(6439), 3, + ACTIONS(6501), 1, + anon_sym_GT, + ACTIONS(6503), 3, sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1733), 4, + STATE(1720), 4, sym__text_no_angle, sym__whitespace, sym__word, aux_sym_link_destination_repeat1, - ACTIONS(6431), 29, + ACTIONS(6407), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140852,16 +141555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [73248] = 2, - ACTIONS(5961), 3, + [74077] = 2, + ACTIONS(2202), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5959), 37, + ACTIONS(2200), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140888,9 +141591,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140899,12 +141600,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73293] = 2, - ACTIONS(6450), 3, + [74122] = 2, + ACTIONS(3947), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6448), 37, + ACTIONS(3945), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140931,9 +141634,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140942,12 +141643,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73338] = 2, - ACTIONS(2240), 3, + [74167] = 2, + ACTIONS(6482), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2238), 37, + ACTIONS(6480), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -140974,9 +141677,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140985,12 +141686,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73383] = 2, - ACTIONS(6452), 3, + [74212] = 2, + ACTIONS(2190), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5002), 37, + ACTIONS(2188), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141017,9 +141720,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141028,12 +141729,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73428] = 2, - ACTIONS(2220), 3, + [74257] = 2, + ACTIONS(6508), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2218), 37, + ACTIONS(6505), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141060,9 +141763,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141071,64 +141772,19 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73473] = 3, - ACTIONS(6454), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(2988), 37, - sym__block_close, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + [74302] = 2, + ACTIONS(5389), 3, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, + aux_sym__whitespace_token1, + ACTIONS(5384), 37, 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, - [73520] = 3, - ACTIONS(6458), 1, - aux_sym__whitespace_token1, - ACTIONS(6460), 2, - sym__close_block, - sym__last_token_punctuation, - ACTIONS(6456), 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, @@ -141146,71 +141802,29 @@ 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, - 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, - [73567] = 3, - ACTIONS(6261), 1, - aux_sym__whitespace_token1, - ACTIONS(6462), 1, + [74347] = 3, + ACTIONS(6515), 1, sym__last_token_punctuation, - ACTIONS(6259), 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, + ACTIONS(6513), 2, 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, - [73614] = 3, - ACTIONS(6261), 1, aux_sym__whitespace_token1, - ACTIONS(6464), 1, - sym__last_token_punctuation, - ACTIONS(6259), 38, + ACTIONS(6511), 37, sym__block_close, - sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141235,32 +141849,29 @@ 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, - 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, - [73661] = 3, - ACTIONS(6470), 1, - sym__last_token_punctuation, - ACTIONS(6468), 2, - anon_sym_RBRACK, + [74394] = 2, + ACTIONS(2206), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6466), 37, - sym__block_close, + ACTIONS(2204), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141278,33 +141889,32 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73708] = 3, - ACTIONS(6472), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_QMARK, + [74439] = 2, + ACTIONS(2252), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2988), 37, - sym__block_close, + ACTIONS(2250), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141319,28 +141929,30 @@ 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, - anon_sym_LBRACE, 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, - [73755] = 2, - ACTIONS(6477), 3, + [74484] = 2, + ACTIONS(2248), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6474), 37, + ACTIONS(2246), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141367,9 +141979,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141378,25 +141988,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73800] = 7, - ACTIONS(6397), 1, - anon_sym_BSLASH, - ACTIONS(6401), 1, - sym__whitespace_ge_2, - ACTIONS(6403), 1, + [74529] = 3, + ACTIONS(2990), 1, aux_sym__whitespace_token1, - ACTIONS(6480), 1, - anon_sym_GT, - ACTIONS(6482), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1719), 4, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(6393), 29, + ACTIONS(6517), 1, + sym__last_token_whitespace, + ACTIONS(2988), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141414,24 +142015,31 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [73855] = 2, - ACTIONS(3744), 3, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [74576] = 2, + ACTIONS(2166), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3742), 37, + ACTIONS(2164), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141458,9 +142066,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141469,15 +142075,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73900] = 4, - ACTIONS(2032), 1, - sym__blank_line_start, - ACTIONS(6486), 1, + [74621] = 3, + ACTIONS(2990), 1, aux_sym__whitespace_token1, - STATE(2459), 1, - sym__blank_line, - ACTIONS(6484), 37, + ACTIONS(6519), 1, + sym__last_token_whitespace, + ACTIONS(2988), 38, sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141506,22 +142113,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73949] = 3, - ACTIONS(6488), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_RBRACK, + [74668] = 2, + ACTIONS(3107), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(2988), 37, + ACTIONS(3105), 37, sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141542,33 +142147,35 @@ 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, - anon_sym_LBRACE, 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, - [73996] = 2, - ACTIONS(483), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [74712] = 3, + ACTIONS(6403), 1, aux_sym__whitespace_token1, - ACTIONS(481), 37, + ACTIONS(6405), 1, + sym__last_token_punctuation, + ACTIONS(6401), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141586,39 +142193,35 @@ 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, - 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, - [74041] = 4, - ACTIONS(6493), 1, + [74758] = 3, + ACTIONS(6525), 1, + sym__last_token_punctuation, + ACTIONS(6523), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6450), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(6490), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(6448), 34, + ACTIONS(6521), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -141630,30 +142233,29 @@ 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, - anon_sym_LBRACE, 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, - [74090] = 3, - ACTIONS(6500), 1, - sym__last_token_punctuation, - ACTIONS(6498), 2, - anon_sym_LT, + aux_sym__newline_token1, + [74804] = 3, + ACTIONS(6450), 1, aux_sym__whitespace_token1, - ACTIONS(6496), 37, + ACTIONS(6527), 1, + sym__last_token_punctuation, + ACTIONS(6448), 37, sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141671,6 +142273,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, @@ -141681,26 +142284,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74137] = 2, - ACTIONS(6502), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [74850] = 3, + ACTIONS(6389), 1, aux_sym__whitespace_token1, - ACTIONS(4935), 37, + ACTIONS(6529), 1, + sym__last_token_punctuation, + ACTIONS(6387), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141718,75 +142322,25 @@ 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, - 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, - [74182] = 7, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(2150), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 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, + [74896] = 2, + ACTIONS(3107), 2, 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, + aux_sym__whitespace_token1, + ACTIONS(3105), 37, + sym__block_close, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [74236] = 3, - ACTIONS(6508), 1, - sym__last_token_punctuation, - ACTIONS(6506), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(6504), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141799,7 +142353,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, @@ -141807,6 +142360,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, @@ -141814,21 +142368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74282] = 2, - ACTIONS(3107), 2, - anon_sym_RBRACK, + [74940] = 3, + ACTIONS(6533), 1, + sym__last_token_punctuation, + ACTIONS(6531), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(3105), 37, - sym__block_close, + ACTIONS(6106), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141841,7 +142396,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, @@ -141853,72 +142407,26 @@ 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, - anon_sym_LBRACE, 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, - [74326] = 7, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(2149), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 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, + [74986] = 3, + ACTIONS(6535), 1, + sym__last_token_whitespace, + ACTIONS(2990), 2, anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, + aux_sym__whitespace_token1, + ACTIONS(2988), 36, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [74380] = 3, - ACTIONS(6486), 1, - aux_sym__whitespace_token1, - ACTIONS(6510), 1, - sym__last_token_punctuation, - ACTIONS(6484), 37, - sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141943,24 +142451,25 @@ 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, - 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, - [74426] = 2, - ACTIONS(3107), 2, - anon_sym_QMARK, + [75032] = 3, + ACTIONS(2990), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 37, - sym__block_close, + ACTIONS(6537), 1, + sym__last_token_whitespace, + ACTIONS(2988), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -141981,6 +142490,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, @@ -141988,35 +142498,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74470] = 7, - ACTIONS(4257), 1, + [75078] = 7, + ACTIONS(4253), 1, anon_sym_LT, - ACTIONS(4585), 1, + ACTIONS(4557), 1, anon_sym_LPAREN, - STATE(2161), 1, + STATE(2181), 1, sym_link_destination, - ACTIONS(4249), 2, + ACTIONS(4245), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1314), 2, + STATE(1316), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4259), 5, + ACTIONS(4255), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4245), 27, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142040,16 +142549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [74524] = 2, - ACTIONS(6407), 1, + [75132] = 2, + ACTIONS(6539), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6405), 38, + ACTIONS(5642), 37, sym__block_close, - sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142070,7 +142579,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, @@ -142078,68 +142586,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74568] = 7, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(2155), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 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, + [75176] = 2, + ACTIONS(3107), 2, anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, + aux_sym__whitespace_token1, + ACTIONS(3105), 37, + sym__block_close, anon_sym_LBRACE, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_TILDE, - [74622] = 3, - ACTIONS(6516), 1, - sym__last_token_punctuation, - ACTIONS(6514), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(6512), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142152,6 +142613,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, @@ -142163,26 +142625,25 @@ 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, - anon_sym_LBRACE, 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, - [74668] = 3, - ACTIONS(2990), 1, - aux_sym__whitespace_token1, - ACTIONS(6518), 1, + [75220] = 3, + ACTIONS(6541), 1, sym__last_token_whitespace, - ACTIONS(2988), 37, - sym__code_span_close, + ACTIONS(2990), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(2988), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142203,7 +142664,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, @@ -142211,105 +142671,68 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74714] = 2, - ACTIONS(6407), 1, - aux_sym__whitespace_token1, - ACTIONS(6405), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, + [75266] = 7, + ACTIONS(4253), 1, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(2178), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym__whitespace_ge_2, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [74758] = 3, - ACTIONS(6520), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(2988), 36, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [74804] = 2, - ACTIONS(3107), 2, - anon_sym_DASH, + [75320] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 37, + ACTIONS(3105), 38, sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142322,6 +142745,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, @@ -142337,27 +142761,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74848] = 2, - ACTIONS(6524), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [75364] = 3, + ACTIONS(6369), 1, aux_sym__whitespace_token1, - ACTIONS(6522), 36, + ACTIONS(6543), 1, + sym__last_token_punctuation, + ACTIONS(6367), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -142373,27 +142799,25 @@ 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, - 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, - [74892] = 2, - ACTIONS(6526), 2, - anon_sym_LT, + [75410] = 2, + ACTIONS(6399), 1, aux_sym__whitespace_token1, - ACTIONS(5334), 37, + ACTIONS(6397), 38, sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142411,6 +142835,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, @@ -142421,21 +142846,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74936] = 2, - ACTIONS(6528), 2, - anon_sym_DASH, + [75454] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(5357), 37, + ACTIONS(3105), 38, sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142448,6 +142872,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, @@ -142463,30 +142888,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74980] = 2, - ACTIONS(3107), 2, + [75498] = 7, + ACTIONS(4253), 1, anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(3105), 37, - sym__block_close, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(2183), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -142500,27 +142935,20 @@ 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, - 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, - [75024] = 3, - ACTIONS(6458), 1, + [75552] = 2, + ACTIONS(6399), 1, aux_sym__whitespace_token1, - ACTIONS(6460), 1, - sym__last_token_punctuation, - ACTIONS(6456), 37, + ACTIONS(6397), 38, sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142549,21 +142977,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75070] = 3, - ACTIONS(6532), 1, - sym__last_token_punctuation, - ACTIONS(6530), 2, + [75596] = 2, + ACTIONS(6545), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6176), 36, + ACTIONS(5574), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142591,41 +143018,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75116] = 7, - ACTIONS(4257), 1, + [75640] = 2, + ACTIONS(6547), 2, anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(2170), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + aux_sym__whitespace_token1, + ACTIONS(5543), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -142639,29 +143055,27 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [75170] = 6, - ACTIONS(1710), 1, - aux_sym__newline_token1, - ACTIONS(5052), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(5054), 1, - aux_sym__whitespace_token1, - ACTIONS(6516), 2, sym__word_no_digit, sym__digits, - STATE(1798), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(6534), 31, + aux_sym__newline_token1, + [75684] = 3, + ACTIONS(2990), 1, + aux_sym__whitespace_token1, + ACTIONS(6549), 1, + sym__last_token_whitespace, + ACTIONS(2988), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142674,6 +143088,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, @@ -142689,17 +143104,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [75222] = 3, - ACTIONS(6536), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_RBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [75730] = 3, + ACTIONS(6369), 1, aux_sym__whitespace_token1, - ACTIONS(2988), 36, + ACTIONS(6551), 1, + sym__last_token_punctuation, + ACTIONS(6367), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142724,24 +143143,25 @@ 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, - 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, - [75268] = 2, - ACTIONS(3107), 1, + [75776] = 3, + ACTIONS(6553), 1, + sym__last_token_punctuation, + ACTIONS(6523), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(3105), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(6521), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142766,34 +143186,44 @@ 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, - 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, - [75312] = 3, - ACTIONS(6261), 1, - aux_sym__whitespace_token1, - ACTIONS(6538), 1, - sym__last_token_punctuation, - ACTIONS(6259), 37, - sym__block_close, + [75822] = 7, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(2156), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -142802,32 +143232,25 @@ 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, - 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, - [75358] = 3, - ACTIONS(2990), 1, + [75876] = 2, + ACTIONS(6555), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6540), 1, - sym__last_token_whitespace, - ACTIONS(2988), 37, + ACTIONS(5597), 37, sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142852,34 +143275,44 @@ 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, - 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, - [75404] = 3, - ACTIONS(6261), 1, - aux_sym__whitespace_token1, - ACTIONS(6542), 1, - sym__last_token_punctuation, - ACTIONS(6259), 37, - sym__code_span_close, + [75920] = 7, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -142888,32 +143321,73 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, + [75974] = 7, + ACTIONS(4253), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(2161), 1, + sym_link_destination, + ACTIONS(4245), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1316), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4255), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [75450] = 3, - ACTIONS(6544), 1, - sym__last_token_punctuation, - ACTIONS(6506), 2, + ACTIONS(4241), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PIPE, + anon_sym_TILDE, + [76028] = 3, + ACTIONS(6561), 1, + sym__last_token_punctuation, + ACTIONS(6559), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6504), 36, + ACTIONS(6557), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142926,7 +143400,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, @@ -142938,24 +143411,34 @@ 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, - anon_sym_LBRACE, 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, - [75496] = 2, - ACTIONS(3107), 1, + [76074] = 6, + ACTIONS(1758), 1, + aux_sym__newline_token1, + ACTIONS(5092), 1, + sym__whitespace_ge_2, + ACTIONS(5094), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(6561), 2, + sym__word_no_digit, + sym__digits, + STATE(1825), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(6563), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -142968,7 +143451,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, @@ -142984,20 +143466,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75540] = 2, - ACTIONS(6546), 2, - anon_sym_QMARK, + [76126] = 3, + ACTIONS(6565), 1, + sym__last_token_whitespace, + ACTIONS(2990), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5406), 37, - sym__block_close, + ACTIONS(2988), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143010,7 +143489,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, @@ -143018,6 +143496,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, @@ -143025,21 +143504,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75584] = 2, - ACTIONS(6548), 3, + [76172] = 2, + ACTIONS(6569), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5190), 36, + ACTIONS(6567), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143065,9 +143544,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -143076,20 +143553,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75628] = 2, - ACTIONS(6550), 2, - anon_sym_RBRACK, + [76216] = 2, + ACTIONS(6571), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5429), 37, - sym__block_close, + ACTIONS(5293), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -143105,26 +143582,27 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75672] = 3, - ACTIONS(6391), 1, + [76260] = 2, + ACTIONS(3107), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(6552), 1, - sym__last_token_punctuation, - ACTIONS(6389), 37, + ACTIONS(3105), 37, sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143142,7 +143620,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, @@ -143153,40 +143630,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75718] = 7, - ACTIONS(4257), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_LPAREN, - STATE(2179), 1, - sym_link_destination, - ACTIONS(4249), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1314), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4259), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4245), 27, + [76304] = 2, + ACTIONS(2220), 1, + aux_sym__whitespace_token1, + ACTIONS(2218), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, 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, @@ -143195,26 +143661,30 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [75772] = 3, - ACTIONS(6554), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_QMARK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [76347] = 2, + ACTIONS(6399), 1, aux_sym__whitespace_token1, - ACTIONS(2988), 36, + ACTIONS(6397), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143235,6 +143705,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, @@ -143242,21 +143713,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75818] = 3, - ACTIONS(6558), 1, + [76390] = 2, + ACTIONS(6573), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6560), 1, - sym__last_token_punctuation, - ACTIONS(6556), 36, + ACTIONS(5851), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143277,7 +143746,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, @@ -143285,19 +143753,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75863] = 2, - ACTIONS(6562), 2, - anon_sym_QMARK, + [76433] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(5650), 36, + ACTIONS(3105), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143318,6 +143787,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, @@ -143325,20 +143795,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75906] = 2, - ACTIONS(6407), 1, + [76476] = 2, + ACTIONS(3107), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6405), 37, - sym__code_span_close, + ACTIONS(3105), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143359,7 +143828,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, @@ -143367,19 +143835,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75949] = 2, - ACTIONS(691), 1, + [76519] = 2, + ACTIONS(6399), 1, aux_sym__whitespace_token1, - ACTIONS(689), 37, + ACTIONS(6397), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143408,19 +143877,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75992] = 2, - ACTIONS(483), 1, + [76562] = 2, + ACTIONS(2206), 1, aux_sym__whitespace_token1, - ACTIONS(481), 37, + ACTIONS(2204), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143449,61 +143918,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76035] = 2, - ACTIONS(6562), 2, - anon_sym_RBRACK, + [76605] = 2, + ACTIONS(6575), 1, aux_sym__whitespace_token1, - ACTIONS(5650), 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, + ACTIONS(6072), 37, + sym__block_close, 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, - [76078] = 3, - ACTIONS(2990), 1, - aux_sym__whitespace_token1, - ACTIONS(6564), 1, - sym__last_token_whitespace, - ACTIONS(2988), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143532,19 +143959,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76123] = 2, - ACTIONS(6566), 1, + [76648] = 3, + ACTIONS(6579), 1, aux_sym__whitespace_token1, - ACTIONS(6135), 37, - sym__block_close, + ACTIONS(6581), 1, + sym__last_token_punctuation, + ACTIONS(6577), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143573,19 +144001,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76166] = 2, - ACTIONS(6568), 1, + [76693] = 3, + ACTIONS(6585), 1, aux_sym__whitespace_token1, - ACTIONS(6159), 37, - sym__block_close, + ACTIONS(6587), 1, + sym__last_token_punctuation, + ACTIONS(6583), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143614,60 +144043,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76209] = 2, - ACTIONS(6530), 2, - anon_sym_DASH, + [76738] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(6176), 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, + ACTIONS(3105), 37, + sym__block_close, 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, - [76252] = 2, - ACTIONS(3107), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(3105), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143688,6 +144076,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, @@ -143695,61 +144084,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76295] = 2, - ACTIONS(6572), 2, - anon_sym_DASH, + [76781] = 2, + ACTIONS(2252), 1, aux_sym__whitespace_token1, - ACTIONS(6570), 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, + ACTIONS(2250), 37, + sym__code_span_close, 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, - [76338] = 2, - ACTIONS(6576), 1, - aux_sym__whitespace_token1, - ACTIONS(6574), 37, - sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143778,19 +144125,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76381] = 2, - ACTIONS(6578), 1, + [76824] = 2, + ACTIONS(2248), 1, aux_sym__whitespace_token1, - ACTIONS(6064), 37, - sym__block_close, + ACTIONS(2246), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143819,19 +144166,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76424] = 2, - ACTIONS(3107), 1, + [76867] = 2, + ACTIONS(6589), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 37, + ACTIONS(6092), 37, sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143860,60 +144207,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76467] = 2, - ACTIONS(2220), 1, + [76910] = 2, + ACTIONS(2190), 1, aux_sym__whitespace_token1, - ACTIONS(2218), 37, + ACTIONS(2188), 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, - [76510] = 2, - ACTIONS(6407), 1, - aux_sym__whitespace_token1, - ACTIONS(6405), 37, - sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143942,19 +144248,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76553] = 2, - ACTIONS(6582), 1, + [76953] = 2, + ACTIONS(6593), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6580), 37, - sym__block_close, + ACTIONS(6591), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -143967,7 +144273,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, @@ -143983,19 +144288,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76596] = 2, - ACTIONS(3744), 1, + [76996] = 2, + ACTIONS(3107), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(3742), 37, - sym__code_span_close, + ACTIONS(3105), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144008,7 +144314,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, @@ -144024,19 +144329,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76639] = 2, - ACTIONS(3107), 1, + [77039] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 37, + ACTIONS(415), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144065,19 +144371,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76682] = 2, - ACTIONS(2178), 1, + [77082] = 2, + ACTIONS(736), 1, aux_sym__whitespace_token1, - ACTIONS(2176), 37, + ACTIONS(734), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144106,19 +144412,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76725] = 2, - ACTIONS(2174), 1, + [77125] = 3, + ACTIONS(2990), 1, aux_sym__whitespace_token1, - ACTIONS(2172), 37, - sym__code_span_close, + ACTIONS(6595), 1, + sym__last_token_whitespace, + ACTIONS(2988), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144147,19 +144454,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76768] = 2, - ACTIONS(2166), 1, + [77170] = 2, + ACTIONS(2216), 1, aux_sym__whitespace_token1, - ACTIONS(2164), 37, + ACTIONS(2214), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144188,19 +144495,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76811] = 2, - ACTIONS(2250), 1, + [77213] = 2, + ACTIONS(6599), 1, aux_sym__whitespace_token1, - ACTIONS(2248), 37, - sym__code_span_close, + ACTIONS(6597), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144229,19 +144536,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76854] = 2, - ACTIONS(2228), 1, + [77256] = 2, + ACTIONS(2202), 1, aux_sym__whitespace_token1, - ACTIONS(2226), 37, + ACTIONS(2200), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144270,19 +144577,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76897] = 2, - ACTIONS(2240), 1, + [77299] = 3, + ACTIONS(6603), 1, aux_sym__whitespace_token1, - ACTIONS(2238), 37, - sym__code_span_close, + ACTIONS(6605), 1, + sym__last_token_punctuation, + ACTIONS(6601), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144311,19 +144619,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76940] = 2, - ACTIONS(3107), 2, - anon_sym_RBRACK, + [77344] = 2, + ACTIONS(6607), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 36, + ACTIONS(5958), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144348,24 +144656,23 @@ 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, - 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, - [76983] = 3, - ACTIONS(6586), 1, + [77387] = 2, + ACTIONS(6611), 1, aux_sym__whitespace_token1, - ACTIONS(6588), 1, - sym__last_token_punctuation, - ACTIONS(6584), 36, + ACTIONS(6609), 37, + sym__block_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144394,19 +144701,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77028] = 2, - ACTIONS(3107), 2, - anon_sym_DASH, + [77430] = 2, + ACTIONS(6573), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(3105), 36, + ACTIONS(5851), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144419,6 +144726,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, @@ -144430,24 +144738,23 @@ 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, - anon_sym_LBRACE, 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, - [77071] = 2, - ACTIONS(2254), 1, + [77473] = 2, + ACTIONS(2236), 1, aux_sym__whitespace_token1, - ACTIONS(2252), 37, + ACTIONS(2234), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144476,19 +144783,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77114] = 2, - ACTIONS(2202), 1, + [77516] = 2, + ACTIONS(2228), 1, aux_sym__whitespace_token1, - ACTIONS(2200), 37, + ACTIONS(2226), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144517,19 +144824,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [77559] = 2, + ACTIONS(3107), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(3105), 36, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [77157] = 2, - ACTIONS(2194), 1, + [77602] = 2, + ACTIONS(2166), 1, aux_sym__whitespace_token1, - ACTIONS(2192), 37, + ACTIONS(2164), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144558,20 +144906,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77200] = 3, - ACTIONS(6592), 1, + [77645] = 2, + ACTIONS(6531), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6594), 1, - sym__last_token_punctuation, - ACTIONS(6590), 36, + ACTIONS(6106), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144584,7 +144931,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, @@ -144600,19 +144946,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77245] = 2, - ACTIONS(2186), 1, + [77688] = 2, + ACTIONS(2210), 1, aux_sym__whitespace_token1, - ACTIONS(2184), 37, + ACTIONS(2208), 37, sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144641,18 +144988,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77288] = 2, - ACTIONS(2194), 1, + [77731] = 2, + ACTIONS(3947), 1, aux_sym__whitespace_token1, - ACTIONS(2192), 36, + ACTIONS(3945), 37, + sym__code_span_close, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144681,21 +145029,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77330] = 3, - ACTIONS(6600), 1, - sym__last_token_punctuation, - ACTIONS(6598), 2, - anon_sym_BSLASH, + [77774] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(6596), 34, + ACTIONS(3105), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144713,27 +145058,29 @@ 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, - 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, - [77374] = 2, - ACTIONS(3744), 1, + aux_sym__newline_token1, + [77816] = 2, + ACTIONS(2220), 1, aux_sym__whitespace_token1, - ACTIONS(3742), 36, + ACTIONS(2218), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144762,18 +145109,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77416] = 2, - ACTIONS(691), 1, + [77858] = 2, + ACTIONS(6613), 1, aux_sym__whitespace_token1, - ACTIONS(689), 36, + ACTIONS(6353), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144802,21 +145149,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77458] = 3, - ACTIONS(6602), 1, - sym__last_token_whitespace, - ACTIONS(2990), 2, - anon_sym_BSLASH, + [77900] = 2, + ACTIONS(2248), 1, aux_sym__whitespace_token1, - ACTIONS(2988), 34, + ACTIONS(2246), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144834,27 +145178,29 @@ 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, - 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, - [77502] = 2, - ACTIONS(2220), 1, + aux_sym__newline_token1, + [77942] = 2, + ACTIONS(736), 1, aux_sym__whitespace_token1, - ACTIONS(2218), 36, + ACTIONS(734), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144883,18 +145229,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77544] = 2, - ACTIONS(6604), 1, + [77984] = 2, + ACTIONS(2228), 1, aux_sym__whitespace_token1, - ACTIONS(6239), 36, + ACTIONS(2226), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144923,18 +145269,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77586] = 2, - ACTIONS(2240), 1, + [78026] = 2, + ACTIONS(2202), 1, aux_sym__whitespace_token1, - ACTIONS(2238), 36, + ACTIONS(2200), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -144963,18 +145309,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77628] = 2, - ACTIONS(3107), 1, + [78068] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 36, + ACTIONS(415), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145003,18 +145349,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77670] = 2, - ACTIONS(2178), 1, + [78110] = 2, + ACTIONS(2166), 1, aux_sym__whitespace_token1, - ACTIONS(2176), 36, + ACTIONS(2164), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145043,18 +145389,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77712] = 2, - ACTIONS(2254), 1, + [78152] = 2, + ACTIONS(2190), 1, aux_sym__whitespace_token1, - ACTIONS(2252), 36, + ACTIONS(2188), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145083,18 +145429,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77754] = 2, - ACTIONS(2174), 1, + [78194] = 2, + ACTIONS(2252), 1, aux_sym__whitespace_token1, - ACTIONS(2172), 36, + ACTIONS(2250), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145123,18 +145469,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77796] = 2, - ACTIONS(483), 1, + [78236] = 2, + ACTIONS(2206), 1, aux_sym__whitespace_token1, - ACTIONS(481), 36, + ACTIONS(2204), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145163,18 +145509,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77838] = 2, - ACTIONS(2186), 1, + [78278] = 2, + ACTIONS(6615), 1, aux_sym__whitespace_token1, - ACTIONS(2184), 36, + ACTIONS(5719), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145203,18 +145549,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77880] = 2, - ACTIONS(2166), 1, + [78320] = 3, + ACTIONS(6621), 1, + sym__last_token_punctuation, + ACTIONS(6619), 2, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2164), 36, + ACTIONS(6617), 34, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145232,29 +145581,68 @@ 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, - anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_TILDE, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [78364] = 3, + ACTIONS(6623), 1, + sym__last_token_whitespace, + ACTIONS(2990), 2, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2988), 34, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_BANG, + 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_PIPE, anon_sym_TILDE, + sym_backslash_escape, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [77922] = 2, - ACTIONS(2202), 1, + [78408] = 2, + ACTIONS(2216), 1, aux_sym__whitespace_token1, - ACTIONS(2200), 36, + ACTIONS(2214), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145283,18 +145671,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77964] = 2, - ACTIONS(2228), 1, + [78450] = 2, + ACTIONS(2236), 1, aux_sym__whitespace_token1, - ACTIONS(2226), 36, + ACTIONS(2234), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145323,18 +145711,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78006] = 2, - ACTIONS(2250), 1, + [78492] = 2, + ACTIONS(3947), 1, aux_sym__whitespace_token1, - ACTIONS(2248), 36, + ACTIONS(3945), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145363,18 +145751,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78048] = 2, - ACTIONS(6606), 1, + [78534] = 2, + ACTIONS(6625), 1, aux_sym__whitespace_token1, - ACTIONS(5802), 36, + ACTIONS(5699), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145403,18 +145791,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78090] = 2, - ACTIONS(6608), 1, + [78576] = 2, + ACTIONS(2210), 1, aux_sym__whitespace_token1, - ACTIONS(5819), 36, + ACTIONS(2208), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145443,19 +145831,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78132] = 2, - ACTIONS(6612), 2, + [78618] = 2, + ACTIONS(3107), 2, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6610), 34, + ACTIONS(3105), 34, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145482,19 +145870,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78173] = 2, - ACTIONS(3107), 2, + [78659] = 2, + ACTIONS(6629), 2, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3105), 34, + ACTIONS(6627), 34, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145521,16 +145909,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78214] = 1, - ACTIONS(6614), 31, + [78700] = 1, + ACTIONS(6631), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145558,12 +145946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [78248] = 1, - ACTIONS(6616), 31, + [78734] = 1, + ACTIONS(6633), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145591,12 +145979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [78282] = 1, - ACTIONS(6618), 31, + [78768] = 1, + ACTIONS(6635), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -145624,20 +146012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_TILDE, - [78316] = 4, - ACTIONS(825), 1, + [78802] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1862), 1, + STATE(1867), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6620), 3, + ACTIONS(6637), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 8, + ACTIONS(977), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145646,16 +146032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78338] = 4, - ACTIONS(777), 1, + [78824] = 4, + ACTIONS(1206), 1, aux_sym__whitespace_token1, - STATE(1850), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6622), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 8, + ACTIONS(1204), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145664,16 +146050,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78360] = 4, - ACTIONS(950), 1, + [78846] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 8, + ACTIONS(1240), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145682,16 +146068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78382] = 4, - ACTIONS(950), 1, + [78868] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1853), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6624), 3, + ACTIONS(6639), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 8, + ACTIONS(1240), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145700,16 +146086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78404] = 4, - ACTIONS(905), 1, + [78890] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - STATE(1854), 1, + STATE(1859), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6626), 3, + ACTIONS(6641), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 8, + ACTIONS(754), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145718,16 +146104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78426] = 4, - ACTIONS(905), 1, + [78912] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 8, + ACTIONS(754), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145736,16 +146122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78448] = 4, - ACTIONS(869), 1, + [78934] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 8, + ACTIONS(1062), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145754,16 +146140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78470] = 4, - ACTIONS(869), 1, + [78956] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1856), 1, + STATE(1861), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6628), 3, + ACTIONS(6643), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 8, + ACTIONS(1062), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145772,16 +146158,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78492] = 4, - ACTIONS(851), 1, + [78978] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 8, + ACTIONS(1173), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145790,16 +146176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78514] = 4, - ACTIONS(851), 1, + [79000] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(1858), 1, + STATE(1863), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6630), 3, + ACTIONS(6645), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 8, + ACTIONS(1173), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145808,16 +146194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78536] = 4, - ACTIONS(821), 1, + [79022] = 4, + ACTIONS(1050), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(819), 8, + ACTIONS(1048), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145826,16 +146212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78558] = 4, - ACTIONS(1029), 1, + [79044] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1882), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(6647), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 8, + ACTIONS(854), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145844,16 +146230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78580] = 4, - ACTIONS(809), 1, + [79066] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1859), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6632), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(807), 8, + ACTIONS(750), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145862,16 +146248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78602] = 4, - ACTIONS(1267), 1, + [79088] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1879), 1, + STATE(1886), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6634), 3, + ACTIONS(6649), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1265), 8, + ACTIONS(750), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145880,16 +146266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78624] = 4, - ACTIONS(972), 1, + [79110] = 4, + ACTIONS(1368), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(970), 8, + ACTIONS(1366), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145898,16 +146284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78646] = 4, - ACTIONS(968), 1, + [79132] = 4, + ACTIONS(1038), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1865), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(6651), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(966), 8, + ACTIONS(1036), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145916,16 +146302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78668] = 4, - ACTIONS(964), 1, + [79154] = 4, + ACTIONS(1380), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(962), 8, + ACTIONS(1378), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145934,16 +146320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78690] = 4, - ACTIONS(960), 1, + [79176] = 4, + ACTIONS(1376), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(958), 8, + ACTIONS(1374), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145952,16 +146338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78712] = 4, - ACTIONS(920), 1, + [79198] = 4, + ACTIONS(1372), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(918), 8, + ACTIONS(1370), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145970,16 +146356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78734] = 4, - ACTIONS(956), 1, + [79220] = 4, + ACTIONS(1307), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(954), 8, + ACTIONS(1305), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -145988,16 +146374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78756] = 4, - ACTIONS(777), 1, + [79242] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1855), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(6653), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 8, + ACTIONS(991), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146006,16 +146392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78778] = 4, - ACTIONS(803), 1, + [79264] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(1867), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6636), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 8, + ACTIONS(991), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146024,16 +146410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78800] = 4, - ACTIONS(803), 1, + [79286] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1872), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(6655), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 8, + ACTIONS(985), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146042,16 +146428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78822] = 4, - ACTIONS(1029), 1, + [79308] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1881), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6638), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 8, + ACTIONS(985), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146060,16 +146446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78844] = 4, - ACTIONS(825), 1, + [79330] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 8, + ACTIONS(977), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146078,16 +146464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78866] = 4, - ACTIONS(837), 1, + [79352] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1863), 1, + STATE(1869), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6640), 3, + ACTIONS(6657), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 8, + ACTIONS(967), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146096,36 +146482,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78888] = 6, - ACTIONS(4756), 1, - sym__whitespace_ge_2, - ACTIONS(4759), 1, + [79374] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - ACTIONS(4762), 1, - aux_sym__newline_token1, - STATE(2201), 1, - sym__newline, - STATE(1874), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4752), 6, + STATE(1440), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5995), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(967), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT, - [78914] = 4, - ACTIONS(837), 1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79396] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1870), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(6659), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 8, + ACTIONS(923), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146134,34 +146518,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78936] = 4, - ACTIONS(857), 1, + [79418] = 6, + ACTIONS(4934), 1, + sym__whitespace_ge_2, + ACTIONS(4937), 1, aux_sym__whitespace_token1, - STATE(1864), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6642), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(855), 8, + ACTIONS(4940), 1, + aux_sym__newline_token1, + STATE(2211), 1, + sym__newline, + STATE(1881), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4930), 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, - [78958] = 4, - ACTIONS(857), 1, + [79444] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 8, + ACTIONS(923), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146170,12 +146556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [78980] = 4, + [79466] = 4, ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1865), 1, + STATE(1871), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6644), 3, + ACTIONS(6661), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -146188,12 +146574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79002] = 4, + [79488] = 4, ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -146206,16 +146592,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79024] = 4, - ACTIONS(1008), 1, + [79510] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1866), 1, + STATE(1854), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6646), 3, + ACTIONS(6663), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 8, + ACTIONS(792), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146224,16 +146610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79046] = 4, - ACTIONS(1008), 1, + [79532] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1555), 1, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5973), 3, + ACTIONS(5995), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 8, + ACTIONS(792), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146242,16 +146628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79068] = 4, - ACTIONS(1247), 1, + [79554] = 4, + ACTIONS(880), 1, aux_sym__whitespace_token1, - STATE(1868), 1, + STATE(1874), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6648), 3, + ACTIONS(6665), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1245), 8, + ACTIONS(878), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146260,16 +146646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79090] = 4, - ACTIONS(1105), 1, + [79576] = 4, + ACTIONS(874), 1, aux_sym__whitespace_token1, - STATE(1870), 1, + STATE(1876), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6650), 3, + ACTIONS(6667), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1103), 8, + ACTIONS(872), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146278,16 +146664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79112] = 4, - ACTIONS(1186), 1, + [79598] = 4, + ACTIONS(850), 1, aux_sym__whitespace_token1, - STATE(1872), 1, + STATE(1884), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6652), 3, + ACTIONS(6669), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1184), 8, + ACTIONS(848), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146296,16 +146682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79134] = 4, - ACTIONS(1259), 1, + [79620] = 4, + ACTIONS(868), 1, aux_sym__whitespace_token1, - STATE(1875), 1, + STATE(1877), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6654), 3, + ACTIONS(6671), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1257), 8, + ACTIONS(866), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146314,16 +146700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79156] = 4, - ACTIONS(1115), 1, + [79642] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1877), 1, + STATE(1879), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6656), 3, + ACTIONS(6673), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1113), 8, + ACTIONS(860), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146332,286 +146718,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79178] = 10, + [79664] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6664), 1, + ACTIONS(6681), 1, anon_sym_RPAREN, - STATE(2053), 1, + STATE(2102), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79211] = 10, + [79697] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6666), 1, + ACTIONS(6683), 1, anon_sym_RPAREN, - STATE(2082), 1, + STATE(2073), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79244] = 10, + [79730] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6668), 1, + ACTIONS(6685), 1, anon_sym_RPAREN, - STATE(2040), 1, + STATE(2065), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79277] = 10, + [79763] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6670), 1, + ACTIONS(6687), 1, anon_sym_RPAREN, - STATE(2061), 1, + STATE(2098), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79310] = 10, + [79796] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6672), 1, + ACTIONS(6689), 1, anon_sym_RPAREN, - STATE(2034), 1, + STATE(2061), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79343] = 10, + [79829] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6674), 1, + ACTIONS(6691), 1, anon_sym_RPAREN, - STATE(2057), 1, + STATE(2083), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79376] = 10, + [79862] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6676), 1, + ACTIONS(6693), 1, anon_sym_RPAREN, - STATE(2059), 1, + STATE(2069), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79409] = 10, + [79895] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6678), 1, + ACTIONS(6695), 1, anon_sym_RPAREN, - STATE(2073), 1, + STATE(2071), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79442] = 10, + [79928] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6680), 1, + ACTIONS(6697), 1, anon_sym_RPAREN, - STATE(2028), 1, + STATE(2079), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79475] = 10, + [79961] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6682), 1, + ACTIONS(6699), 1, anon_sym_RPAREN, - STATE(2037), 1, + STATE(2084), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79508] = 10, + [79994] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6684), 1, + ACTIONS(6701), 1, anon_sym_RPAREN, - STATE(2044), 1, + STATE(2111), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79541] = 10, + [80027] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6686), 1, + ACTIONS(6703), 1, anon_sym_RPAREN, - STATE(2051), 1, + STATE(2094), 1, sym_link_title, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79574] = 2, - ACTIONS(2178), 1, + [80060] = 2, + ACTIONS(736), 1, aux_sym__whitespace_token1, - ACTIONS(2176), 10, + ACTIONS(734), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146622,103 +147008,75 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79590] = 9, + [80076] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6688), 1, + ACTIONS(6705), 1, anon_sym_DQUOTE, - ACTIONS(6690), 1, + ACTIONS(6707), 1, anon_sym_SQUOTE, - ACTIONS(6692), 1, + ACTIONS(6709), 1, aux_sym__attribute_value_token1, - ACTIONS(6694), 1, + ACTIONS(6711), 1, sym__whitespace_ge_2, - ACTIONS(6696), 1, + ACTIONS(6713), 1, aux_sym__whitespace_token1, - STATE(2148), 1, + STATE(2175), 1, sym__attribute_value, - STATE(2204), 1, + STATE(2227), 1, sym__newline, - STATE(2011), 3, + STATE(1993), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79620] = 2, - ACTIONS(2240), 1, - aux_sym__whitespace_token1, - ACTIONS(2238), 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, + [80106] = 7, + ACTIONS(6717), 1, sym__whitespace_ge_2, + ACTIONS(6720), 1, + aux_sym__whitespace_token1, + ACTIONS(6723), 1, aux_sym__newline_token1, - [79636] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6698), 1, + STATE(2226), 1, + sym__newline, + ACTIONS(6715), 2, anon_sym_SLASH, - ACTIONS(6700), 1, anon_sym_GT, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, - aux_sym__whitespace_token1, - STATE(2203), 1, - sym__newline, - STATE(1907), 2, + STATE(1906), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1931), 3, + STATE(2053), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79664] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, + [80132] = 2, + ACTIONS(2202), 1, aux_sym__whitespace_token1, - ACTIONS(6706), 1, + ACTIONS(2200), 10, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SLASH, - ACTIONS(6708), 1, + anon_sym_EQ, anon_sym_GT, - STATE(2203), 1, - sym__newline, - STATE(1902), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1998), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [79692] = 9, - ACTIONS(41), 1, + sym__attribute_name, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(6688), 1, + [80148] = 2, + ACTIONS(2216), 1, + aux_sym__whitespace_token1, + ACTIONS(2214), 10, anon_sym_DQUOTE, - ACTIONS(6690), 1, anon_sym_SQUOTE, - ACTIONS(6694), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - ACTIONS(6696), 1, - aux_sym__whitespace_token1, - ACTIONS(6710), 1, - aux_sym__attribute_value_token1, - STATE(2156), 1, - sym__attribute_value, - STATE(2204), 1, - sym__newline, - STATE(2011), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [79722] = 2, + aux_sym__newline_token1, + [80164] = 2, ACTIONS(2228), 1, aux_sym__whitespace_token1, ACTIONS(2226), 10, @@ -146732,10 +147090,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79738] = 2, - ACTIONS(2250), 1, + [80180] = 2, + ACTIONS(2236), 1, aux_sym__whitespace_token1, - ACTIONS(2248), 10, + ACTIONS(2234), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146746,66 +147104,24 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79754] = 7, - ACTIONS(6714), 1, - sym__whitespace_ge_2, - ACTIONS(6717), 1, + [80196] = 2, + ACTIONS(2190), 1, aux_sym__whitespace_token1, - ACTIONS(6720), 1, - aux_sym__newline_token1, - STATE(2203), 1, - sym__newline, - ACTIONS(6712), 2, - anon_sym_SLASH, - anon_sym_GT, - STATE(1907), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(2086), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [79780] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(6723), 1, - sym__line_ending, - STATE(1951), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6725), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 5, - sym__no_indented_chunk, + ACTIONS(2188), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - sym__whitespace_ge_2, - [79802] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, - aux_sym__whitespace_token1, - ACTIONS(6727), 1, + anon_sym_RPAREN, anon_sym_SLASH, - ACTIONS(6729), 1, + anon_sym_EQ, anon_sym_GT, - STATE(2203), 1, - sym__newline, - STATE(1914), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(2003), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [79830] = 2, - ACTIONS(2166), 1, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [80212] = 2, + ACTIONS(2206), 1, aux_sym__whitespace_token1, - ACTIONS(2164), 10, + ACTIONS(2204), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146816,123 +147132,109 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79846] = 9, + [80228] = 5, + ACTIONS(379), 1, + aux_sym__whitespace_token1, + ACTIONS(6726), 1, + sym__line_ending, + STATE(2017), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6728), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [80250] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6690), 1, - anon_sym_SQUOTE, - ACTIONS(6692), 1, - aux_sym__attribute_value_token1, - ACTIONS(6694), 1, + ACTIONS(6730), 1, + anon_sym_SLASH, + ACTIONS(6732), 1, + anon_sym_GT, + ACTIONS(6734), 1, sym__whitespace_ge_2, - ACTIONS(6696), 1, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - STATE(2148), 1, - sym__attribute_value, - STATE(2204), 1, + STATE(2226), 1, sym__newline, - STATE(1904), 3, + STATE(1920), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1934), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79876] = 2, - ACTIONS(2174), 1, - aux_sym__whitespace_token1, - ACTIONS(2172), 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, - [79892] = 9, + [80278] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6688), 1, + ACTIONS(6705), 1, anon_sym_DQUOTE, - ACTIONS(6690), 1, + ACTIONS(6707), 1, anon_sym_SQUOTE, - ACTIONS(6694), 1, + ACTIONS(6709), 1, + aux_sym__attribute_value_token1, + ACTIONS(6711), 1, sym__whitespace_ge_2, - ACTIONS(6696), 1, + ACTIONS(6713), 1, aux_sym__whitespace_token1, - ACTIONS(6731), 1, - aux_sym__attribute_value_token1, - STATE(2167), 1, + STATE(2175), 1, sym__attribute_value, - STATE(2204), 1, + STATE(2227), 1, sym__newline, - STATE(1900), 3, + STATE(1923), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79922] = 8, + [80308] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6702), 1, + ACTIONS(6705), 1, + anon_sym_DQUOTE, + ACTIONS(6707), 1, + anon_sym_SQUOTE, + ACTIONS(6711), 1, sym__whitespace_ge_2, - ACTIONS(6704), 1, + ACTIONS(6713), 1, aux_sym__whitespace_token1, - ACTIONS(6733), 1, - anon_sym_SLASH, - ACTIONS(6735), 1, - anon_sym_GT, - STATE(2203), 1, + ACTIONS(6738), 1, + aux_sym__attribute_value_token1, + STATE(2186), 1, + sym__attribute_value, + STATE(2227), 1, sym__newline, - STATE(1907), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1986), 3, + STATE(1905), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79950] = 8, + [80338] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6702), 1, + ACTIONS(6734), 1, sym__whitespace_ge_2, - ACTIONS(6704), 1, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - ACTIONS(6737), 1, + ACTIONS(6740), 1, anon_sym_SLASH, - ACTIONS(6739), 1, + ACTIONS(6742), 1, anon_sym_GT, - STATE(2203), 1, + STATE(2226), 1, sym__newline, - STATE(1907), 2, + STATE(1931), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1947), 3, + STATE(1933), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79978] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(6741), 1, - sym__line_ending, - STATE(1935), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6743), 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, - [80000] = 2, - ACTIONS(2194), 1, + [80366] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(2192), 10, + ACTIONS(415), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146943,10 +147245,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80016] = 2, - ACTIONS(691), 1, + [80382] = 2, + ACTIONS(2210), 1, aux_sym__whitespace_token1, - ACTIONS(689), 10, + ACTIONS(2208), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146957,30 +147259,30 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80032] = 8, + [80398] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6702), 1, + ACTIONS(6734), 1, sym__whitespace_ge_2, - ACTIONS(6704), 1, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - ACTIONS(6745), 1, + ACTIONS(6744), 1, anon_sym_SLASH, - ACTIONS(6747), 1, + ACTIONS(6746), 1, anon_sym_GT, - STATE(2203), 1, + STATE(2226), 1, sym__newline, - STATE(1915), 2, + STATE(1906), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1960), 3, + STATE(1949), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80060] = 2, - ACTIONS(2186), 1, + [80426] = 2, + ACTIONS(2166), 1, aux_sym__whitespace_token1, - ACTIONS(2184), 10, + ACTIONS(2164), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -146991,10 +147293,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80076] = 2, - ACTIONS(483), 1, + [80442] = 2, + ACTIONS(2248), 1, aux_sym__whitespace_token1, - ACTIONS(481), 10, + ACTIONS(2246), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -147005,41 +147307,31 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80092] = 2, - ACTIONS(2220), 1, - aux_sym__whitespace_token1, - ACTIONS(2218), 10, + [80458] = 9, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6705), 1, anon_sym_DQUOTE, + ACTIONS(6707), 1, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_GT, - sym__attribute_name, + ACTIONS(6711), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - [80108] = 5, - ACTIONS(379), 1, + ACTIONS(6713), 1, aux_sym__whitespace_token1, - ACTIONS(6749), 1, - sym__line_ending, - STATE(1945), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6751), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [80130] = 2, - ACTIONS(3744), 1, + ACTIONS(6748), 1, + aux_sym__attribute_value_token1, + STATE(2158), 1, + sym__attribute_value, + STATE(2227), 1, + sym__newline, + STATE(1993), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [80488] = 2, + ACTIONS(2252), 1, aux_sym__whitespace_token1, - ACTIONS(3742), 10, + ACTIONS(2250), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -147050,10 +147342,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80146] = 2, - ACTIONS(2202), 1, + [80504] = 2, + ACTIONS(3947), 1, aux_sym__whitespace_token1, - ACTIONS(2200), 10, + ACTIONS(3945), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -147064,10 +147356,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80162] = 2, - ACTIONS(2254), 1, + [80520] = 2, + ACTIONS(2220), 1, aux_sym__whitespace_token1, - ACTIONS(2252), 10, + ACTIONS(2218), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -147078,5535 +147370,5629 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80178] = 4, - ACTIONS(897), 1, + [80536] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - STATE(1982), 1, + ACTIONS(6750), 1, + anon_sym_SLASH, + ACTIONS(6752), 1, + anon_sym_GT, + STATE(2226), 1, + sym__newline, + STATE(1906), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(2027), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [80564] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, + aux_sym__whitespace_token1, + ACTIONS(6754), 1, + anon_sym_SLASH, + ACTIONS(6756), 1, + anon_sym_GT, + STATE(2226), 1, + sym__newline, + STATE(1927), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1950), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [80592] = 5, + ACTIONS(379), 1, + aux_sym__whitespace_token1, + ACTIONS(6758), 1, + sym__line_ending, + STATE(2014), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6753), 3, + ACTIONS(6760), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 5, + ACTIONS(377), 5, + sym__no_indented_chunk, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [80197] = 4, - ACTIONS(905), 1, + [80614] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - STATE(1972), 1, + ACTIONS(6762), 1, + sym__line_ending, + STATE(2021), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6755), 3, + ACTIONS(6764), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(377), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80216] = 4, - ACTIONS(1029), 1, + [80636] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - STATE(1944), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1027), 5, + ACTIONS(6766), 1, anon_sym_SLASH, + ACTIONS(6768), 1, anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [80235] = 4, - ACTIONS(851), 1, + STATE(2226), 1, + sym__newline, + STATE(1906), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(2026), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [80664] = 4, + ACTIONS(1206), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 5, + ACTIONS(1204), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80254] = 8, + [80683] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6702), 1, + ACTIONS(6734), 1, sym__whitespace_ge_2, - ACTIONS(6704), 1, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - ACTIONS(6759), 1, + ACTIONS(6766), 1, anon_sym_SLASH, - ACTIONS(6761), 1, + ACTIONS(6768), 1, anon_sym_GT, - ACTIONS(6763), 1, + ACTIONS(6772), 1, sym__attribute_name, - STATE(2203), 1, + STATE(2226), 1, sym__newline, - STATE(1987), 3, + STATE(2025), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80281] = 4, - ACTIONS(1267), 1, - aux_sym__whitespace_token1, - STATE(1954), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6765), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1265), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, + [80710] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [80300] = 4, - ACTIONS(401), 1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, + aux_sym__whitespace_token1, + ACTIONS(6744), 1, + anon_sym_SLASH, + ACTIONS(6746), 1, + anon_sym_GT, + ACTIONS(6772), 1, + sym__attribute_name, + STATE(2226), 1, + sym__newline, + STATE(2025), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [80737] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1946), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6774), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(895), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80319] = 4, - ACTIONS(405), 1, + [80756] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6769), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(403), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(923), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80338] = 4, - ACTIONS(391), 1, + [80775] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1947), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6776), 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(923), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80357] = 4, - ACTIONS(391), 1, + [80794] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1933), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6772), 3, + ACTIONS(6770), 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(967), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80376] = 4, - ACTIONS(1115), 1, + [80813] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1957), 1, + STATE(1948), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6774), 3, + ACTIONS(6778), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1113), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(967), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80395] = 4, - ACTIONS(809), 1, + [80832] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1929), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6776), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(807), 5, + ACTIONS(977), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80414] = 4, - ACTIONS(1259), 1, + [80851] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1959), 1, + STATE(1951), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6778), 3, + ACTIONS(6780), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1257), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(977), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80433] = 4, - ACTIONS(1186), 1, + [80870] = 4, + ACTIONS(1038), 1, aux_sym__whitespace_token1, - STATE(1969), 1, + STATE(1992), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6780), 3, + ACTIONS(6782), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1184), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(1036), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80452] = 4, - ACTIONS(1105), 1, + [80889] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1977), 1, + STATE(1952), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6782), 3, + ACTIONS(6784), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1103), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(985), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80471] = 4, - ACTIONS(401), 1, + [80908] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 5, + ACTIONS(991), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80490] = 4, - ACTIONS(1247), 1, + [80927] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(1979), 1, + STATE(1953), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6784), 3, + ACTIONS(6786), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1245), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(991), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80509] = 4, - ACTIONS(405), 1, + [80946] = 4, + ACTIONS(1372), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6786), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(403), 5, + ACTIONS(1370), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80528] = 4, - ACTIONS(391), 1, + [80965] = 4, + ACTIONS(1376), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, + ACTIONS(1374), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80547] = 4, - ACTIONS(1008), 1, + [80984] = 4, + ACTIONS(1380), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(1378), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80566] = 8, + [81003] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6702), 1, + ACTIONS(6734), 1, sym__whitespace_ge_2, - ACTIONS(6704), 1, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - ACTIONS(6763), 1, + ACTIONS(6772), 1, sym__attribute_name, - ACTIONS(6789), 1, + ACTIONS(6788), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6790), 1, anon_sym_GT, - STATE(2203), 1, + STATE(2226), 1, sym__newline, - STATE(1987), 3, + STATE(2025), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80593] = 4, - ACTIONS(391), 1, + [81030] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, + aux_sym__whitespace_token1, + ACTIONS(6750), 1, + anon_sym_SLASH, + ACTIONS(6752), 1, + anon_sym_GT, + ACTIONS(6772), 1, + sym__attribute_name, + STATE(2226), 1, + sym__newline, + STATE(2025), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [81057] = 4, + ACTIONS(1368), 1, aux_sym__whitespace_token1, - STATE(1942), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6793), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, + ACTIONS(1366), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80612] = 4, - ACTIONS(401), 1, + [81076] = 4, + ACTIONS(1307), 1, aux_sym__whitespace_token1, - STATE(1950), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6795), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(1305), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - [80631] = 4, - ACTIONS(405), 1, + aux_sym__newline_token1, + [81095] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1950), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6797), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(403), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(1240), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - [80650] = 4, - ACTIONS(391), 1, + aux_sym__newline_token1, + [81114] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1950), 1, + STATE(1956), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6795), 3, + ACTIONS(6792), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(1240), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - [80669] = 4, - ACTIONS(391), 1, + aux_sym__newline_token1, + [81133] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - STATE(1949), 1, + STATE(1957), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6800), 3, + ACTIONS(6794), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(754), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [81152] = 4, + ACTIONS(756), 1, + aux_sym__whitespace_token1, + STATE(2018), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6770), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(754), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - [80688] = 4, - ACTIONS(1008), 1, + aux_sym__newline_token1, + [81171] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1981), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6802), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(1062), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80707] = 4, - ACTIONS(897), 1, + [81190] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1959), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6796), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(1062), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80726] = 4, - ACTIONS(803), 1, + [81209] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(1996), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6804), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 5, + ACTIONS(1173), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80745] = 4, - ACTIONS(851), 1, + [81228] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(2001), 1, + STATE(1961), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6806), 3, + ACTIONS(6798), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 5, + ACTIONS(1173), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80764] = 4, - ACTIONS(857), 1, + [81247] = 4, + ACTIONS(1050), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(1048), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80783] = 4, - ACTIONS(857), 1, + [81266] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1983), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6808), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 5, + ACTIONS(985), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [81285] = 4, + ACTIONS(752), 1, + aux_sym__whitespace_token1, + STATE(2022), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6800), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(750), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80802] = 4, - ACTIONS(837), 1, + [81304] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1976), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6802), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 5, + ACTIONS(750), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80821] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, + [81323] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - ACTIONS(6737), 1, + STATE(1932), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6804), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(792), 5, anon_sym_SLASH, - ACTIONS(6739), 1, anon_sym_GT, - ACTIONS(6763), 1, sym__attribute_name, - STATE(2203), 1, - sym__newline, - STATE(1987), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [80848] = 4, - ACTIONS(803), 1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [81342] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 5, + ACTIONS(792), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80867] = 4, - ACTIONS(1029), 1, + [81361] = 4, + ACTIONS(850), 1, + aux_sym__whitespace_token1, + STATE(1980), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6806), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(848), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [81380] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1982), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6808), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 5, + ACTIONS(854), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80886] = 4, - ACTIONS(1105), 1, + [81399] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1961), 1, + STATE(1984), 1, aux_sym__ignore_matching_tokens, ACTIONS(6810), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1103), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(860), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80905] = 4, - ACTIONS(825), 1, + [81418] = 4, + ACTIONS(868), 1, aux_sym__whitespace_token1, - STATE(1997), 1, + STATE(1986), 1, aux_sym__ignore_matching_tokens, ACTIONS(6812), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(866), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80924] = 4, - ACTIONS(1186), 1, + [81437] = 4, + ACTIONS(880), 1, aux_sym__whitespace_token1, - STATE(1971), 1, + STATE(1944), 1, aux_sym__ignore_matching_tokens, ACTIONS(6814), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1184), 5, + ACTIONS(878), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80943] = 4, - ACTIONS(837), 1, + [81456] = 4, + ACTIONS(874), 1, aux_sym__whitespace_token1, - STATE(1984), 1, + STATE(1962), 1, aux_sym__ignore_matching_tokens, ACTIONS(6816), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(872), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80962] = 4, - ACTIONS(869), 1, + [81475] = 4, + ACTIONS(868), 1, aux_sym__whitespace_token1, - STATE(1930), 1, + STATE(1940), 1, aux_sym__ignore_matching_tokens, ACTIONS(6818), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 5, + ACTIONS(866), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80981] = 4, - ACTIONS(869), 1, + [81494] = 4, + ACTIONS(874), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1990), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6820), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 5, + ACTIONS(872), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81000] = 4, - ACTIONS(825), 1, + [81513] = 4, + ACTIONS(880), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1994), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6822), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 5, + ACTIONS(878), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81019] = 4, - ACTIONS(825), 1, + [81532] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1985), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6820), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 5, + ACTIONS(792), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81038] = 4, - ACTIONS(825), 1, + [81551] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1938), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6824), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 5, + ACTIONS(860), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81057] = 4, - ACTIONS(869), 1, + [81570] = 4, + ACTIONS(794), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1996), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6826), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(792), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81076] = 4, - ACTIONS(837), 1, + [81589] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1999), 1, + STATE(1936), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6822), 3, + ACTIONS(6828), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 5, + ACTIONS(854), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81095] = 4, - ACTIONS(809), 1, + [81608] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1962), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6824), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(807), 5, + ACTIONS(895), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81114] = 4, - ACTIONS(905), 1, + [81627] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1997), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6830), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(895), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81133] = 4, - ACTIONS(1029), 1, + [81646] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1946), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6826), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 5, + ACTIONS(923), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81152] = 4, - ACTIONS(803), 1, + [81665] = 4, + ACTIONS(925), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1998), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6832), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 5, + ACTIONS(923), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81171] = 4, - ACTIONS(803), 1, + [81684] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1988), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6828), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 5, + ACTIONS(967), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81190] = 4, - ACTIONS(777), 1, + [81703] = 4, + ACTIONS(969), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(1999), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6834), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 5, + ACTIONS(967), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81209] = 4, - ACTIONS(777), 1, + [81722] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1994), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6830), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 5, + ACTIONS(977), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81228] = 4, - ACTIONS(920), 1, + [81741] = 4, + ACTIONS(850), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2005), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6836), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(918), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(848), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81247] = 4, - ACTIONS(960), 1, + [81760] = 4, + ACTIONS(979), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2000), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6838), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(958), 5, + ACTIONS(977), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81266] = 4, - ACTIONS(964), 1, + [81779] = 4, + ACTIONS(752), 1, + aux_sym__whitespace_token1, + STATE(1966), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6840), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(750), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [81798] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(962), 5, + ACTIONS(985), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81285] = 4, - ACTIONS(968), 1, + [81817] = 4, + ACTIONS(987), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2001), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6842), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(966), 5, + ACTIONS(985), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81304] = 4, - ACTIONS(972), 1, + [81836] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(970), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [81323] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, - aux_sym__whitespace_token1, - ACTIONS(6763), 1, - sym__attribute_name, - ACTIONS(6832), 1, + ACTIONS(750), 5, anon_sym_SLASH, - ACTIONS(6834), 1, anon_sym_GT, - STATE(2203), 1, - sym__newline, - STATE(1987), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [81350] = 6, - ACTIONS(4762), 1, + sym__attribute_name, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(6836), 1, + [81855] = 6, + ACTIONS(4940), 1, + aux_sym__newline_token1, + ACTIONS(6844), 1, sym__whitespace_ge_2, - ACTIONS(6839), 1, + ACTIONS(6847), 1, aux_sym__whitespace_token1, - STATE(2203), 1, + STATE(2227), 1, sym__newline, - ACTIONS(4752), 3, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - STATE(1987), 3, + ACTIONS(4930), 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + STATE(1993), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81373] = 4, - ACTIONS(956), 1, + [81878] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(954), 5, + ACTIONS(991), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81392] = 4, - ACTIONS(950), 1, - aux_sym__whitespace_token1, - STATE(1975), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6842), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(948), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [81411] = 4, - ACTIONS(1247), 1, + [81897] = 4, + ACTIONS(993), 1, aux_sym__whitespace_token1, - STATE(2017), 1, + STATE(2002), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6844), 3, + ACTIONS(6850), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1245), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(991), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81430] = 4, - ACTIONS(1259), 1, + [81916] = 4, + ACTIONS(1206), 1, aux_sym__whitespace_token1, - STATE(2002), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6846), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1257), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1204), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81449] = 4, - ACTIONS(950), 1, + [81935] = 4, + ACTIONS(1372), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1370), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81468] = 4, - ACTIONS(1115), 1, + [81954] = 4, + ACTIONS(1376), 1, aux_sym__whitespace_token1, - STATE(2014), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6848), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1113), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1374), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81487] = 4, - ACTIONS(950), 1, + [81973] = 4, + ACTIONS(1380), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 5, + ACTIONS(1378), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81506] = 4, - ACTIONS(950), 1, + [81992] = 4, + ACTIONS(1368), 1, aux_sym__whitespace_token1, - STATE(2006), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6850), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(948), 5, + ACTIONS(1366), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81525] = 4, - ACTIONS(956), 1, + [82011] = 4, + ACTIONS(1307), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(954), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1305), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81544] = 4, - ACTIONS(972), 1, + [82030] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(970), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1240), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81563] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6698), 1, - anon_sym_SLASH, - ACTIONS(6700), 1, - anon_sym_GT, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, - aux_sym__whitespace_token1, - ACTIONS(6763), 1, - sym__attribute_name, - STATE(2203), 1, - sym__newline, - STATE(1987), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [81590] = 4, - ACTIONS(968), 1, + [82049] = 4, + ACTIONS(1242), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2006), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6852), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(966), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1240), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81609] = 4, - ACTIONS(1267), 1, + [82068] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - STATE(2019), 1, + STATE(2007), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6852), 3, + ACTIONS(6854), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1265), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(754), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81628] = 4, - ACTIONS(821), 1, + [82087] = 4, + ACTIONS(897), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(819), 5, + ACTIONS(895), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81647] = 4, - ACTIONS(837), 1, + [82106] = 4, + ACTIONS(756), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(835), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(754), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81666] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6702), 1, - sym__whitespace_ge_2, - ACTIONS(6704), 1, - aux_sym__whitespace_token1, - ACTIONS(6733), 1, - anon_sym_SLASH, - ACTIONS(6735), 1, - anon_sym_GT, - ACTIONS(6763), 1, - sym__attribute_name, - STATE(2203), 1, - sym__newline, - STATE(1987), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [81693] = 4, - ACTIONS(869), 1, + [82125] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6854), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(867), 5, + ACTIONS(1062), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81712] = 4, - ACTIONS(905), 1, + [82144] = 4, + ACTIONS(1064), 1, aux_sym__whitespace_token1, - STATE(1968), 1, + STATE(2009), 1, aux_sym__ignore_matching_tokens, ACTIONS(6856), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 5, + ACTIONS(1062), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81731] = 4, - ACTIONS(905), 1, + [82163] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(903), 5, + ACTIONS(1173), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81750] = 4, - ACTIONS(1008), 1, + [82182] = 4, + ACTIONS(1175), 1, aux_sym__whitespace_token1, - STATE(2013), 1, + STATE(2011), 1, aux_sym__ignore_matching_tokens, ACTIONS(6858), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1173), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81769] = 4, - ACTIONS(964), 1, + [82201] = 4, + ACTIONS(1050), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(962), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1048), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81788] = 4, - ACTIONS(960), 1, + [82220] = 4, + ACTIONS(1038), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1963), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6860), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(958), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1036), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81807] = 4, - ACTIONS(1008), 1, + [82239] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2015), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6862), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1006), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [81826] = 6, - ACTIONS(4762), 1, - aux_sym__newline_token1, - ACTIONS(6860), 1, - sym__whitespace_ge_2, - ACTIONS(6863), 1, - aux_sym__whitespace_token1, - STATE(2204), 1, - sym__newline, - ACTIONS(4752), 3, + ACTIONS(389), 5, + sym__no_indented_chunk, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - STATE(2011), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [81849] = 4, - ACTIONS(857), 1, + anon_sym_LPAREN, + sym__whitespace_ge_2, + [82258] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(2008), 1, + STATE(2024), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6866), 3, + ACTIONS(6864), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 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, - [81868] = 4, - ACTIONS(920), 1, + [82277] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2024), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6864), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(918), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(402), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [81887] = 4, - ACTIONS(857), 1, + [82296] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2019), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6866), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(855), 5, + ACTIONS(389), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81906] = 4, - ACTIONS(777), 1, + [82315] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1992), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6868), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 5, + ACTIONS(389), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81925] = 4, - ACTIONS(897), 1, + [82334] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - STATE(2009), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6870), 3, + ACTIONS(6868), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 5, + ACTIONS(395), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81944] = 4, - ACTIONS(777), 1, + [82353] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2018), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(775), 5, + ACTIONS(402), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [81963] = 4, - ACTIONS(821), 1, + [82372] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2023), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6871), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(819), 5, + ACTIONS(389), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [81982] = 4, - ACTIONS(897), 1, + [82391] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6757), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(895), 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, - [82001] = 4, - ACTIONS(851), 1, + [82410] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - STATE(2018), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6872), 3, + ACTIONS(6873), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 5, + ACTIONS(395), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82020] = 4, - ACTIONS(1029), 1, + [82429] = 4, + ACTIONS(404), 1, aux_sym__whitespace_token1, - STATE(2010), 1, + STATE(2022), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6874), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1027), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(402), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82039] = 4, - ACTIONS(851), 1, + [82448] = 4, + ACTIONS(397), 1, aux_sym__whitespace_token1, - STATE(1934), 1, + STATE(2024), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6767), 3, + ACTIONS(6876), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(849), 5, + ACTIONS(395), 5, + sym__no_indented_chunk, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + anon_sym_LPAREN, + sym__whitespace_ge_2, + [82467] = 6, + ACTIONS(4940), 1, + aux_sym__newline_token1, + ACTIONS(6879), 1, sym__whitespace_ge_2, + ACTIONS(6882), 1, + aux_sym__whitespace_token1, + STATE(2226), 1, + sym__newline, + ACTIONS(4930), 3, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + STATE(2025), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [82490] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, + aux_sym__whitespace_token1, + ACTIONS(6772), 1, + sym__attribute_name, + ACTIONS(6885), 1, + anon_sym_SLASH, + ACTIONS(6887), 1, + anon_sym_GT, + STATE(2226), 1, + sym__newline, + STATE(2025), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [82517] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [82058] = 4, - ACTIONS(6880), 1, + ACTIONS(6734), 1, + sym__whitespace_ge_2, + ACTIONS(6736), 1, + aux_sym__whitespace_token1, + ACTIONS(6772), 1, + sym__attribute_name, + ACTIONS(6889), 1, + anon_sym_SLASH, + ACTIONS(6891), 1, + anon_sym_GT, + STATE(2226), 1, + sym__newline, + STATE(2025), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [82544] = 4, + ACTIONS(6897), 1, aux_sym__whitespace_token1, - STATE(2025), 1, + STATE(2029), 1, aux_sym__tag_name_repeat1, - ACTIONS(6876), 3, + ACTIONS(6893), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(6878), 4, + ACTIONS(6895), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [82076] = 4, - ACTIONS(6886), 1, + [82562] = 4, + ACTIONS(6903), 1, aux_sym__whitespace_token1, - STATE(2023), 1, + STATE(2030), 1, aux_sym__tag_name_repeat1, - ACTIONS(6882), 3, + ACTIONS(6899), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(6884), 4, + ACTIONS(6901), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [82094] = 4, - ACTIONS(6893), 1, + [82580] = 4, + ACTIONS(6910), 1, aux_sym__whitespace_token1, - STATE(2025), 1, + STATE(2030), 1, aux_sym__tag_name_repeat1, - ACTIONS(6888), 3, + ACTIONS(6905), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(6891), 4, + ACTIONS(6908), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [82112] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, + [82598] = 8, + ACTIONS(1463), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(4261), 1, - anon_sym_RPAREN, - STATE(2201), 1, - sym__newline, - STATE(1888), 3, - sym__soft_line_break, + STATE(2167), 1, sym__whitespace, - aux_sym_inline_link_repeat1, - [82133] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, - sym__whitespace_ge_2, - ACTIONS(4233), 1, - aux_sym__whitespace_token1, - ACTIONS(6672), 1, + STATE(2399), 1, + sym_link_title, + [82623] = 4, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(6916), 1, anon_sym_RPAREN, - STATE(2201), 1, - sym__newline, - STATE(1896), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [82154] = 6, + ACTIONS(6918), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(2036), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [82640] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6668), 1, - anon_sym_RPAREN, - STATE(2201), 1, + ACTIONS(6920), 1, + anon_sym_GT, + STATE(2211), 1, sym__newline, - STATE(2039), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82175] = 6, + [82661] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6668), 1, - anon_sym_RPAREN, - STATE(2201), 1, + ACTIONS(6922), 1, + anon_sym_EQ, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2052), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82196] = 6, + [82682] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6680), 1, + ACTIONS(4350), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2029), 3, + STATE(1894), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82217] = 4, - ACTIONS(6895), 1, + [82703] = 4, + ACTIONS(4557), 1, anon_sym_LPAREN, - ACTIONS(6898), 1, + ACTIONS(6924), 1, anon_sym_RPAREN, - ACTIONS(6900), 3, + ACTIONS(6926), 3, sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(2031), 3, + STATE(2059), 3, sym__link_destination_parenthesis, sym__word, aux_sym__link_destination_parenthesis_repeat1, - [82234] = 8, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - ACTIONS(6907), 1, - sym__no_indented_chunk, - STATE(2146), 1, - sym__whitespace, - STATE(2243), 1, - sym_link_title, - [82259] = 6, + [82720] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6909), 1, + ACTIONS(4350), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2055), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82280] = 6, + [82741] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6682), 1, + ACTIONS(4476), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2035), 3, + STATE(2101), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82301] = 6, + [82762] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6911), 1, + ACTIONS(4476), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1892), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82322] = 8, - ACTIONS(1601), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - STATE(2153), 1, - sym__whitespace, - STATE(2249), 1, - sym_link_title, - [82347] = 6, + [82783] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6911), 1, + ACTIONS(6689), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2041), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82368] = 6, + [82804] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6913), 1, - anon_sym_RPAREN, - STATE(2201), 1, + ACTIONS(6928), 1, + anon_sym_GT, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2048), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82389] = 6, + [82825] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6915), 1, + ACTIONS(6689), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1893), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82410] = 6, + [82846] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6915), 1, + ACTIONS(4474), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2047), 3, + STATE(2085), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82431] = 6, + [82867] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6917), 1, + ACTIONS(4474), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1902), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82452] = 8, - ACTIONS(1656), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - STATE(2147), 1, - sym__whitespace, - STATE(2255), 1, - sym_link_title, - [82477] = 6, + [82888] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6919), 1, + ACTIONS(6689), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2063), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82498] = 6, + [82909] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6921), 1, + ACTIONS(4336), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2038), 3, + STATE(1899), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82519] = 6, + [82930] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6921), 1, + ACTIONS(4336), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2058), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82540] = 6, + [82951] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6923), 1, - anon_sym_RPAREN, - STATE(2201), 1, + ACTIONS(6930), 1, + anon_sym_GT, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82561] = 6, + [82972] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6925), 1, + ACTIONS(6693), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82582] = 6, + [82993] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6927), 1, + ACTIONS(6693), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1897), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82603] = 8, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, + [83014] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6929), 1, - sym__no_indented_chunk, - STATE(2157), 1, + ACTIONS(6693), 1, + anon_sym_RPAREN, + STATE(2211), 1, + sym__newline, + STATE(2070), 3, + sym__soft_line_break, sym__whitespace, - STATE(2393), 1, - sym_link_title, - [82628] = 8, - ACTIONS(1664), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, + aux_sym_inline_link_repeat1, + [83035] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - STATE(2159), 1, + ACTIONS(6932), 1, + anon_sym_EQ, + STATE(2211), 1, + sym__newline, + STATE(1881), 3, + sym__soft_line_break, sym__whitespace, - STATE(2265), 1, - sym_link_title, - [82653] = 6, + aux_sym_inline_link_repeat1, + [83056] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(6734), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(6736), 1, aux_sym__whitespace_token1, - ACTIONS(6931), 1, - anon_sym_RPAREN, - STATE(2201), 1, + ACTIONS(6772), 1, + sym__attribute_name, + STATE(2226), 1, sym__newline, - STATE(2046), 3, + STATE(2025), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82674] = 6, + [83077] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6931), 1, - anon_sym_RPAREN, - STATE(2201), 1, + ACTIONS(6934), 1, + anon_sym_GT, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2033), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82695] = 6, + [83098] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6933), 1, + ACTIONS(6685), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2048), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82716] = 6, + [83119] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6933), 1, + ACTIONS(6685), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1900), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82737] = 8, - ACTIONS(1440), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - STATE(2144), 1, - sym__whitespace, - STATE(2392), 1, - sym_link_title, - [82762] = 8, - ACTIONS(1461), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - STATE(2160), 1, - sym__whitespace, - STATE(2385), 1, - sym_link_title, - [82787] = 6, + [83140] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6909), 1, + ACTIONS(6685), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2043), 3, + STATE(2068), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82808] = 6, + [83161] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6686), 1, + ACTIONS(6695), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82829] = 6, + [83182] = 4, + ACTIONS(6936), 1, + anon_sym_LPAREN, + ACTIONS(6939), 1, + anon_sym_RPAREN, + ACTIONS(6941), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(2059), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [83199] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6686), 1, + ACTIONS(6695), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2052), 3, + STATE(1901), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82850] = 6, + [83220] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6664), 1, + ACTIONS(6683), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2072), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82871] = 6, + [83241] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6664), 1, + ACTIONS(6695), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2054), 3, + STATE(2074), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82892] = 6, + [83262] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6680), 1, + ACTIONS(6683), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1889), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82913] = 8, - ACTIONS(1537), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, + [83283] = 8, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6903), 1, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - STATE(2162), 1, + ACTIONS(6944), 1, + sym__no_indented_chunk, + STATE(2174), 1, sym__whitespace, - STATE(2374), 1, + STATE(2386), 1, sym_link_title, - [82938] = 6, + [83308] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6676), 1, + ACTIONS(6697), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2058), 3, + STATE(2078), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82959] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4231), 1, + [83329] = 8, + ACTIONS(1603), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6676), 1, - anon_sym_RPAREN, - STATE(2201), 1, - sym__newline, - STATE(1898), 3, - sym__soft_line_break, + STATE(2185), 1, sym__whitespace, - aux_sym_inline_link_repeat1, - [82980] = 6, + STATE(2387), 1, + sym_link_title, + [83354] = 8, + ACTIONS(1567), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + STATE(2180), 1, + sym__whitespace, + STATE(2323), 1, + sym_link_title, + [83379] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6676), 1, + ACTIONS(6697), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83001] = 6, + [83400] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6670), 1, + ACTIONS(6691), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2060), 3, + STATE(2082), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83022] = 8, - ACTIONS(1585), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - STATE(2164), 1, - sym__whitespace, - STATE(2323), 1, - sym_link_title, - [83047] = 6, + [83421] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6670), 1, + ACTIONS(6691), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1887), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83068] = 6, + [83442] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6670), 1, + ACTIONS(6699), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2081), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83089] = 6, + [83463] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6684), 1, + ACTIONS(6946), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83110] = 6, + [83484] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6935), 1, - anon_sym_GT, - STATE(2201), 1, + ACTIONS(6946), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2090), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83131] = 6, + [83505] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6684), 1, + ACTIONS(6699), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2045), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83152] = 6, + [83526] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6680), 1, + ACTIONS(6681), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1903), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83173] = 8, - ACTIONS(1666), 1, + [83547] = 8, + ACTIONS(1660), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6903), 1, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - STATE(2163), 1, + STATE(2164), 1, sym__whitespace, - STATE(2281), 1, + STATE(2305), 1, sym_link_title, - [83198] = 6, + [83572] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4255), 1, + ACTIONS(6948), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2066), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83219] = 6, + [83593] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4255), 1, + ACTIONS(6950), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1893), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83240] = 6, + [83614] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6672), 1, + ACTIONS(6950), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2085), 3, + STATE(2091), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83261] = 6, + [83635] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, + aux_sym__whitespace_token1, + ACTIONS(6952), 1, + anon_sym_GT, + STATE(2211), 1, + sym__newline, + STATE(1881), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [83656] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4119), 1, + sym__whitespace_ge_2, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4381), 1, + ACTIONS(6954), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2070), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83282] = 6, + [83677] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4381), 1, + ACTIONS(6956), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1890), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83303] = 6, + [83698] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6674), 1, + ACTIONS(6956), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2110), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83324] = 6, + [83719] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6674), 1, + ACTIONS(6954), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2033), 3, + STATE(2092), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83345] = 6, + [83740] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6672), 1, + ACTIONS(6701), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83366] = 6, + [83761] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6937), 1, + ACTIONS(6958), 1, anon_sym_GT, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2080), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83387] = 6, + [83782] = 8, + ACTIONS(1569), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + STATE(2184), 1, + sym__whitespace, + STATE(2388), 1, + sym_link_title, + [83807] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6682), 1, + ACTIONS(6701), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1895), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83408] = 6, + [83828] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6702), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(6704), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6763), 1, - sym__attribute_name, - STATE(2203), 1, + ACTIONS(6701), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(1987), 3, + STATE(2105), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83429] = 6, + [83849] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6939), 1, - anon_sym_EQ, - STATE(2201), 1, + ACTIONS(6960), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83450] = 6, + [83870] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6941), 1, - anon_sym_GT, - STATE(2201), 1, + ACTIONS(6962), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(2072), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83471] = 6, + [83891] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6678), 1, + ACTIONS(6964), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2071), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83492] = 6, + [83912] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6678), 1, + ACTIONS(6966), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1897), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83513] = 6, + [83933] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6678), 1, + ACTIONS(6968), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2077), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83534] = 6, + [83954] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6666), 1, + ACTIONS(6968), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1892), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83555] = 6, + [83975] = 8, + ACTIONS(1565), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + STATE(2172), 1, + sym__whitespace, + STATE(2293), 1, + sym_link_title, + [84000] = 8, + ACTIONS(1534), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + STATE(2170), 1, + sym__whitespace, + STATE(2392), 1, + sym_link_title, + [84025] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4261), 1, + ACTIONS(6970), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2097), 3, + STATE(2093), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83576] = 6, + [84046] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4389), 1, + ACTIONS(6970), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2074), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83597] = 6, + [84067] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4389), 1, + ACTIONS(6703), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1895), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83618] = 6, + [84088] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6666), 1, + ACTIONS(6681), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2081), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83639] = 6, + [84109] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6666), 1, + ACTIONS(6703), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(2095), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83660] = 4, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(6943), 1, - anon_sym_RPAREN, - ACTIONS(6945), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(2031), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [83677] = 6, + [84130] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6947), 1, - anon_sym_EQ, - STATE(2201), 1, + ACTIONS(6681), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(2087), 3, + STATE(2100), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83698] = 6, + [84151] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6949), 1, - anon_sym_GT, - STATE(2201), 1, + ACTIONS(4392), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(2084), 3, + STATE(2049), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83719] = 6, + [84172] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6951), 1, - anon_sym_GT, - STATE(2201), 1, + ACTIONS(6687), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(1874), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83740] = 6, + [84193] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(6953), 1, - anon_sym_GT, - STATE(2201), 1, + ACTIONS(4392), 1, + anon_sym_RPAREN, + STATE(2211), 1, sym__newline, - STATE(2101), 3, + STATE(1898), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83761] = 6, + [84214] = 8, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + ACTIONS(6972), 1, + sym__no_indented_chunk, + STATE(2152), 1, + sym__whitespace, + STATE(2277), 1, + sym_link_title, + [84239] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4335), 1, + ACTIONS(4380), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2091), 3, + STATE(1896), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83782] = 6, + [84260] = 8, + ACTIONS(1601), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + STATE(2177), 1, + sym__whitespace, + STATE(2285), 1, + sym_link_title, + [84285] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4335), 1, + ACTIONS(6974), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1894), 3, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83803] = 6, + [84306] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4391), 1, + ACTIONS(6687), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(1891), 3, + STATE(2099), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83824] = 6, + [84327] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4231), 1, + ACTIONS(4119), 1, sym__whitespace_ge_2, - ACTIONS(4233), 1, + ACTIONS(4121), 1, aux_sym__whitespace_token1, - ACTIONS(4391), 1, + ACTIONS(4380), 1, anon_sym_RPAREN, - STATE(2201), 1, + STATE(2211), 1, sym__newline, - STATE(2083), 3, + STATE(2040), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [83845] = 4, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(6955), 1, - anon_sym_RPAREN, - ACTIONS(6957), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(2098), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [83862] = 7, - ACTIONS(1461), 1, + [84348] = 7, + ACTIONS(1660), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2055), 1, + STATE(2096), 1, sym__newline, - STATE(2385), 1, + STATE(2305), 1, sym_link_title, - [83884] = 4, - ACTIONS(6961), 1, - sym__line_ending, - STATE(2133), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(377), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6963), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [83900] = 7, - ACTIONS(1560), 1, + [84370] = 7, + ACTIONS(1509), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2075), 1, + STATE(2031), 1, sym__newline, - STATE(2307), 1, + STATE(2400), 1, sym_link_title, - [83922] = 7, - ACTIONS(1601), 1, + [84392] = 7, + ACTIONS(1542), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2032), 1, + STATE(2067), 1, sym__newline, - STATE(2249), 1, + STATE(2346), 1, sym_link_title, - [83944] = 7, - ACTIONS(1591), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, + [84414] = 3, + ACTIONS(2990), 1, + aux_sym__whitespace_token1, + ACTIONS(6978), 1, + sym__last_token_whitespace, + ACTIONS(2988), 5, anon_sym_DQUOTE, - ACTIONS(6660), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6959), 1, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, aux_sym__newline_token1, - STATE(2068), 1, - sym__newline, - STATE(2261), 1, - sym_link_title, - [83966] = 7, - ACTIONS(1656), 1, + [84428] = 7, + ACTIONS(1534), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2036), 1, + STATE(2087), 1, sym__newline, - STATE(2255), 1, + STATE(2392), 1, sym_link_title, - [83988] = 7, - ACTIONS(1664), 1, + [84450] = 4, + ACTIONS(6980), 1, + sym__line_ending, + STATE(2148), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(377), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6982), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [84466] = 3, + ACTIONS(2990), 1, + aux_sym__whitespace_token1, + ACTIONS(6984), 1, + sym__last_token_whitespace, + ACTIONS(2988), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [84480] = 7, + ACTIONS(1463), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2042), 1, + STATE(2097), 1, sym__newline, - STATE(2265), 1, + STATE(2399), 1, sym_link_title, - [84010] = 7, - ACTIONS(1666), 1, + [84502] = 7, + ACTIONS(1565), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2050), 1, + STATE(2109), 1, sym__newline, - STATE(2281), 1, + STATE(2293), 1, sym_link_title, - [84032] = 7, - ACTIONS(1440), 1, + [84524] = 7, + ACTIONS(1569), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2049), 1, + STATE(2066), 1, sym__newline, - STATE(2392), 1, + STATE(2388), 1, sym_link_title, - [84054] = 3, - ACTIONS(2990), 1, - aux_sym__whitespace_token1, - ACTIONS(6965), 1, - sym__last_token_whitespace, - ACTIONS(2988), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [84068] = 7, - ACTIONS(1585), 1, + [84546] = 7, + ACTIONS(1567), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2063), 1, + STATE(2076), 1, sym__newline, STATE(2323), 1, sym_link_title, - [84090] = 7, - ACTIONS(1537), 1, + [84568] = 7, + ACTIONS(1601), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(6959), 1, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(2056), 1, + STATE(2107), 1, sym__newline, - STATE(2374), 1, + STATE(2285), 1, sym_link_title, - [84112] = 3, - ACTIONS(2990), 1, - aux_sym__whitespace_token1, - ACTIONS(6967), 1, - sym__last_token_whitespace, - ACTIONS(2988), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [84126] = 2, - ACTIONS(6969), 1, - sym__last_token_whitespace, - ACTIONS(2988), 5, + [84590] = 7, + ACTIONS(1603), 1, sym__no_indented_chunk, + ACTIONS(6675), 1, anon_sym_DQUOTE, + ACTIONS(6677), 1, anon_sym_SQUOTE, + ACTIONS(6679), 1, anon_sym_LPAREN, + ACTIONS(6976), 1, aux_sym__newline_token1, - [84137] = 2, - ACTIONS(3107), 1, + STATE(2064), 1, + sym__newline, + STATE(2387), 1, + sym_link_title, + [84612] = 3, + STATE(2139), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(402), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6986), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [84625] = 2, + ACTIONS(2166), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(2164), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84148] = 2, - ACTIONS(2186), 1, + [84636] = 2, + ACTIONS(2210), 1, aux_sym__whitespace_token1, - ACTIONS(2184), 5, + ACTIONS(2208), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84159] = 2, - ACTIONS(3744), 1, + [84647] = 2, + ACTIONS(2216), 1, aux_sym__whitespace_token1, - ACTIONS(3742), 5, + ACTIONS(2214), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84170] = 2, - ACTIONS(3107), 1, + [84658] = 2, + ACTIONS(2252), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 5, + ACTIONS(2250), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84181] = 2, - ACTIONS(2220), 1, + [84669] = 2, + ACTIONS(2206), 1, aux_sym__whitespace_token1, - ACTIONS(2218), 5, + ACTIONS(2204), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84192] = 2, - ACTIONS(2240), 1, + [84680] = 2, + ACTIONS(2248), 1, aux_sym__whitespace_token1, - ACTIONS(2238), 5, + ACTIONS(2246), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84203] = 3, - STATE(2142), 1, + [84691] = 3, + STATE(2126), 1, aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, + ACTIONS(389), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(6971), 3, + ACTIONS(6988), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [84216] = 2, - ACTIONS(2202), 1, + [84704] = 4, + ACTIONS(377), 1, + sym__close_block, + ACTIONS(6990), 1, + sym__line_ending, + STATE(2166), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6992), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [84719] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(2200), 5, + ACTIONS(415), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84227] = 2, - ACTIONS(2174), 1, + [84730] = 2, + ACTIONS(2190), 1, aux_sym__whitespace_token1, - ACTIONS(2172), 5, + ACTIONS(2188), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84238] = 4, - ACTIONS(377), 1, - sym__close_block, - ACTIONS(6973), 1, - sym__line_ending, - STATE(2151), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6975), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84253] = 4, - ACTIONS(377), 1, - sym__trigger_error, - ACTIONS(6977), 1, - sym__line_ending, - STATE(2172), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6979), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84268] = 3, - STATE(2142), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(389), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6971), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84281] = 2, - ACTIONS(2178), 1, + [84741] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(2176), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(3105), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [84292] = 2, - ACTIONS(2228), 1, + [84752] = 2, + ACTIONS(2220), 1, aux_sym__whitespace_token1, - ACTIONS(2226), 5, + ACTIONS(2218), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84303] = 3, - STATE(2128), 1, + [84763] = 3, + STATE(2139), 1, aux_sym__ignore_matching_tokens, - ACTIONS(389), 2, + ACTIONS(395), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(6981), 3, + ACTIONS(6994), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [84316] = 2, - ACTIONS(691), 1, + [84776] = 2, + ACTIONS(2202), 1, aux_sym__whitespace_token1, - ACTIONS(689), 5, + ACTIONS(2200), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84327] = 2, - ACTIONS(483), 1, + [84787] = 2, + ACTIONS(3107), 1, aux_sym__whitespace_token1, - ACTIONS(481), 5, + ACTIONS(3105), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84338] = 2, - ACTIONS(2194), 1, + [84798] = 2, + ACTIONS(3947), 1, aux_sym__whitespace_token1, - ACTIONS(2192), 5, + ACTIONS(3945), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84349] = 2, - ACTIONS(2250), 1, + [84809] = 2, + ACTIONS(2236), 1, aux_sym__whitespace_token1, - ACTIONS(2248), 5, + ACTIONS(2234), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84360] = 2, - ACTIONS(2166), 1, + [84820] = 4, + ACTIONS(377), 1, + sym__trigger_error, + ACTIONS(6997), 1, + sym__line_ending, + STATE(2169), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6999), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [84835] = 2, + ACTIONS(2228), 1, aux_sym__whitespace_token1, - ACTIONS(2164), 5, + ACTIONS(2226), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [84846] = 2, + ACTIONS(736), 1, + aux_sym__whitespace_token1, + ACTIONS(734), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [84371] = 3, - STATE(2142), 1, + [84857] = 2, + ACTIONS(7001), 1, + sym__last_token_whitespace, + ACTIONS(2988), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym__newline_token1, + [84868] = 3, + STATE(2139), 1, aux_sym__ignore_matching_tokens, - ACTIONS(403), 2, + ACTIONS(389), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(6983), 3, + ACTIONS(6986), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [84881] = 3, + ACTIONS(402), 1, + sym__trigger_error, + STATE(2171), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7003), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [84384] = 2, - ACTIONS(2254), 1, + [84893] = 5, + ACTIONS(1567), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + STATE(2323), 1, + sym_link_title, + [84909] = 5, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(2252), 5, + ACTIONS(7005), 1, + aux_sym__newline_token1, + STATE(314), 1, + sym__newline, + STATE(2114), 1, + sym__whitespace, + [84925] = 5, + ACTIONS(6675), 1, anon_sym_DQUOTE, + ACTIONS(6677), 1, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(6679), 1, + anon_sym_LPAREN, + ACTIONS(7007), 1, + sym__no_indented_chunk, + STATE(2273), 1, + sym_link_title, + [84941] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + ACTIONS(7009), 1, aux_sym__newline_token1, - [84395] = 5, - ACTIONS(6658), 1, + STATE(323), 1, + sym__newline, + STATE(2123), 1, + sym__whitespace, + [84957] = 1, + ACTIONS(3105), 5, + sym__no_indented_chunk, anon_sym_DQUOTE, - ACTIONS(6660), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, anon_sym_LPAREN, - ACTIONS(6929), 1, - sym__no_indented_chunk, - STATE(2393), 1, - sym_link_title, - [84411] = 5, - ACTIONS(6903), 1, + aux_sym__newline_token1, + [84965] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6986), 1, + ACTIONS(7009), 1, aux_sym__newline_token1, - STATE(346), 1, + STATE(320), 1, sym__newline, STATE(2115), 1, sym__whitespace, - [84427] = 5, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6988), 1, - sym__no_indented_chunk, - STATE(2240), 1, - sym_link_title, - [84443] = 5, - ACTIONS(1601), 1, + [84981] = 5, + ACTIONS(6912), 1, + sym__whitespace_ge_2, + ACTIONS(6914), 1, + aux_sym__whitespace_token1, + ACTIONS(7005), 1, + aux_sym__newline_token1, + STATE(335), 1, + sym__newline, + STATE(2125), 1, + sym__whitespace, + [84997] = 5, + ACTIONS(1463), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2249), 1, + STATE(2399), 1, sym_link_title, - [84459] = 2, - ACTIONS(6992), 1, + [85013] = 2, + ACTIONS(7013), 1, aux_sym__whitespace_token1, - ACTIONS(6990), 4, + ACTIONS(7011), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [84469] = 5, - ACTIONS(6903), 1, + [85023] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6986), 1, + ACTIONS(7005), 1, aux_sym__newline_token1, - STATE(333), 1, + STATE(307), 1, sym__newline, - STATE(2111), 1, + STATE(2120), 1, sym__whitespace, - [84485] = 5, - ACTIONS(6903), 1, + [85039] = 3, + ACTIONS(389), 1, + sym__trigger_error, + STATE(2149), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7015), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [85051] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6994), 1, + ACTIONS(7005), 1, aux_sym__newline_token1, - STATE(299), 1, + STATE(325), 1, sym__newline, - STATE(2108), 1, + STATE(2122), 1, sym__whitespace, - [84501] = 3, - ACTIONS(389), 1, + [85067] = 3, + ACTIONS(402), 1, sym__close_block, - STATE(2152), 1, + STATE(2165), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6996), 3, + ACTIONS(7017), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [84513] = 3, - ACTIONS(403), 1, - sym__close_block, - STATE(2152), 1, + [85079] = 3, + ACTIONS(7019), 1, + sym__block_close, + STATE(1585), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6998), 3, + ACTIONS(5766), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [84525] = 5, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(6907), 1, - sym__no_indented_chunk, - STATE(2243), 1, - sym_link_title, - [84541] = 2, - ACTIONS(7003), 1, - aux_sym__whitespace_token1, - ACTIONS(7001), 4, - anon_sym_SLASH, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [84551] = 5, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - ACTIONS(6994), 1, - aux_sym__newline_token1, - STATE(310), 1, - sym__newline, - STATE(2119), 1, - sym__whitespace, - [84567] = 2, - ACTIONS(7007), 1, - aux_sym__whitespace_token1, - ACTIONS(7005), 4, - anon_sym_SLASH, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [84577] = 5, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - ACTIONS(7009), 1, - sym__no_indented_chunk, - STATE(2394), 1, - sym_link_title, - [84593] = 2, - ACTIONS(7013), 1, - aux_sym__whitespace_token1, - ACTIONS(7011), 4, - anon_sym_SLASH, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [84603] = 5, - ACTIONS(1656), 1, + [85091] = 5, + ACTIONS(1565), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2255), 1, + STATE(2293), 1, sym_link_title, - [84619] = 5, - ACTIONS(1440), 1, + [85107] = 3, + ACTIONS(395), 1, + sym__close_block, + STATE(2165), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7021), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [85119] = 3, + ACTIONS(389), 1, + sym__close_block, + STATE(2165), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7017), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [85131] = 5, + ACTIONS(1534), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, STATE(2392), 1, sym_link_title, - [84635] = 5, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - ACTIONS(6986), 1, - aux_sym__newline_token1, - STATE(339), 1, - sym__newline, - STATE(2113), 1, - sym__whitespace, - [84651] = 5, - ACTIONS(1461), 1, + [85147] = 3, + ACTIONS(389), 1, + sym__close_block, + STATE(2162), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7024), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [85159] = 3, + ACTIONS(389), 1, + sym__trigger_error, + STATE(2171), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7003), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [85171] = 5, + ACTIONS(1569), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2385), 1, + STATE(2388), 1, sym_link_title, - [84667] = 5, - ACTIONS(1664), 1, + [85187] = 3, + ACTIONS(395), 1, + sym__trigger_error, + STATE(2171), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(7026), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [85199] = 5, + ACTIONS(1601), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2265), 1, + STATE(2285), 1, sym_link_title, - [84683] = 5, - ACTIONS(1537), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, + [85215] = 2, + ACTIONS(7031), 1, + aux_sym__whitespace_token1, + ACTIONS(7029), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [85225] = 5, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2374), 1, + ACTIONS(7033), 1, + sym__no_indented_chunk, + STATE(2383), 1, sym_link_title, - [84699] = 3, - ACTIONS(389), 1, - sym__close_block, - STATE(2166), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(7015), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84711] = 3, - ACTIONS(399), 1, - sym__close_block, - STATE(2152), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6996), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84723] = 2, - ACTIONS(7019), 1, + [85241] = 2, + ACTIONS(7037), 1, aux_sym__whitespace_token1, - ACTIONS(7017), 4, + ACTIONS(7035), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [84733] = 5, - ACTIONS(1666), 1, - sym__no_indented_chunk, - ACTIONS(6658), 1, + [85251] = 2, + ACTIONS(7041), 1, + aux_sym__whitespace_token1, + ACTIONS(7039), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [85261] = 5, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2281), 1, - sym_link_title, - [84749] = 5, - ACTIONS(1585), 1, + ACTIONS(6972), 1, sym__no_indented_chunk, - ACTIONS(6658), 1, - anon_sym_DQUOTE, - ACTIONS(6660), 1, - anon_sym_SQUOTE, - ACTIONS(6662), 1, - anon_sym_LPAREN, - STATE(2323), 1, + STATE(2277), 1, sym_link_title, - [84765] = 5, - ACTIONS(6903), 1, + [85277] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6986), 1, + ACTIONS(7009), 1, aux_sym__newline_token1, - STATE(345), 1, + STATE(322), 1, sym__newline, - STATE(2114), 1, + STATE(2121), 1, sym__whitespace, - [84781] = 3, - ACTIONS(389), 1, - sym__trigger_error, - STATE(2177), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(7021), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84793] = 3, - ACTIONS(389), 1, - sym__trigger_error, - STATE(2176), 1, + [85293] = 3, + ACTIONS(7043), 1, + sym__block_close, + STATE(2163), 1, aux_sym__ignore_matching_tokens, - ACTIONS(7023), 3, + ACTIONS(7045), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [84805] = 5, - ACTIONS(6903), 1, - sym__whitespace_ge_2, - ACTIONS(6905), 1, - aux_sym__whitespace_token1, - ACTIONS(6994), 1, - aux_sym__newline_token1, - STATE(321), 1, - sym__newline, - STATE(2118), 1, - sym__whitespace, - [84821] = 5, - ACTIONS(6903), 1, + [85305] = 5, + ACTIONS(1660), 1, + sym__no_indented_chunk, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, + anon_sym_LPAREN, + STATE(2305), 1, + sym_link_title, + [85321] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6994), 1, + ACTIONS(7005), 1, aux_sym__newline_token1, - STATE(326), 1, + STATE(317), 1, sym__newline, - STATE(2112), 1, + STATE(2117), 1, sym__whitespace, - [84837] = 5, - ACTIONS(6903), 1, + [85337] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6986), 1, + ACTIONS(7009), 1, aux_sym__newline_token1, - STATE(313), 1, + STATE(339), 1, sym__newline, - STATE(2110), 1, + STATE(2113), 1, sym__whitespace, - [84853] = 3, - ACTIONS(403), 1, - sym__trigger_error, - STATE(2176), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(7025), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84865] = 3, - ACTIONS(399), 1, - sym__trigger_error, - STATE(2176), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(7023), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84877] = 3, - ACTIONS(7028), 1, - sym__block_close, - STATE(1552), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5709), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84889] = 5, - ACTIONS(6903), 1, + [85353] = 5, + ACTIONS(6912), 1, sym__whitespace_ge_2, - ACTIONS(6905), 1, + ACTIONS(6914), 1, aux_sym__whitespace_token1, - ACTIONS(6994), 1, + ACTIONS(7009), 1, aux_sym__newline_token1, - STATE(298), 1, + STATE(330), 1, sym__newline, - STATE(2116), 1, + STATE(2124), 1, sym__whitespace, - [84905] = 3, - ACTIONS(7030), 1, - sym__block_close, - STATE(2178), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(7032), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [84917] = 1, - ACTIONS(3105), 5, + [85369] = 5, + ACTIONS(1603), 1, sym__no_indented_chunk, + ACTIONS(6675), 1, anon_sym_DQUOTE, + ACTIONS(6677), 1, anon_sym_SQUOTE, + ACTIONS(6679), 1, anon_sym_LPAREN, - aux_sym__newline_token1, - [84925] = 4, - ACTIONS(6658), 1, + STATE(2387), 1, + sym_link_title, + [85385] = 5, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2374), 1, + ACTIONS(6944), 1, + sym__no_indented_chunk, + STATE(2386), 1, sym_link_title, - [84938] = 2, - ACTIONS(5444), 1, + [85401] = 2, + ACTIONS(7049), 1, aux_sym__whitespace_token1, - ACTIONS(5440), 3, - anon_sym_RPAREN, + ACTIONS(7047), 4, + anon_sym_SLASH, + anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [84947] = 4, - ACTIONS(6658), 1, + [85411] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2249), 1, + STATE(2386), 1, sym_link_title, - [84960] = 4, - ACTIONS(6658), 1, + [85424] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2239), 1, + STATE(2388), 1, sym_link_title, - [84973] = 4, - ACTIONS(6658), 1, + [85437] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2255), 1, + STATE(2271), 1, sym_link_title, - [84986] = 4, - ACTIONS(6658), 1, + [85450] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2243), 1, + STATE(2277), 1, sym_link_title, - [84999] = 2, - ACTIONS(7036), 1, - aux_sym__whitespace_token1, - ACTIONS(7034), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [85008] = 2, - ACTIONS(5383), 1, - aux_sym__whitespace_token1, - ACTIONS(5379), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [85017] = 4, - ACTIONS(6658), 1, + [85463] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2395), 1, + STATE(2273), 1, sym_link_title, - [85030] = 4, - ACTIONS(6658), 1, + [85476] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2394), 1, + STATE(2399), 1, sym_link_title, - [85043] = 4, - ACTIONS(6658), 1, + [85489] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2393), 1, + STATE(2305), 1, sym_link_title, - [85056] = 4, - ACTIONS(6658), 1, + [85502] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2323), 1, + STATE(2392), 1, sym_link_title, - [85069] = 4, - ACTIONS(6658), 1, + [85515] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2392), 1, + STATE(2387), 1, sym_link_title, - [85082] = 4, - ACTIONS(6658), 1, + [85528] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2240), 1, + STATE(2383), 1, sym_link_title, - [85095] = 4, - ACTIONS(6658), 1, + [85541] = 2, + ACTIONS(7053), 1, + aux_sym__whitespace_token1, + ACTIONS(7051), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [85550] = 2, + ACTIONS(5514), 1, + aux_sym__whitespace_token1, + ACTIONS(5512), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [85559] = 2, + ACTIONS(7057), 1, + aux_sym__whitespace_token1, + ACTIONS(7055), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [85568] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2281), 1, + STATE(2285), 1, sym_link_title, - [85108] = 4, - ACTIONS(6658), 1, + [85581] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2385), 1, + STATE(2381), 1, sym_link_title, - [85121] = 2, - ACTIONS(7040), 1, - aux_sym__whitespace_token1, - ACTIONS(7038), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [85130] = 4, - ACTIONS(6658), 1, + [85594] = 4, + ACTIONS(6675), 1, anon_sym_DQUOTE, - ACTIONS(6660), 1, + ACTIONS(6677), 1, anon_sym_SQUOTE, - ACTIONS(6662), 1, + ACTIONS(6679), 1, anon_sym_LPAREN, - STATE(2265), 1, + STATE(2293), 1, sym_link_title, - [85143] = 3, - ACTIONS(7042), 1, - anon_sym_LPAREN, - ACTIONS(7044), 1, - anon_sym_LBRACK, - STATE(811), 1, - sym_link_label, - [85153] = 3, - ACTIONS(7046), 1, - sym__split_token, - ACTIONS(7048), 1, - sym__soft_line_break_marker, - STATE(2216), 1, - aux_sym__soft_line_break_repeat1, - [85163] = 3, - ACTIONS(7050), 1, + [85607] = 4, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + ACTIONS(6677), 1, + anon_sym_SQUOTE, + ACTIONS(6679), 1, anon_sym_LPAREN, - ACTIONS(7052), 1, - anon_sym_LBRACK, - STATE(771), 1, - sym_link_label, - [85173] = 3, - ACTIONS(7054), 1, - sym__split_token, - ACTIONS(7056), 1, - sym__soft_line_break_marker, - STATE(2209), 1, - aux_sym__soft_line_break_repeat1, - [85183] = 3, - ACTIONS(7058), 1, + STATE(2323), 1, + sym_link_title, + [85620] = 2, + ACTIONS(5412), 1, + aux_sym__whitespace_token1, + ACTIONS(5408), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [85629] = 3, + ACTIONS(7059), 1, sym__split_token, - ACTIONS(7060), 1, + ACTIONS(7061), 1, sym__soft_line_break_marker, - STATE(2207), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85193] = 3, - ACTIONS(7062), 1, + [85639] = 3, + ACTIONS(7063), 1, sym__split_token, - ACTIONS(7064), 1, + ACTIONS(7065), 1, sym__soft_line_break_marker, - STATE(2219), 1, + STATE(2218), 1, aux_sym__soft_line_break_repeat1, - [85203] = 3, - ACTIONS(7066), 1, + [85649] = 3, + ACTIONS(7059), 1, sym__split_token, - ACTIONS(7068), 1, + ACTIONS(7067), 1, sym__soft_line_break_marker, - STATE(2214), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85213] = 3, - ACTIONS(7070), 1, + [85659] = 3, + ACTIONS(7059), 1, sym__split_token, - ACTIONS(7072), 1, + ACTIONS(7069), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85223] = 3, - ACTIONS(7074), 1, + [85669] = 3, + ACTIONS(7059), 1, sym__split_token, - ACTIONS(7076), 1, + ACTIONS(7071), 1, sym__soft_line_break_marker, - STATE(2210), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85233] = 3, - ACTIONS(7070), 1, + [85679] = 3, + ACTIONS(7073), 1, sym__split_token, - ACTIONS(7078), 1, + ACTIONS(7075), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2209), 1, aux_sym__soft_line_break_repeat1, - [85243] = 3, - ACTIONS(7070), 1, + [85689] = 3, + ACTIONS(7077), 1, sym__split_token, - ACTIONS(7080), 1, + ACTIONS(7079), 1, sym__soft_line_break_marker, STATE(2212), 1, aux_sym__soft_line_break_repeat1, - [85253] = 3, - ACTIONS(7082), 1, + [85699] = 3, + ACTIONS(7059), 1, sym__split_token, - ACTIONS(7084), 1, + ACTIONS(7081), 1, sym__soft_line_break_marker, - STATE(2217), 1, - aux_sym__soft_line_break_repeat1, - [85263] = 2, - STATE(2212), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - ACTIONS(7086), 2, - sym__split_token, - sym__soft_line_break_marker, - [85271] = 3, - ACTIONS(7089), 1, + [85709] = 3, + ACTIONS(7083), 1, anon_sym_LPAREN, - ACTIONS(7091), 1, + ACTIONS(7085), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_link_label, + [85719] = 3, + ACTIONS(7087), 1, + anon_sym_LPAREN, + ACTIONS(7089), 1, anon_sym_LBRACK, - STATE(809), 1, + STATE(766), 1, sym_link_label, - [85281] = 3, - ACTIONS(7070), 1, + [85729] = 3, + ACTIONS(7091), 1, sym__split_token, ACTIONS(7093), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2222), 1, aux_sym__soft_line_break_repeat1, - [85291] = 3, - ACTIONS(7070), 1, + [85739] = 3, + ACTIONS(7059), 1, sym__split_token, ACTIONS(7095), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85301] = 3, - ACTIONS(7070), 1, + [85749] = 3, + ACTIONS(7059), 1, sym__split_token, ACTIONS(7097), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85311] = 3, - ACTIONS(7070), 1, + [85759] = 3, + ACTIONS(7059), 1, sym__split_token, ACTIONS(7099), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85321] = 3, - ACTIONS(7070), 1, - sym__split_token, + [85769] = 3, ACTIONS(7101), 1, - sym__soft_line_break_marker, - STATE(2212), 1, - aux_sym__soft_line_break_repeat1, - [85331] = 3, - ACTIONS(7070), 1, - sym__split_token, + anon_sym_LPAREN, ACTIONS(7103), 1, + anon_sym_LBRACK, + STATE(776), 1, + sym_link_label, + [85779] = 3, + ACTIONS(7105), 1, + sym__split_token, + ACTIONS(7107), 1, sym__soft_line_break_marker, - STATE(2212), 1, + STATE(2205), 1, aux_sym__soft_line_break_repeat1, - [85341] = 3, - ACTIONS(529), 1, + [85789] = 3, + ACTIONS(507), 1, sym__soft_line_break_marker, - ACTIONS(4480), 1, + ACTIONS(4506), 1, sym__split_token, - STATE(2218), 1, + STATE(2216), 1, aux_sym__soft_line_break_repeat1, - [85351] = 3, - ACTIONS(7105), 1, - anon_sym_LPAREN, - ACTIONS(7107), 1, - anon_sym_LBRACK, - STATE(772), 1, - sym_link_label, - [85361] = 3, - ACTIONS(7109), 1, + [85799] = 3, + ACTIONS(7059), 1, sym__split_token, - ACTIONS(7111), 1, + ACTIONS(7109), 1, sym__soft_line_break_marker, - STATE(2215), 1, + STATE(2229), 1, aux_sym__soft_line_break_repeat1, - [85371] = 3, - ACTIONS(7113), 1, + [85809] = 3, + ACTIONS(7111), 1, anon_sym_LPAREN, - ACTIONS(7115), 1, + ACTIONS(7113), 1, anon_sym_LBRACK, - STATE(875), 1, + STATE(990), 1, sym_link_label, - [85381] = 3, - ACTIONS(7117), 1, + [85819] = 3, + ACTIONS(7115), 1, anon_sym_LPAREN, + ACTIONS(7117), 1, + anon_sym_LBRACK, + STATE(883), 1, + sym_link_label, + [85829] = 3, ACTIONS(7119), 1, + sym__split_token, + ACTIONS(7121), 1, + sym__soft_line_break_marker, + STATE(2208), 1, + aux_sym__soft_line_break_repeat1, + [85839] = 3, + ACTIONS(7123), 1, + sym__split_token, + ACTIONS(7125), 1, + sym__soft_line_break_marker, + STATE(2207), 1, + aux_sym__soft_line_break_repeat1, + [85849] = 3, + ACTIONS(7127), 1, + sym__split_token, + ACTIONS(7129), 1, + sym__soft_line_break_marker, + STATE(2217), 1, + aux_sym__soft_line_break_repeat1, + [85859] = 3, + ACTIONS(7131), 1, + anon_sym_LPAREN, + ACTIONS(7133), 1, anon_sym_LBRACK, - STATE(871), 1, + STATE(777), 1, sym_link_label, - [85391] = 2, - ACTIONS(4645), 1, - sym__block_close, - ACTIONS(4647), 1, - sym__fenced_code_block_end_backtick, - [85398] = 2, - ACTIONS(5064), 1, - aux_sym__newline_token1, - STATE(2520), 1, - sym__newline, - [85405] = 2, - ACTIONS(1732), 1, + [85869] = 2, + STATE(2229), 1, + aux_sym__soft_line_break_repeat1, + ACTIONS(7135), 2, + sym__split_token, + sym__soft_line_break_marker, + [85877] = 2, + ACTIONS(1710), 1, aux_sym__newline_token1, - STATE(410), 1, + STATE(1715), 1, sym__newline, - [85412] = 2, - ACTIONS(5064), 1, + [85884] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2503), 1, + STATE(2588), 1, sym__newline, - [85419] = 2, - ACTIONS(5064), 1, + [85891] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(2508), 1, + STATE(447), 1, sym__newline, - [85426] = 2, - ACTIONS(5064), 1, + [85898] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, STATE(2513), 1, sym__newline, - [85433] = 2, - ACTIONS(7121), 1, - sym__block_close, - ACTIONS(7123), 1, - sym__fenced_code_block_end_tilde, - [85440] = 2, - ACTIONS(4609), 1, + [85905] = 2, + ACTIONS(7138), 1, sym__block_close, - ACTIONS(4611), 1, + ACTIONS(7140), 1, sym__fenced_code_block_end_backtick, - [85447] = 2, - ACTIONS(5064), 1, + [85912] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2515), 1, + STATE(2516), 1, sym__newline, - [85454] = 2, - ACTIONS(4609), 1, - sym__block_close, - ACTIONS(4611), 1, - sym__fenced_code_block_end_tilde, - [85461] = 2, - ACTIONS(7121), 1, - sym__block_close, - ACTIONS(7123), 1, - sym__fenced_code_block_end_backtick, - [85468] = 2, - ACTIONS(4732), 1, - sym__block_close, - ACTIONS(4734), 1, - sym__fenced_code_block_end_tilde, - [85475] = 2, - ACTIONS(4732), 1, - sym__block_close, - ACTIONS(4734), 1, - sym__fenced_code_block_end_backtick, - [85482] = 2, - ACTIONS(4728), 1, + [85919] = 2, + ACTIONS(7138), 1, sym__block_close, - ACTIONS(4730), 1, + ACTIONS(7140), 1, sym__fenced_code_block_end_tilde, - [85489] = 2, - ACTIONS(1732), 1, + [85926] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(423), 1, + STATE(2519), 1, sym__newline, - [85496] = 2, - ACTIONS(1732), 1, + [85933] = 2, + ACTIONS(1710), 1, aux_sym__newline_token1, - STATE(420), 1, + STATE(1738), 1, sym__newline, - [85503] = 2, - ACTIONS(4712), 1, - sym__block_close, - ACTIONS(4714), 1, - sym__fenced_code_block_end_backtick, - [85510] = 2, - ACTIONS(4712), 1, - sym__block_close, - ACTIONS(4714), 1, - sym__fenced_code_block_end_tilde, - [85517] = 2, - ACTIONS(1732), 1, + [85940] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(418), 1, + STATE(2526), 1, sym__newline, - [85524] = 2, - ACTIONS(4728), 1, - sym__block_close, - ACTIONS(4730), 1, - sym__fenced_code_block_end_backtick, - [85531] = 2, - ACTIONS(7125), 1, + [85947] = 2, + ACTIONS(1838), 1, + aux_sym__newline_token1, + STATE(1919), 1, + sym__newline, + [85954] = 2, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1122), 1, + sym__newline, + [85961] = 2, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1119), 1, + sym__newline, + [85968] = 2, + ACTIONS(4748), 1, sym__block_close, - ACTIONS(7127), 1, + ACTIONS(4750), 1, sym__fenced_code_block_end_backtick, - [85538] = 2, - ACTIONS(4235), 1, + [85975] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1137), 1, + STATE(1176), 1, sym__newline, - [85545] = 2, - ACTIONS(7125), 1, + [85982] = 2, + ACTIONS(4621), 1, sym__block_close, - ACTIONS(7127), 1, - sym__fenced_code_block_end_tilde, - [85552] = 2, - ACTIONS(4243), 1, + ACTIONS(4623), 1, + sym__fenced_code_block_end_backtick, + [85989] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1128), 1, + STATE(1181), 1, sym__newline, - [85559] = 2, - ACTIONS(1732), 1, + [85996] = 2, + ACTIONS(1758), 1, aux_sym__newline_token1, - STATE(415), 1, + STATE(1908), 1, sym__newline, - [85566] = 2, - ACTIONS(4235), 1, + [86003] = 2, + ACTIONS(7142), 1, aux_sym__newline_token1, - STATE(1121), 1, + STATE(2600), 1, sym__newline, - [85573] = 2, - ACTIONS(4243), 1, + [86010] = 2, + ACTIONS(4621), 1, + sym__block_close, + ACTIONS(4623), 1, + sym__fenced_code_block_end_tilde, + [86017] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1120), 1, + STATE(2556), 1, sym__newline, - [85580] = 2, - ACTIONS(5064), 1, + [86024] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2549), 1, + STATE(2557), 1, sym__newline, - [85587] = 2, - ACTIONS(1710), 1, + [86031] = 2, + ACTIONS(4647), 1, + sym__block_close, + ACTIONS(4649), 1, + sym__fenced_code_block_end_backtick, + [86038] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1901), 1, + STATE(2562), 1, sym__newline, - [85594] = 2, - ACTIONS(7129), 1, + [86045] = 2, + ACTIONS(7144), 1, + sym__block_close, + ACTIONS(7146), 1, + sym__fenced_code_block_end_tilde, + [86052] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2577), 1, + STATE(2563), 1, sym__newline, - [85601] = 2, - ACTIONS(1732), 1, + [86059] = 2, + ACTIONS(7144), 1, + sym__block_close, + ACTIONS(7146), 1, + sym__fenced_code_block_end_backtick, + [86066] = 2, + ACTIONS(4679), 1, + sym__block_close, + ACTIONS(4681), 1, + sym__fenced_code_block_end_tilde, + [86073] = 2, + ACTIONS(4679), 1, + sym__block_close, + ACTIONS(4681), 1, + sym__fenced_code_block_end_backtick, + [86080] = 2, + ACTIONS(4728), 1, + sym__block_close, + ACTIONS(4730), 1, + sym__fenced_code_block_end_tilde, + [86087] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(413), 1, + STATE(1138), 1, sym__newline, - [85608] = 2, - ACTIONS(5064), 1, + [86094] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2552), 1, + STATE(1137), 1, sym__newline, - [85615] = 2, - ACTIONS(5064), 1, + [86101] = 2, + ACTIONS(4609), 1, + sym__block_close, + ACTIONS(4611), 1, + sym__fenced_code_block_end_tilde, + [86108] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(2560), 1, + STATE(1145), 1, sym__newline, - [85622] = 2, - ACTIONS(5064), 1, + [86115] = 2, + ACTIONS(4728), 1, + sym__block_close, + ACTIONS(4730), 1, + sym__fenced_code_block_end_backtick, + [86122] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2562), 1, + STATE(1121), 1, sym__newline, - [85629] = 2, - ACTIONS(4235), 1, + [86129] = 2, + ACTIONS(4643), 1, + sym__block_close, + ACTIONS(4645), 1, + sym__fenced_code_block_end_backtick, + [86136] = 2, + ACTIONS(4609), 1, + sym__block_close, + ACTIONS(4611), 1, + sym__fenced_code_block_end_backtick, + [86143] = 2, + ACTIONS(4643), 1, + sym__block_close, + ACTIONS(4645), 1, + sym__fenced_code_block_end_tilde, + [86150] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1142), 1, + STATE(2596), 1, sym__newline, - [85636] = 2, - ACTIONS(4243), 1, + [86157] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1143), 1, + STATE(2599), 1, sym__newline, - [85643] = 2, - ACTIONS(1734), 1, + [86164] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(439), 1, + STATE(422), 1, sym__newline, - [85650] = 2, - ACTIONS(4235), 1, + [86171] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1160), 1, + STATE(2601), 1, sym__newline, - [85657] = 2, - ACTIONS(4243), 1, + [86178] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(1161), 1, + STATE(423), 1, sym__newline, - [85664] = 2, - ACTIONS(1790), 1, + [86185] = 2, + ACTIONS(1832), 1, aux_sym__newline_token1, - STATE(758), 1, + STATE(743), 1, sym__newline, - [85671] = 2, - ACTIONS(1732), 1, + [86192] = 2, + ACTIONS(1838), 1, aux_sym__newline_token1, - STATE(408), 1, + STATE(1908), 1, sym__newline, - [85678] = 2, - ACTIONS(4704), 1, + [86199] = 2, + ACTIONS(4683), 1, sym__block_close, - ACTIONS(4706), 1, + ACTIONS(4685), 1, sym__fenced_code_block_end_backtick, - [85685] = 2, - ACTIONS(4704), 1, - sym__block_close, - ACTIONS(4706), 1, - sym__fenced_code_block_end_tilde, - [85692] = 2, - ACTIONS(1884), 1, + [86206] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(887), 1, + STATE(425), 1, sym__newline, - [85699] = 2, - ACTIONS(1784), 1, + [86213] = 2, + ACTIONS(4683), 1, + sym__block_close, + ACTIONS(4685), 1, + sym__fenced_code_block_end_tilde, + [86220] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1814), 1, + STATE(2540), 1, sym__newline, - [85706] = 2, - ACTIONS(5064), 1, + [86227] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(2579), 1, + STATE(1172), 1, sym__newline, - [85713] = 2, - ACTIONS(5064), 1, + [86234] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2584), 1, + STATE(1115), 1, sym__newline, - [85720] = 2, - ACTIONS(4677), 1, + [86241] = 2, + ACTIONS(7148), 1, sym__block_close, - ACTIONS(4679), 1, + ACTIONS(7150), 1, sym__fenced_code_block_end_backtick, - [85727] = 2, - ACTIONS(4677), 1, + [86248] = 2, + ACTIONS(4663), 1, sym__block_close, - ACTIONS(4679), 1, + ACTIONS(4665), 1, + sym__fenced_code_block_end_backtick, + [86255] = 2, + ACTIONS(7148), 1, + sym__block_close, + ACTIONS(7150), 1, sym__fenced_code_block_end_tilde, - [85734] = 2, - ACTIONS(1722), 1, + [86262] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(1736), 1, + STATE(428), 1, sym__newline, - [85741] = 2, - ACTIONS(5064), 1, + [86269] = 2, + ACTIONS(7152), 1, + sym__block_close, + ACTIONS(7154), 1, + sym__fenced_code_block_end_tilde, + [86276] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(2591), 1, + STATE(1178), 1, sym__newline, - [85748] = 2, - ACTIONS(5064), 1, + [86283] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2594), 1, + STATE(1177), 1, sym__newline, - [85755] = 2, - ACTIONS(7131), 1, + [86290] = 2, + ACTIONS(7152), 1, sym__block_close, - ACTIONS(7133), 1, + ACTIONS(7154), 1, sym__fenced_code_block_end_backtick, - [85762] = 2, - ACTIONS(5064), 1, + [86297] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2595), 1, + STATE(1171), 1, sym__newline, - [85769] = 2, - ACTIONS(7131), 1, + [86304] = 2, + ACTIONS(4667), 1, sym__block_close, - ACTIONS(7133), 1, + ACTIONS(4669), 1, sym__fenced_code_block_end_tilde, - [85776] = 2, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1164), 1, - sym__newline, - [85783] = 2, - ACTIONS(1732), 1, + [86311] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(406), 1, + STATE(1144), 1, sym__newline, - [85790] = 2, - ACTIONS(4243), 1, + [86318] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(1165), 1, + STATE(435), 1, sym__newline, - [85797] = 2, - ACTIONS(4235), 1, + [86325] = 2, + ACTIONS(4667), 1, + sym__block_close, + ACTIONS(4669), 1, + sym__fenced_code_block_end_backtick, + [86332] = 2, + ACTIONS(1780), 1, aux_sym__newline_token1, - STATE(1172), 1, + STATE(2129), 1, sym__newline, - [85804] = 2, - ACTIONS(4243), 1, + [86339] = 2, + ACTIONS(4736), 1, + sym__block_close, + ACTIONS(4738), 1, + sym__fenced_code_block_end_tilde, + [86346] = 2, + ACTIONS(4736), 1, + sym__block_close, + ACTIONS(4738), 1, + sym__fenced_code_block_end_backtick, + [86353] = 2, + ACTIONS(4748), 1, + sym__block_close, + ACTIONS(4750), 1, + sym__fenced_code_block_end_tilde, + [86360] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1114), 1, + STATE(2589), 1, sym__newline, - [85811] = 2, - ACTIONS(4243), 1, + [86367] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1127), 1, + STATE(2586), 1, sym__newline, - [85818] = 2, - ACTIONS(4235), 1, + [86374] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1132), 1, + STATE(2584), 1, sym__newline, - [85825] = 2, - ACTIONS(5064), 1, + [86381] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(2507), 1, + STATE(1135), 1, sym__newline, - [85832] = 2, - ACTIONS(1790), 1, + [86388] = 2, + ACTIONS(1778), 1, aux_sym__newline_token1, - STATE(723), 1, + STATE(835), 1, sym__newline, - [85839] = 2, - ACTIONS(5064), 1, + [86395] = 2, + ACTIONS(1832), 1, aux_sym__newline_token1, - STATE(2501), 1, + STATE(836), 1, sym__newline, - [85846] = 2, - ACTIONS(1842), 1, + [86402] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(2127), 1, + STATE(410), 1, sym__newline, - [85853] = 2, - ACTIONS(1722), 1, + [86409] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1727), 1, + STATE(1136), 1, sym__newline, - [85860] = 2, - ACTIONS(7135), 1, + [86416] = 2, + ACTIONS(7156), 1, + sym__word_no_digit, + STATE(2086), 1, + sym__tag_name, + [86423] = 2, + ACTIONS(4663), 1, sym__block_close, - ACTIONS(7137), 1, + ACTIONS(4665), 1, sym__fenced_code_block_end_tilde, - [85867] = 2, - ACTIONS(5064), 1, + [86430] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(2453), 1, + STATE(1161), 1, sym__newline, - [85874] = 2, - ACTIONS(1784), 1, + [86437] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(1809), 1, + STATE(440), 1, sym__newline, - [85881] = 2, - ACTIONS(4235), 1, + [86444] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1123), 1, + STATE(1162), 1, sym__newline, - [85888] = 2, - ACTIONS(5064), 1, + [86451] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, STATE(2567), 1, sym__newline, - [85895] = 2, - ACTIONS(4243), 1, + [86458] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1129), 1, + STATE(2555), 1, sym__newline, - [85902] = 2, - ACTIONS(7135), 1, + [86465] = 2, + ACTIONS(4744), 1, sym__block_close, - ACTIONS(7137), 1, + ACTIONS(4746), 1, sym__fenced_code_block_end_backtick, - [85909] = 2, - ACTIONS(7139), 1, - sym__word_no_digit, - STATE(2102), 1, - sym__tag_name, - [85916] = 2, - ACTIONS(4685), 1, + [86472] = 2, + ACTIONS(5181), 1, + aux_sym__newline_token1, + STATE(2566), 1, + sym__newline, + [86479] = 2, + ACTIONS(4744), 1, sym__block_close, - ACTIONS(4687), 1, + ACTIONS(4746), 1, + sym__fenced_code_block_end_tilde, + [86486] = 2, + ACTIONS(7158), 1, + sym__block_close, + ACTIONS(7160), 1, sym__fenced_code_block_end_tilde, - [85923] = 2, - ACTIONS(4235), 1, + [86493] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1130), 1, + STATE(2565), 1, sym__newline, - [85930] = 2, - ACTIONS(4685), 1, + [86500] = 2, + ACTIONS(7158), 1, sym__block_close, - ACTIONS(4687), 1, + ACTIONS(7160), 1, sym__fenced_code_block_end_backtick, - [85937] = 2, - ACTIONS(4243), 1, + [86507] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(1134), 1, + STATE(430), 1, sym__newline, - [85944] = 2, - ACTIONS(1732), 1, + [86514] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(436), 1, + STATE(427), 1, sym__newline, - [85951] = 2, - ACTIONS(7141), 1, + [86521] = 2, + ACTIONS(4647), 1, sym__block_close, - ACTIONS(7143), 1, + ACTIONS(4649), 1, sym__fenced_code_block_end_tilde, - [85958] = 2, - ACTIONS(5064), 1, - aux_sym__newline_token1, - STATE(2434), 1, - sym__newline, - [85965] = 2, - ACTIONS(1732), 1, - aux_sym__newline_token1, - STATE(431), 1, - sym__newline, - [85972] = 2, - ACTIONS(5064), 1, + [86528] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(2437), 1, + STATE(421), 1, sym__newline, - [85979] = 2, - ACTIONS(4637), 1, + [86535] = 2, + ACTIONS(4635), 1, sym__block_close, - ACTIONS(4639), 1, + ACTIONS(4637), 1, sym__fenced_code_block_end_backtick, - [85986] = 2, - ACTIONS(5064), 1, + [86542] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2438), 1, + STATE(2560), 1, sym__newline, - [85993] = 2, - ACTIONS(4637), 1, + [86549] = 2, + ACTIONS(4635), 1, sym__block_close, - ACTIONS(4639), 1, + ACTIONS(4637), 1, sym__fenced_code_block_end_tilde, - [86000] = 2, - ACTIONS(5064), 1, - aux_sym__newline_token1, - STATE(2526), 1, - sym__newline, - [86007] = 2, - ACTIONS(1882), 1, - aux_sym__newline_token1, - STATE(1899), 1, - sym__newline, - [86014] = 2, - ACTIONS(4235), 1, + [86556] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(1149), 1, + STATE(453), 1, sym__newline, - [86021] = 2, - ACTIONS(4740), 1, - sym__block_close, - ACTIONS(4742), 1, - sym__fenced_code_block_end_backtick, - [86028] = 2, - ACTIONS(4740), 1, - sym__block_close, - ACTIONS(4742), 1, - sym__fenced_code_block_end_tilde, - [86035] = 2, - ACTIONS(1734), 1, + [86563] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(432), 1, + STATE(1130), 1, sym__newline, - [86042] = 2, - ACTIONS(1734), 1, + [86570] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(437), 1, + STATE(1180), 1, sym__newline, - [86049] = 2, - ACTIONS(4653), 1, + [86577] = 2, + ACTIONS(7162), 1, sym__block_close, - ACTIONS(4655), 1, + ACTIONS(7164), 1, sym__fenced_code_block_end_backtick, - [86056] = 2, - ACTIONS(4243), 1, + [86584] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1151), 1, + STATE(1174), 1, sym__newline, - [86063] = 2, - ACTIONS(4653), 1, + [86591] = 2, + ACTIONS(7162), 1, sym__block_close, - ACTIONS(4655), 1, + ACTIONS(7164), 1, sym__fenced_code_block_end_tilde, - [86070] = 2, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1153), 1, - sym__newline, - [86077] = 2, - ACTIONS(1734), 1, + [86598] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(443), 1, + STATE(404), 1, sym__newline, - [86084] = 2, - ACTIONS(4243), 1, + [86605] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1113), 1, + STATE(1168), 1, sym__newline, - [86091] = 2, - ACTIONS(7145), 1, - sym__block_close, - ACTIONS(7147), 1, - sym__fenced_code_block_end_backtick, - [86098] = 2, - ACTIONS(1732), 1, + [86612] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(417), 1, + STATE(2548), 1, sym__newline, - [86105] = 2, - ACTIONS(7145), 1, - sym__block_close, - ACTIONS(7147), 1, - sym__fenced_code_block_end_tilde, - [86112] = 2, - ACTIONS(4744), 1, - sym__block_close, - ACTIONS(4746), 1, - sym__fenced_code_block_end_backtick, - [86119] = 2, - ACTIONS(5064), 1, + [86619] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2426), 1, + STATE(2536), 1, sym__newline, - [86126] = 2, - ACTIONS(5064), 1, + [86626] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2429), 1, + STATE(2546), 1, sym__newline, - [86133] = 2, - ACTIONS(5064), 1, + [86633] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2433), 1, + STATE(2537), 1, sym__newline, - [86140] = 2, - ACTIONS(5064), 1, + [86640] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2473), 1, + STATE(2534), 1, sym__newline, - [86147] = 2, - ACTIONS(4235), 1, + [86647] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1183), 1, + STATE(1123), 1, sym__newline, - [86154] = 2, - ACTIONS(4243), 1, + [86654] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, STATE(1182), 1, sym__newline, - [86161] = 2, - ACTIONS(4235), 1, - aux_sym__newline_token1, - STATE(1181), 1, - sym__newline, - [86168] = 2, - ACTIONS(4744), 1, - sym__block_close, - ACTIONS(4746), 1, - sym__fenced_code_block_end_tilde, - [86175] = 2, - ACTIONS(7149), 1, - sym__block_close, - ACTIONS(7151), 1, - sym__fenced_code_block_end_backtick, - [86182] = 2, - ACTIONS(1840), 1, + [86661] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1830), 1, + STATE(1124), 1, sym__newline, - [86189] = 2, - ACTIONS(1710), 1, + [86668] = 2, + ACTIONS(1782), 1, aux_sym__newline_token1, - STATE(1899), 1, + STATE(1843), 1, sym__newline, - [86196] = 2, - ACTIONS(4243), 1, + [86675] = 2, + ACTIONS(1758), 1, aux_sym__newline_token1, - STATE(1180), 1, + STATE(1919), 1, sym__newline, - [86203] = 2, - ACTIONS(5064), 1, + [86682] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2557), 1, + STATE(1125), 1, sym__newline, - [86210] = 2, - ACTIONS(1734), 1, + [86689] = 2, + ACTIONS(1760), 1, aux_sym__newline_token1, - STATE(428), 1, + STATE(439), 1, sym__newline, - [86217] = 2, - ACTIONS(5064), 1, + [86696] = 2, + ACTIONS(4651), 1, + sym__block_close, + ACTIONS(4653), 1, + sym__fenced_code_block_end_tilde, + [86703] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2561), 1, + STATE(2447), 1, sym__newline, - [86224] = 2, - ACTIONS(7153), 1, + [86710] = 2, + ACTIONS(4651), 1, sym__block_close, - ACTIONS(7155), 1, - sym__fenced_code_block_end_tilde, - [86231] = 2, - ACTIONS(5064), 1, + ACTIONS(4653), 1, + sym__fenced_code_block_end_backtick, + [86717] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2564), 1, + STATE(2446), 1, sym__newline, - [86238] = 2, - ACTIONS(7153), 1, + [86724] = 2, + ACTIONS(7166), 1, sym__block_close, - ACTIONS(7155), 1, + ACTIONS(7168), 1, sym__fenced_code_block_end_backtick, - [86245] = 2, - ACTIONS(5064), 1, + [86731] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2596), 1, + STATE(2445), 1, sym__newline, - [86252] = 2, - ACTIONS(5064), 1, + [86738] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2543), 1, + STATE(2432), 1, sym__newline, - [86259] = 2, - ACTIONS(4235), 1, + [86745] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1176), 1, + STATE(1146), 1, sym__newline, - [86266] = 2, - ACTIONS(4243), 1, + [86752] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1175), 1, + STATE(1147), 1, sym__newline, - [86273] = 2, - ACTIONS(4235), 1, + [86759] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1174), 1, + STATE(1169), 1, sym__newline, - [86280] = 1, - ACTIONS(7157), 2, + [86766] = 1, + ACTIONS(7170), 2, anon_sym_LPAREN, anon_sym_LBRACK, - [86285] = 2, - ACTIONS(4243), 1, + [86771] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, STATE(1173), 1, sym__newline, - [86292] = 2, - ACTIONS(5064), 1, + [86778] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(2566), 1, + STATE(1132), 1, sym__newline, - [86299] = 2, - ACTIONS(5064), 1, + [86785] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2555), 1, + STATE(2440), 1, sym__newline, - [86306] = 2, - ACTIONS(5064), 1, + [86792] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2551), 1, + STATE(2442), 1, sym__newline, - [86313] = 2, - ACTIONS(4665), 1, + [86799] = 2, + ACTIONS(4705), 1, sym__block_close, - ACTIONS(4667), 1, - sym__fenced_code_block_end_tilde, - [86320] = 2, - ACTIONS(5064), 1, - aux_sym__newline_token1, - STATE(2545), 1, - sym__newline, - [86327] = 2, - ACTIONS(4235), 1, + ACTIONS(4707), 1, + sym__fenced_code_block_end_backtick, + [86806] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1148), 1, + STATE(2443), 1, sym__newline, - [86334] = 2, - ACTIONS(4243), 1, + [86813] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1147), 1, + STATE(2451), 1, sym__newline, - [86341] = 2, - ACTIONS(4665), 1, + [86820] = 2, + ACTIONS(4697), 1, sym__block_close, - ACTIONS(4667), 1, + ACTIONS(4699), 1, sym__fenced_code_block_end_backtick, - [86348] = 2, - ACTIONS(4243), 1, + [86827] = 2, + ACTIONS(4705), 1, + sym__block_close, + ACTIONS(4707), 1, + sym__fenced_code_block_end_tilde, + [86834] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1152), 1, + STATE(1156), 1, + sym__newline, + [86841] = 2, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1129), 1, sym__newline, - [86355] = 2, - ACTIONS(7149), 1, + [86848] = 2, + ACTIONS(7172), 1, sym__block_close, - ACTIONS(7151), 1, + ACTIONS(7174), 1, sym__fenced_code_block_end_tilde, - [86362] = 2, - ACTIONS(7139), 1, - sym__word_no_digit, - STATE(2088), 1, - sym__tag_name, - [86369] = 2, - ACTIONS(4649), 1, + [86855] = 2, + ACTIONS(4123), 1, + aux_sym__newline_token1, + STATE(1126), 1, + sym__newline, + [86862] = 2, + ACTIONS(7172), 1, sym__block_close, - ACTIONS(4651), 1, + ACTIONS(7174), 1, sym__fenced_code_block_end_backtick, - [86376] = 2, - ACTIONS(7159), 1, + [86869] = 2, + ACTIONS(4697), 1, sym__block_close, - ACTIONS(7161), 1, + ACTIONS(4699), 1, sym__fenced_code_block_end_tilde, - [86383] = 2, - ACTIONS(4235), 1, + [86876] = 2, + ACTIONS(1780), 1, aux_sym__newline_token1, - STATE(1154), 1, + STATE(2128), 1, sym__newline, - [86390] = 2, - ACTIONS(1842), 1, + [86883] = 2, + ACTIONS(1782), 1, aux_sym__newline_token1, - STATE(2134), 1, + STATE(1847), 1, sym__newline, - [86397] = 2, - ACTIONS(1840), 1, + [86890] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(1832), 1, + STATE(2518), 1, sym__newline, - [86404] = 2, - ACTIONS(4649), 1, - sym__block_close, - ACTIONS(4651), 1, - sym__fenced_code_block_end_tilde, - [86411] = 2, - ACTIONS(4235), 1, + [86897] = 2, + ACTIONS(7156), 1, + sym__word_no_digit, + STATE(2041), 1, + sym__tag_name, + [86904] = 2, + ACTIONS(7176), 1, aux_sym__newline_token1, - STATE(1136), 1, + STATE(2577), 1, sym__newline, - [86418] = 2, - ACTIONS(7141), 1, - sym__block_close, - ACTIONS(7143), 1, - sym__fenced_code_block_end_backtick, - [86425] = 2, - ACTIONS(4243), 1, + [86911] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1135), 1, + STATE(1114), 1, sym__newline, - [86432] = 2, - ACTIONS(1734), 1, + [86918] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(446), 1, + STATE(1140), 1, sym__newline, - [86439] = 2, - ACTIONS(4661), 1, - sym__block_close, - ACTIONS(4663), 1, - sym__fenced_code_block_end_backtick, - [86446] = 2, - ACTIONS(4661), 1, - sym__block_close, - ACTIONS(4663), 1, - sym__fenced_code_block_end_tilde, - [86453] = 2, - ACTIONS(4605), 1, - sym__block_close, - ACTIONS(4607), 1, - sym__fenced_code_block_end_backtick, - [86460] = 2, - ACTIONS(4605), 1, - sym__block_close, - ACTIONS(4607), 1, - sym__fenced_code_block_end_tilde, - [86467] = 2, - ACTIONS(7159), 1, - sym__block_close, - ACTIONS(7161), 1, - sym__fenced_code_block_end_backtick, - [86474] = 2, - ACTIONS(4689), 1, - sym__block_close, - ACTIONS(4691), 1, - sym__fenced_code_block_end_backtick, - [86481] = 2, - ACTIONS(4689), 1, + [86925] = 2, + ACTIONS(1768), 1, + aux_sym__newline_token1, + STATE(963), 1, + sym__newline, + [86932] = 2, + ACTIONS(1836), 1, + aux_sym__newline_token1, + STATE(413), 1, + sym__newline, + [86939] = 2, + ACTIONS(7166), 1, sym__block_close, - ACTIONS(4691), 1, + ACTIONS(7168), 1, sym__fenced_code_block_end_tilde, - [86488] = 2, - ACTIONS(7163), 1, - sym__block_close, - ACTIONS(7165), 1, - sym__fenced_code_block_end_backtick, - [86495] = 2, - ACTIONS(1838), 1, + [86946] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(757), 1, + STATE(411), 1, sym__newline, - [86502] = 2, - ACTIONS(4243), 1, + [86953] = 2, + ACTIONS(1766), 1, aux_sym__newline_token1, - STATE(1133), 1, + STATE(1826), 1, sym__newline, - [86509] = 2, - ACTIONS(1734), 1, + [86960] = 2, + ACTIONS(1778), 1, aux_sym__newline_token1, - STATE(449), 1, + STATE(864), 1, sym__newline, - [86516] = 2, - ACTIONS(4235), 1, + [86967] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(1131), 1, + STATE(409), 1, sym__newline, - [86523] = 2, - ACTIONS(7163), 1, - sym__block_close, - ACTIONS(7165), 1, - sym__fenced_code_block_end_tilde, - [86530] = 2, - ACTIONS(4693), 1, - sym__block_close, - ACTIONS(4695), 1, - sym__fenced_code_block_end_tilde, - [86537] = 2, - ACTIONS(5064), 1, + [86974] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(2493), 1, + STATE(406), 1, sym__newline, - [86544] = 2, - ACTIONS(4693), 1, + [86981] = 2, + ACTIONS(1836), 1, + aux_sym__newline_token1, + STATE(448), 1, + sym__newline, + [86988] = 2, + ACTIONS(4125), 1, + aux_sym__newline_token1, + STATE(1148), 1, + sym__newline, + [86995] = 2, + ACTIONS(4691), 1, sym__block_close, - ACTIONS(4695), 1, + ACTIONS(4693), 1, sym__fenced_code_block_end_backtick, - [86551] = 2, - ACTIONS(7139), 1, - sym__word_no_digit, - STATE(2100), 1, - sym__tag_name, - [86558] = 2, - ACTIONS(1734), 1, + [87002] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(451), 1, + STATE(1150), 1, sym__newline, - [86565] = 2, - ACTIONS(1734), 1, + [87009] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(453), 1, + STATE(424), 1, sym__newline, - [86572] = 2, - ACTIONS(1734), 1, + [87016] = 2, + ACTIONS(1766), 1, aux_sym__newline_token1, - STATE(454), 1, + STATE(1814), 1, sym__newline, - [86579] = 2, - ACTIONS(1734), 1, + [87023] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(455), 1, + STATE(2444), 1, sym__newline, - [86586] = 2, - ACTIONS(1882), 1, + [87030] = 2, + ACTIONS(4691), 1, + sym__block_close, + ACTIONS(4693), 1, + sym__fenced_code_block_end_tilde, + [87037] = 2, + ACTIONS(7156), 1, + sym__word_no_digit, + STATE(2054), 1, + sym__tag_name, + [87044] = 2, + ACTIONS(7178), 1, + sym__block_close, + ACTIONS(7180), 1, + sym__fenced_code_block_end_tilde, + [87051] = 2, + ACTIONS(1768), 1, aux_sym__newline_token1, - STATE(1901), 1, + STATE(924), 1, sym__newline, - [86593] = 2, - ACTIONS(5064), 1, + [87058] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(2443), 1, + STATE(405), 1, sym__newline, - [86600] = 2, - ACTIONS(1884), 1, + [87065] = 2, + ACTIONS(1836), 1, aux_sym__newline_token1, - STATE(958), 1, + STATE(432), 1, sym__newline, - [86607] = 2, - ACTIONS(1838), 1, + [87072] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(860), 1, + STATE(2439), 1, sym__newline, - [86614] = 2, - ACTIONS(7167), 1, + [87079] = 2, + ACTIONS(7178), 1, + sym__block_close, + ACTIONS(7180), 1, + sym__fenced_code_block_end_backtick, + [87086] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2598), 1, + STATE(2433), 1, sym__newline, - [86621] = 2, - ACTIONS(4641), 1, + [87093] = 2, + ACTIONS(4655), 1, sym__block_close, - ACTIONS(4643), 1, + ACTIONS(4657), 1, sym__fenced_code_block_end_tilde, - [86628] = 2, - ACTIONS(5064), 1, + [87100] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2471), 1, + STATE(2473), 1, sym__newline, - [86635] = 2, - ACTIONS(4243), 1, + [87107] = 2, + ACTIONS(4655), 1, + sym__block_close, + ACTIONS(4657), 1, + sym__fenced_code_block_end_backtick, + [87114] = 2, + ACTIONS(4740), 1, + sym__block_close, + ACTIONS(4742), 1, + sym__fenced_code_block_end_backtick, + [87121] = 2, + ACTIONS(4125), 1, aux_sym__newline_token1, - STATE(1125), 1, + STATE(1141), 1, sym__newline, - [86642] = 2, - ACTIONS(4235), 1, + [87128] = 2, + ACTIONS(4123), 1, aux_sym__newline_token1, - STATE(1124), 1, + STATE(1143), 1, sym__newline, - [86649] = 2, - ACTIONS(4657), 1, - sym__block_close, - ACTIONS(4659), 1, - sym__fenced_code_block_end_backtick, - [86656] = 2, - ACTIONS(4657), 1, + [87135] = 2, + ACTIONS(4701), 1, sym__block_close, - ACTIONS(4659), 1, + ACTIONS(4703), 1, sym__fenced_code_block_end_tilde, - [86663] = 2, - ACTIONS(4641), 1, + [87142] = 2, + ACTIONS(4701), 1, sym__block_close, - ACTIONS(4643), 1, + ACTIONS(4703), 1, sym__fenced_code_block_end_backtick, - [86670] = 2, - ACTIONS(5064), 1, - aux_sym__newline_token1, - STATE(2540), 1, - sym__newline, - [86677] = 2, - ACTIONS(4645), 1, + [87149] = 2, + ACTIONS(7182), 1, sym__block_close, - ACTIONS(4647), 1, + ACTIONS(7184), 1, + sym__fenced_code_block_end_backtick, + [87156] = 2, + ACTIONS(7182), 1, + sym__block_close, + ACTIONS(7184), 1, + sym__fenced_code_block_end_tilde, + [87163] = 2, + ACTIONS(4740), 1, + sym__block_close, + ACTIONS(4742), 1, sym__fenced_code_block_end_tilde, - [86684] = 2, - ACTIONS(5064), 1, + [87170] = 2, + ACTIONS(5181), 1, aux_sym__newline_token1, - STATE(2465), 1, + STATE(2418), 1, sym__newline, - [86691] = 1, - ACTIONS(7169), 1, - sym__open_block, - [86695] = 1, - ACTIONS(7171), 1, - sym__close_block, - [86699] = 1, - ACTIONS(7173), 1, + [87177] = 1, + ACTIONS(7186), 1, + sym__line_ending, + [87181] = 1, + ACTIONS(7188), 1, sym__close_block, - [86703] = 1, - ACTIONS(7175), 1, + [87185] = 1, + ACTIONS(7182), 1, sym__block_close, - [86707] = 1, - ACTIONS(6761), 1, - anon_sym_GT, - [86711] = 1, - ACTIONS(6470), 1, + [87189] = 1, + ACTIONS(7190), 1, sym__close_block, - [86715] = 1, - ACTIONS(7177), 1, + [87193] = 1, + ACTIONS(7192), 1, + anon_sym_GT, + [87197] = 1, + ACTIONS(7194), 1, sym__block_close, - [86719] = 1, - ACTIONS(7179), 1, + [87201] = 1, + ACTIONS(6887), 1, + anon_sym_GT, + [87205] = 1, + ACTIONS(7196), 1, sym__close_block, - [86723] = 1, - ACTIONS(7181), 1, + [87209] = 1, + ACTIONS(7198), 1, sym__close_block, - [86727] = 1, - ACTIONS(7183), 1, - sym__block_close, - [86731] = 1, - ACTIONS(7185), 1, - sym__block_close, - [86735] = 1, - ACTIONS(7187), 1, - sym__block_close, - [86739] = 1, - ACTIONS(7189), 1, + [87213] = 1, + ACTIONS(7200), 1, sym__open_block, - [86743] = 1, - ACTIONS(7191), 1, + [87217] = 1, + ACTIONS(7202), 1, sym__open_block, - [86747] = 1, - ACTIONS(7193), 1, + [87221] = 1, + ACTIONS(7204), 1, sym__open_block, - [86751] = 1, - ACTIONS(7195), 1, - sym__block_close, - [86755] = 1, - ACTIONS(7197), 1, + [87225] = 1, + ACTIONS(7206), 1, sym__open_block, - [86759] = 1, - ACTIONS(7199), 1, + [87229] = 1, + ACTIONS(7208), 1, sym__block_close, - [86763] = 1, - ACTIONS(7201), 1, + [87233] = 1, + ACTIONS(7210), 1, sym__block_close, - [86767] = 1, - ACTIONS(7203), 1, + [87237] = 1, + ACTIONS(6891), 1, + anon_sym_GT, + [87241] = 1, + ACTIONS(7178), 1, + sym__block_close, + [87245] = 1, + ACTIONS(7212), 1, + sym__block_close, + [87249] = 1, + ACTIONS(7214), 1, + sym__line_ending, + [87253] = 1, + ACTIONS(7216), 1, + sym__line_ending, + [87257] = 1, + ACTIONS(7218), 1, sym__block_close, - [86771] = 1, - ACTIONS(6413), 1, + [87261] = 1, + ACTIONS(7220), 1, + sym__close_block, + [87265] = 1, + ACTIONS(7222), 1, sym__close_block, - [86775] = 1, - ACTIONS(7205), 1, + [87269] = 1, + ACTIONS(7224), 1, sym__block_close, - [86779] = 1, - ACTIONS(7207), 1, + [87273] = 1, + ACTIONS(7226), 1, sym__block_close, - [86783] = 1, - ACTIONS(7209), 1, + [87277] = 1, + ACTIONS(7228), 1, + sym__close_block, + [87281] = 1, + ACTIONS(7230), 1, sym__block_close, - [86787] = 1, - ACTIONS(7211), 1, + [87285] = 1, + ACTIONS(7232), 1, sym__block_close, - [86791] = 1, - ACTIONS(7213), 1, - sym__line_ending, - [86795] = 1, - ACTIONS(7215), 1, + [87289] = 1, + ACTIONS(7234), 1, sym__block_close, - [86799] = 1, - ACTIONS(7217), 1, + [87293] = 1, + ACTIONS(7236), 1, sym__block_close, - [86803] = 1, - ACTIONS(7219), 1, - sym__line_ending, - [86807] = 1, - ACTIONS(7221), 1, + [87297] = 1, + ACTIONS(7238), 1, + sym__block_close, + [87301] = 1, + ACTIONS(7240), 1, sym__block_close, - [86811] = 1, - ACTIONS(6700), 1, + [87305] = 1, + ACTIONS(7242), 1, + sym__open_block_dont_interrupt_paragraph, + [87309] = 1, + ACTIONS(7244), 1, anon_sym_GT, - [86815] = 1, - ACTIONS(7223), 1, + [87313] = 1, + ACTIONS(7246), 1, sym__open_block, - [86819] = 1, - ACTIONS(7225), 1, + [87317] = 1, + ACTIONS(7166), 1, + sym__block_close, + [87321] = 1, + ACTIONS(7248), 1, sym__block_close, - [86823] = 1, - ACTIONS(6834), 1, + [87325] = 1, + ACTIONS(7250), 1, + sym__close_block, + [87329] = 1, + ACTIONS(6746), 1, anon_sym_GT, - [86827] = 1, - ACTIONS(7227), 1, + [87333] = 1, + ACTIONS(6515), 1, + sym__close_block, + [87337] = 1, + ACTIONS(7252), 1, + sym__close_block, + [87341] = 1, + ACTIONS(7254), 1, + sym__block_close, + [87345] = 1, + ACTIONS(6464), 1, + sym__close_block, + [87349] = 1, + ACTIONS(6476), 1, + sym__close_block, + [87353] = 1, + ACTIONS(7256), 1, sym__open_block, - [86831] = 1, - ACTIONS(7229), 1, + [87357] = 1, + ACTIONS(7258), 1, sym__open_block, - [86835] = 1, - ACTIONS(6378), 1, - sym__close_block, - [86839] = 1, - ACTIONS(6500), 1, + [87361] = 1, + ACTIONS(7260), 1, + sym__block_close, + [87365] = 1, + ACTIONS(6499), 1, sym__close_block, - [86843] = 1, - ACTIONS(3755), 1, + [87369] = 1, + ACTIONS(7262), 1, + sym__block_close, + [87373] = 1, + ACTIONS(3822), 1, anon_sym_COLON, - [86847] = 1, - ACTIONS(7231), 1, + [87377] = 1, + ACTIONS(7264), 1, sym__open_block, - [86851] = 1, - ACTIONS(7233), 1, - sym__close_block, - [86855] = 1, - ACTIONS(7235), 1, + [87381] = 1, + ACTIONS(6752), 1, + anon_sym_GT, + [87385] = 1, + ACTIONS(7266), 1, sym__open_block, - [86859] = 1, - ACTIONS(7159), 1, + [87389] = 1, + ACTIONS(7268), 1, sym__block_close, - [86863] = 1, - ACTIONS(6735), 1, + [87393] = 1, + ACTIONS(7270), 1, + anon_sym_COLON, + [87397] = 1, + ACTIONS(7272), 1, + sym__line_ending, + [87401] = 1, + ACTIONS(7274), 1, + sym__line_ending, + [87405] = 1, + ACTIONS(7172), 1, + sym__block_close, + [87409] = 1, + ACTIONS(6768), 1, anon_sym_GT, - [86867] = 1, - ACTIONS(7237), 1, + [87413] = 1, + ACTIONS(7276), 1, + anon_sym_GT, + [87417] = 1, + ACTIONS(7278), 1, + sym__close_block, + [87421] = 1, + ACTIONS(7280), 1, + sym__close_block, + [87425] = 1, + ACTIONS(7282), 1, + sym__close_block, + [87429] = 1, + ACTIONS(7284), 1, + sym__close_block, + [87433] = 1, + ACTIONS(7286), 1, + sym__close_block, + [87437] = 1, + ACTIONS(7288), 1, + sym__close_block, + [87441] = 1, + ACTIONS(7290), 1, sym__open_block, - [86871] = 1, - ACTIONS(7239), 1, + [87445] = 1, + ACTIONS(7292), 1, sym__open_block, - [86875] = 1, - ACTIONS(3307), 1, + [87449] = 1, + ACTIONS(7294), 1, + sym__trigger_error, + [87453] = 1, + ACTIONS(7296), 1, sym__open_block, - [86879] = 1, - ACTIONS(7241), 1, + [87457] = 1, + ACTIONS(7298), 1, sym__open_block, - [86883] = 1, - ACTIONS(7243), 1, - sym__close_block, - [86887] = 1, - ACTIONS(3695), 1, + [87461] = 1, + ACTIONS(7300), 1, sym__open_block, - [86891] = 1, - ACTIONS(7245), 1, - sym__close_block, - [86895] = 1, - ACTIONS(7247), 1, - sym__close_block, - [86899] = 1, - ACTIONS(3690), 1, + [87465] = 1, + ACTIONS(7302), 1, + sym__trigger_error, + [87469] = 1, + ACTIONS(7304), 1, sym__open_block, - [86903] = 1, - ACTIONS(3149), 1, + [87473] = 1, + ACTIONS(7306), 1, sym__open_block, - [86907] = 1, - ACTIONS(7141), 1, - sym__block_close, - [86911] = 1, - ACTIONS(7249), 1, + [87477] = 1, + ACTIONS(3129), 1, + sym__open_block, + [87481] = 1, + ACTIONS(3698), 1, + sym__open_block, + [87485] = 1, + ACTIONS(7308), 1, sym__line_ending, - [86915] = 1, - ACTIONS(7251), 1, + [87489] = 1, + ACTIONS(7310), 1, sym__open_block, - [86919] = 1, - ACTIONS(3585), 1, + [87493] = 1, + ACTIONS(7312), 1, sym__open_block, - [86923] = 1, - ACTIONS(7253), 1, - sym__close_block, - [86927] = 1, - ACTIONS(7255), 1, - sym__block_close, - [86931] = 1, - ACTIONS(7257), 1, - sym__block_close, - [86935] = 1, - ACTIONS(7259), 1, + [87497] = 1, + ACTIONS(7314), 1, sym__open_block, - [86939] = 1, - ACTIONS(7149), 1, - sym__block_close, - [86943] = 1, - ACTIONS(7261), 1, - sym__close_block, - [86947] = 1, - ACTIONS(7263), 1, - sym__block_close, - [86951] = 1, - ACTIONS(7265), 1, + [87501] = 1, + ACTIONS(7316), 1, sym__close_block, - [86955] = 1, - ACTIONS(7267), 1, - sym__block_close, - [86959] = 1, - ACTIONS(7269), 1, - sym__block_close, - [86963] = 1, - ACTIONS(7271), 1, - anon_sym_COLON, - [86967] = 1, - ACTIONS(3257), 1, + [87505] = 1, + ACTIONS(7318), 1, sym__open_block, - [86971] = 1, - ACTIONS(7273), 1, - sym__open_block, - [86975] = 1, - ACTIONS(7275), 1, + [87509] = 1, + ACTIONS(7320), 1, + sym__close_block, + [87513] = 1, + ACTIONS(3700), 1, sym__open_block, - [86979] = 1, - ACTIONS(6739), 1, - anon_sym_GT, - [86983] = 1, - ACTIONS(7277), 1, + [87517] = 1, + ACTIONS(3307), 1, sym__open_block, - [86987] = 1, - ACTIONS(7279), 1, + [87521] = 1, + ACTIONS(3171), 1, sym__open_block, - [86991] = 1, - ACTIONS(3231), 1, + [87525] = 1, + ACTIONS(3519), 1, sym__open_block, - [86995] = 1, - ACTIONS(3583), 1, + [87529] = 1, + ACTIONS(7322), 1, sym__open_block, - [86999] = 1, - ACTIONS(7281), 1, - sym__line_ending, - [87003] = 1, - ACTIONS(7283), 1, + [87533] = 1, + ACTIONS(7324), 1, sym__open_block, - [87007] = 1, - ACTIONS(7285), 1, + [87537] = 1, + ACTIONS(3362), 1, sym__open_block, - [87011] = 1, - ACTIONS(7287), 1, - sym__close_block, - [87015] = 1, - ACTIONS(7289), 1, - sym__close_block, - [87019] = 1, - ACTIONS(7153), 1, - sym__block_close, - [87023] = 1, - ACTIONS(7291), 1, - sym__close_block, - [87027] = 1, - ACTIONS(7293), 1, + [87541] = 1, + ACTIONS(7326), 1, sym__block_close, - [87031] = 1, - ACTIONS(7295), 1, - anon_sym_GT, - [87035] = 1, - ACTIONS(7297), 1, + [87545] = 1, + ACTIONS(7328), 1, sym__block_close, - [87039] = 1, - ACTIONS(7299), 1, + [87549] = 1, + ACTIONS(7330), 1, sym__block_close, - [87043] = 1, - ACTIONS(7301), 1, - sym__open_block, - [87047] = 1, - ACTIONS(7303), 1, - sym__open_block, - [87051] = 1, - ACTIONS(7305), 1, + [87553] = 1, + ACTIONS(7332), 1, sym__block_close, - [87055] = 1, - ACTIONS(7307), 1, + [87557] = 1, + ACTIONS(7334), 1, + sym__line_ending, + [87561] = 1, + ACTIONS(7336), 1, sym__block_close, - [87059] = 1, - ACTIONS(7309), 1, + [87565] = 1, + ACTIONS(7338), 1, sym__block_close, - [87063] = 1, - ACTIONS(7311), 1, + [87569] = 1, + ACTIONS(7340), 1, sym__block_close, - [87067] = 1, - ACTIONS(7313), 1, + [87573] = 1, + ACTIONS(7342), 1, + sym__close_block, + [87577] = 1, + ACTIONS(7344), 1, sym__block_close, - [87071] = 1, - ACTIONS(7315), 1, - sym__line_ending, - [87075] = 1, - ACTIONS(7317), 1, + [87581] = 1, + ACTIONS(7346), 1, + sym__close_block, + [87585] = 1, + ACTIONS(7348), 1, sym__block_close, - [87079] = 1, - ACTIONS(7319), 1, + [87589] = 1, + ACTIONS(7350), 1, sym__block_close, - [87083] = 1, - ACTIONS(7321), 1, - sym__close_block, - [87087] = 1, - ACTIONS(7323), 1, - sym__close_block, - [87091] = 1, - ACTIONS(7325), 1, - sym__close_block, - [87095] = 1, - ACTIONS(7327), 1, - sym__close_block, - [87099] = 1, - ACTIONS(7329), 1, + [87593] = 1, + ACTIONS(7352), 1, sym__block_close, - [87103] = 1, - ACTIONS(7331), 1, - sym__close_block, - [87107] = 1, - ACTIONS(7145), 1, + [87597] = 1, + ACTIONS(7354), 1, sym__block_close, - [87111] = 1, - ACTIONS(7333), 1, + [87601] = 1, + ACTIONS(7356), 1, sym__open_block, - [87115] = 1, - ACTIONS(7335), 1, + [87605] = 1, + ACTIONS(7358), 1, sym__open_block, - [87119] = 1, - ACTIONS(7337), 1, - sym__open_block, - [87123] = 1, - ACTIONS(7339), 1, - sym__trigger_error, - [87127] = 1, - ACTIONS(7341), 1, + [87609] = 1, + ACTIONS(7360), 1, + sym__close_block, + [87613] = 1, + ACTIONS(7362), 1, sym__block_close, - [87131] = 1, - ACTIONS(7343), 1, - sym__trigger_error, - [87135] = 1, - ACTIONS(7345), 1, - sym__line_ending, - [87139] = 1, - ACTIONS(7347), 1, - sym__line_ending, - [87143] = 1, - ACTIONS(7349), 1, + [87617] = 1, + ACTIONS(7162), 1, + sym__block_close, + [87621] = 1, + ACTIONS(6790), 1, + anon_sym_GT, + [87625] = 1, + ACTIONS(7364), 1, + sym__open_block, + [87629] = 1, + ACTIONS(7366), 1, sym__line_ending, - [87147] = 1, - ACTIONS(7351), 1, + [87633] = 1, + ACTIONS(7368), 1, sym__trigger_error, - [87151] = 1, - ACTIONS(7163), 1, + [87637] = 1, + ACTIONS(7370), 1, sym__block_close, - [87155] = 1, - ACTIONS(7353), 1, + [87641] = 1, + ACTIONS(3281), 1, sym__open_block, - [87159] = 1, - ACTIONS(7355), 1, + [87645] = 1, + ACTIONS(7372), 1, sym__close_block, - [87163] = 1, - ACTIONS(7357), 1, - sym__open_block, - [87167] = 1, - ACTIONS(7359), 1, + [87649] = 1, + ACTIONS(7158), 1, + sym__block_close, + [87653] = 1, + ACTIONS(7374), 1, sym__close_block, - [87171] = 1, - ACTIONS(7361), 1, - sym__open_block, - [87175] = 1, - ACTIONS(7363), 1, - sym__open_block, - [87179] = 1, - ACTIONS(7365), 1, - sym__open_block_dont_interrupt_paragraph, - [87183] = 1, - ACTIONS(7367), 1, + [87657] = 1, + ACTIONS(7376), 1, + sym__block_close, + [87661] = 1, + ACTIONS(7378), 1, + sym__block_close, + [87665] = 1, + ACTIONS(7380), 1, + sym__block_close, + [87669] = 1, + ACTIONS(7382), 1, sym__close_block, - [87187] = 1, - ACTIONS(7369), 1, + [87673] = 1, + ACTIONS(7138), 1, + sym__block_close, + [87677] = 1, + ACTIONS(7384), 1, sym__open_block, - [87191] = 1, - ACTIONS(7371), 1, + [87681] = 1, + ACTIONS(7386), 1, sym__open_block, - [87195] = 1, - ACTIONS(7373), 1, + [87685] = 1, + ACTIONS(7388), 1, sym__open_block, - [87199] = 1, - ACTIONS(7375), 1, - anon_sym_GT, - [87203] = 1, - ACTIONS(7377), 1, + [87689] = 1, + ACTIONS(7390), 1, + sym__open_block, + [87693] = 1, + ACTIONS(7392), 1, sym__open_block, - [87207] = 1, - ACTIONS(7379), 1, + [87697] = 1, + ACTIONS(7394), 1, sym__block_close, - [87211] = 1, - ACTIONS(6791), 1, - anon_sym_GT, - [87215] = 1, - ACTIONS(7381), 1, + [87701] = 1, + ACTIONS(7396), 1, sym__line_ending, - [87219] = 1, - ACTIONS(7383), 1, - sym__block_close, - [87223] = 1, - ACTIONS(7385), 1, - sym__close_block, - [87227] = 1, - ACTIONS(7135), 1, + [87705] = 1, + ACTIONS(7398), 1, sym__block_close, - [87231] = 1, - ACTIONS(7387), 1, + [87709] = 1, + ACTIONS(7400), 1, + sym__open_block, + [87713] = 1, + ACTIONS(7402), 1, + sym__open_block, + [87717] = 1, + ACTIONS(7404), 1, sym__close_block, - [87235] = 1, - ACTIONS(7389), 1, - anon_sym_GT, - [87239] = 1, - ACTIONS(7391), 1, + [87721] = 1, + ACTIONS(7406), 1, + sym__open_block, + [87725] = 1, + ACTIONS(7408), 1, sym__close_block, - [87243] = 1, - ACTIONS(7393), 1, - sym__block_close, - [87247] = 1, - ACTIONS(7395), 1, + [87729] = 1, + ACTIONS(7410), 1, sym__open_block, - [87251] = 1, - ACTIONS(7397), 1, + [87733] = 1, + ACTIONS(7412), 1, sym__block_close, - [87255] = 1, - ACTIONS(7399), 1, + [87737] = 1, + ACTIONS(7414), 1, sym__block_close, - [87259] = 1, - ACTIONS(7401), 1, + [87741] = 1, + ACTIONS(7416), 1, + sym__block_close, + [87745] = 1, + ACTIONS(7418), 1, sym__open_block, - [87263] = 1, - ACTIONS(7403), 1, + [87749] = 1, + ACTIONS(7420), 1, sym__open_block, - [87267] = 1, - ACTIONS(7405), 1, + [87753] = 1, + ACTIONS(7152), 1, sym__block_close, - [87271] = 1, - ACTIONS(7407), 1, + [87757] = 1, + ACTIONS(7422), 1, sym__open_block, - [87275] = 1, - ACTIONS(7409), 1, + [87761] = 1, + ACTIONS(7424), 1, sym__block_close, - [87279] = 1, - ACTIONS(7411), 1, - sym__open_block, - [87283] = 1, - ACTIONS(7413), 1, + [87765] = 1, + ACTIONS(7148), 1, + sym__block_close, + [87769] = 1, + ACTIONS(7426), 1, sym__line_ending, - [87287] = 1, - ACTIONS(7415), 1, + [87773] = 1, + ACTIONS(7428), 1, sym__block_close, - [87291] = 1, - ACTIONS(7417), 1, + [87777] = 1, + ACTIONS(7430), 1, sym__block_close, - [87295] = 1, - ACTIONS(7131), 1, + [87781] = 1, + ACTIONS(7432), 1, sym__block_close, - [87299] = 1, - ACTIONS(7419), 1, + [87785] = 1, + ACTIONS(7434), 1, sym__close_block, - [87303] = 1, - ACTIONS(7421), 1, - sym__block_close, - [87307] = 1, - ACTIONS(7423), 1, + [87789] = 1, + ACTIONS(7436), 1, + sym__open_block, + [87793] = 1, + ACTIONS(7438), 1, sym__close_block, - [87311] = 1, - ACTIONS(7425), 1, - sym__block_close, - [87315] = 1, - ACTIONS(7427), 1, - sym__block_close, - [87319] = 1, - ACTIONS(7429), 1, - anon_sym_COLON, - [87323] = 1, - ACTIONS(7431), 1, + [87797] = 1, + ACTIONS(7440), 1, + sym__open_block, + [87801] = 1, + ACTIONS(7442), 1, sym__open_block, - [87327] = 1, - ACTIONS(7433), 1, + [87805] = 1, + ACTIONS(7444), 1, + anon_sym_COLON, + [87809] = 1, + ACTIONS(7446), 1, sym__open_block, - [87331] = 1, - ACTIONS(7435), 1, + [87813] = 1, + ACTIONS(7448), 1, sym__open_block, - [87335] = 1, - ACTIONS(7437), 1, + [87817] = 1, + ACTIONS(7450), 1, sym__open_block, - [87339] = 1, - ACTIONS(7439), 1, + [87821] = 1, + ACTIONS(2208), 1, + sym__close_block, + [87825] = 1, + ACTIONS(7452), 1, ts_builtin_sym_end, - [87343] = 1, - ACTIONS(7441), 1, + [87829] = 1, + ACTIONS(7454), 1, sym__open_block, - [87347] = 1, - ACTIONS(7443), 1, + [87833] = 1, + ACTIONS(7456), 1, sym__open_block, - [87351] = 1, - ACTIONS(7445), 1, + [87837] = 1, + ACTIONS(7458), 1, sym__line_ending, - [87355] = 1, - ACTIONS(2176), 1, - sym__trigger_error, - [87359] = 1, - ACTIONS(7447), 1, + [87841] = 1, + ACTIONS(7460), 1, + sym__open_block, + [87845] = 1, + ACTIONS(7462), 1, sym__open_block, - [87363] = 1, - ACTIONS(7449), 1, + [87849] = 1, + ACTIONS(7144), 1, sym__block_close, - [87367] = 1, - ACTIONS(7451), 1, + [87853] = 1, + ACTIONS(7464), 1, sym__close_block, - [87371] = 1, - ACTIONS(7453), 1, - sym__open_block, - [87375] = 1, - ACTIONS(7455), 1, + [87857] = 1, + ACTIONS(7466), 1, + sym__block_close, + [87861] = 1, + ACTIONS(7468), 1, sym__close_block, - [87379] = 1, - ACTIONS(7457), 1, - sym__open_block, - [87383] = 1, - ACTIONS(7459), 1, + [87865] = 1, + ACTIONS(7470), 1, + sym__block_close, + [87869] = 1, + ACTIONS(7472), 1, sym__block_close, - [87387] = 1, - ACTIONS(7461), 1, + [87873] = 1, + ACTIONS(7474), 1, sym__open_block_dont_interrupt_paragraph, - [87391] = 1, - ACTIONS(7463), 1, + [87877] = 1, + ACTIONS(7476), 1, sym__open_block_dont_interrupt_paragraph, - [87395] = 1, - ACTIONS(7465), 1, + [87881] = 1, + ACTIONS(7478), 1, sym__open_block, - [87399] = 1, - ACTIONS(7467), 1, + [87885] = 1, + ACTIONS(7480), 1, sym__open_block, - [87403] = 1, - ACTIONS(7469), 1, + [87889] = 1, + ACTIONS(7482), 1, sym__open_block, - [87407] = 1, - ACTIONS(7471), 1, + [87893] = 1, + ACTIONS(7484), 1, sym__open_block, - [87411] = 1, - ACTIONS(7473), 1, + [87897] = 1, + ACTIONS(7486), 1, sym__block_close, - [87415] = 1, - ACTIONS(7475), 1, + [87901] = 1, + ACTIONS(7488), 1, sym__open_block, - [87419] = 1, - ACTIONS(7477), 1, + [87905] = 1, + ACTIONS(7490), 1, sym__line_ending, - [87423] = 1, - ACTIONS(7479), 1, - sym__block_close, - [87427] = 1, - ACTIONS(7125), 1, + [87909] = 1, + ACTIONS(7492), 1, sym__block_close, - [87431] = 1, - ACTIONS(7121), 1, + [87913] = 1, + ACTIONS(2208), 1, + sym__trigger_error, + [87917] = 1, + ACTIONS(7494), 1, sym__block_close, - [87435] = 1, - ACTIONS(7481), 1, + [87921] = 1, + ACTIONS(7496), 1, sym__close_block, - [87439] = 1, - ACTIONS(2176), 1, - sym__close_block, - [87443] = 1, - ACTIONS(7483), 1, + [87925] = 1, + ACTIONS(7498), 1, + sym__open_block, + [87929] = 1, + ACTIONS(7500), 1, sym__close_block, - [87447] = 1, - ACTIONS(7485), 1, + [87933] = 1, + ACTIONS(7502), 1, sym__open_block, - [87451] = 1, - ACTIONS(7487), 1, + [87937] = 1, + ACTIONS(7504), 1, sym__open_block, - [87455] = 1, - ACTIONS(7489), 1, + [87941] = 1, + ACTIONS(7506), 1, sym__open_block, - [87459] = 1, - ACTIONS(7491), 1, + [87945] = 1, + ACTIONS(7508), 1, sym__open_block, - [87463] = 1, - ACTIONS(7493), 1, + [87949] = 1, + ACTIONS(7510), 1, sym__line_ending, - [87467] = 1, - ACTIONS(7495), 1, + [87953] = 1, + ACTIONS(7512), 1, sym__close_block, - [87471] = 1, - ACTIONS(7497), 1, + [87957] = 1, + ACTIONS(7514), 1, sym__close_block, - [87475] = 1, - ACTIONS(7499), 1, + [87961] = 1, + ACTIONS(7516), 1, sym__open_block, - [87479] = 1, - ACTIONS(7501), 1, + [87965] = 1, + ACTIONS(7518), 1, sym__open_block_dont_interrupt_paragraph, - [87483] = 1, - ACTIONS(7503), 1, + [87969] = 1, + ACTIONS(7520), 1, anon_sym_COLON, - [87487] = 1, - ACTIONS(7505), 1, + [87973] = 1, + ACTIONS(7522), 1, sym__open_block, - [87491] = 1, - ACTIONS(7507), 1, + [87977] = 1, + ACTIONS(7524), 1, sym__open_block, - [87495] = 1, - ACTIONS(7509), 1, + [87981] = 1, + ACTIONS(7526), 1, anon_sym_COLON, - [87499] = 1, - ACTIONS(7511), 1, + [87985] = 1, + ACTIONS(7528), 1, sym__close_block, - [87503] = 1, - ACTIONS(7513), 1, + [87989] = 1, + ACTIONS(7530), 1, sym__close_block, - [87507] = 1, - ACTIONS(7515), 1, + [87993] = 1, + ACTIONS(7532), 1, sym__close_block, - [87511] = 1, - ACTIONS(7517), 1, + [87997] = 1, + ACTIONS(7534), 1, sym__close_block, - [87515] = 1, - ACTIONS(7519), 1, + [88001] = 1, + ACTIONS(7536), 1, sym__open_block, - [87519] = 1, - ACTIONS(7521), 1, + [88005] = 1, + ACTIONS(7538), 1, sym__close_block, - [87523] = 1, - ACTIONS(7523), 1, + [88009] = 1, + ACTIONS(7540), 1, sym__close_block, - [87527] = 1, - ACTIONS(7525), 1, + [88013] = 1, + ACTIONS(7542), 1, sym__close_block, - [87531] = 1, - ACTIONS(7527), 1, + [88017] = 1, + ACTIONS(7544), 1, sym__close_block, - [87535] = 1, - ACTIONS(7529), 1, + [88021] = 1, + ACTIONS(7546), 1, sym__open_block, - [87539] = 1, - ACTIONS(7531), 1, + [88025] = 1, + ACTIONS(7548), 1, sym__close_block, - [87543] = 1, - ACTIONS(7533), 1, + [88029] = 1, + ACTIONS(7550), 1, sym__close_block, - [87547] = 1, - ACTIONS(7535), 1, + [88033] = 1, + ACTIONS(7552), 1, sym__close_block, - [87551] = 1, - ACTIONS(7537), 1, + [88037] = 1, + ACTIONS(7554), 1, sym__close_block, - [87555] = 1, - ACTIONS(7539), 1, + [88041] = 1, + ACTIONS(7556), 1, sym__open_block, - [87559] = 1, - ACTIONS(7541), 1, + [88045] = 1, + ACTIONS(7558), 1, sym__close_block, - [87563] = 1, - ACTIONS(7543), 1, + [88049] = 1, + ACTIONS(7560), 1, sym__close_block, - [87567] = 1, - ACTIONS(7545), 1, + [88053] = 1, + ACTIONS(7562), 1, sym__close_block, - [87571] = 1, - ACTIONS(7547), 1, + [88057] = 1, + ACTIONS(7564), 1, sym__close_block, - [87575] = 1, - ACTIONS(7549), 1, + [88061] = 1, + ACTIONS(7566), 1, sym__open_block, - [87579] = 1, - ACTIONS(7551), 1, + [88065] = 1, + ACTIONS(7568), 1, sym__close_block, - [87583] = 1, - ACTIONS(7553), 1, + [88069] = 1, + ACTIONS(7570), 1, sym__close_block, - [87587] = 1, - ACTIONS(7555), 1, + [88073] = 1, + ACTIONS(7572), 1, sym__close_block, - [87591] = 1, - ACTIONS(7557), 1, + [88077] = 1, + ACTIONS(7574), 1, sym__close_block, - [87595] = 1, - ACTIONS(7559), 1, + [88081] = 1, + ACTIONS(7576), 1, sym__open_block, - [87599] = 1, - ACTIONS(7561), 1, + [88085] = 1, + ACTIONS(7578), 1, sym__close_block, - [87603] = 1, - ACTIONS(7563), 1, + [88089] = 1, + ACTIONS(7580), 1, sym__close_block, - [87607] = 1, - ACTIONS(7565), 1, + [88093] = 1, + ACTIONS(7582), 1, sym__close_block, - [87611] = 1, - ACTIONS(7567), 1, + [88097] = 1, + ACTIONS(7584), 1, sym__close_block, - [87615] = 1, - ACTIONS(7569), 1, + [88101] = 1, + ACTIONS(7586), 1, sym__open_block, - [87619] = 1, - ACTIONS(7571), 1, + [88105] = 1, + ACTIONS(7588), 1, sym__close_block, - [87623] = 1, - ACTIONS(7573), 1, + [88109] = 1, + ACTIONS(7590), 1, sym__close_block, - [87627] = 1, - ACTIONS(7575), 1, + [88113] = 1, + ACTIONS(7592), 1, sym__close_block, - [87631] = 1, - ACTIONS(7577), 1, + [88117] = 1, + ACTIONS(7594), 1, sym__close_block, - [87635] = 1, - ACTIONS(7579), 1, + [88121] = 1, + ACTIONS(7596), 1, sym__open_block, - [87639] = 1, - ACTIONS(7581), 1, + [88125] = 1, + ACTIONS(7598), 1, sym__close_block, - [87643] = 1, - ACTIONS(7583), 1, + [88129] = 1, + ACTIONS(7600), 1, sym__close_block, - [87647] = 1, - ACTIONS(7585), 1, + [88133] = 1, + ACTIONS(7602), 1, sym__close_block, - [87651] = 1, - ACTIONS(7587), 1, + [88137] = 1, + ACTIONS(7604), 1, sym__close_block, - [87655] = 1, - ACTIONS(7589), 1, + [88141] = 1, + ACTIONS(7606), 1, sym__open_block, - [87659] = 1, - ACTIONS(7591), 1, + [88145] = 1, + ACTIONS(7608), 1, sym__close_block, - [87663] = 1, - ACTIONS(7593), 1, + [88149] = 1, + ACTIONS(7610), 1, sym__close_block, - [87667] = 1, - ACTIONS(7595), 1, + [88153] = 1, + ACTIONS(7612), 1, sym__close_block, - [87671] = 1, - ACTIONS(7597), 1, + [88157] = 1, + ACTIONS(7614), 1, sym__close_block, - [87675] = 1, - ACTIONS(7599), 1, + [88161] = 1, + ACTIONS(7616), 1, sym__open_block, }; @@ -152615,128 +153001,128 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(503)] = 93, [SMALL_STATE(504)] = 186, [SMALL_STATE(505)] = 258, - [SMALL_STATE(506)] = 338, - [SMALL_STATE(507)] = 420, - [SMALL_STATE(508)] = 502, - [SMALL_STATE(509)] = 582, + [SMALL_STATE(506)] = 322, + [SMALL_STATE(507)] = 402, + [SMALL_STATE(508)] = 484, + [SMALL_STATE(509)] = 564, [SMALL_STATE(510)] = 646, - [SMALL_STATE(511)] = 725, + [SMALL_STATE(511)] = 727, [SMALL_STATE(512)] = 806, [SMALL_STATE(513)] = 867, - [SMALL_STATE(514)] = 943, + [SMALL_STATE(514)] = 945, [SMALL_STATE(515)] = 1021, [SMALL_STATE(516)] = 1099, [SMALL_STATE(517)] = 1175, [SMALL_STATE(518)] = 1251, [SMALL_STATE(519)] = 1327, - [SMALL_STATE(520)] = 1405, - [SMALL_STATE(521)] = 1471, - [SMALL_STATE(522)] = 1549, - [SMALL_STATE(523)] = 1615, - [SMALL_STATE(524)] = 1695, - [SMALL_STATE(525)] = 1771, + [SMALL_STATE(520)] = 1393, + [SMALL_STATE(521)] = 1459, + [SMALL_STATE(522)] = 1537, + [SMALL_STATE(523)] = 1617, + [SMALL_STATE(524)] = 1693, + [SMALL_STATE(525)] = 1769, [SMALL_STATE(526)] = 1847, - [SMALL_STATE(527)] = 1925, - [SMALL_STATE(528)] = 2003, - [SMALL_STATE(529)] = 2083, - [SMALL_STATE(530)] = 2159, + [SMALL_STATE(527)] = 1923, + [SMALL_STATE(528)] = 2001, + [SMALL_STATE(529)] = 2077, + [SMALL_STATE(530)] = 2155, [SMALL_STATE(531)] = 2235, [SMALL_STATE(532)] = 2298, [SMALL_STATE(533)] = 2361, [SMALL_STATE(534)] = 2424, - [SMALL_STATE(535)] = 2503, - [SMALL_STATE(536)] = 2580, - [SMALL_STATE(537)] = 2643, - [SMALL_STATE(538)] = 2720, - [SMALL_STATE(539)] = 2783, - [SMALL_STATE(540)] = 2846, - [SMALL_STATE(541)] = 2909, - [SMALL_STATE(542)] = 2972, - [SMALL_STATE(543)] = 3035, - [SMALL_STATE(544)] = 3098, - [SMALL_STATE(545)] = 3175, - [SMALL_STATE(546)] = 3238, - [SMALL_STATE(547)] = 3313, - [SMALL_STATE(548)] = 3376, - [SMALL_STATE(549)] = 3439, - [SMALL_STATE(550)] = 3502, - [SMALL_STATE(551)] = 3565, - [SMALL_STATE(552)] = 3628, - [SMALL_STATE(553)] = 3691, - [SMALL_STATE(554)] = 3768, - [SMALL_STATE(555)] = 3831, - [SMALL_STATE(556)] = 3894, - [SMALL_STATE(557)] = 3957, - [SMALL_STATE(558)] = 4020, - [SMALL_STATE(559)] = 4083, - [SMALL_STATE(560)] = 4146, - [SMALL_STATE(561)] = 4209, - [SMALL_STATE(562)] = 4272, - [SMALL_STATE(563)] = 4335, - [SMALL_STATE(564)] = 4398, - [SMALL_STATE(565)] = 4461, - [SMALL_STATE(566)] = 4524, - [SMALL_STATE(567)] = 4587, - [SMALL_STATE(568)] = 4650, - [SMALL_STATE(569)] = 4713, - [SMALL_STATE(570)] = 4776, - [SMALL_STATE(571)] = 4839, - [SMALL_STATE(572)] = 4902, - [SMALL_STATE(573)] = 4965, - [SMALL_STATE(574)] = 5028, - [SMALL_STATE(575)] = 5091, - [SMALL_STATE(576)] = 5154, - [SMALL_STATE(577)] = 5217, - [SMALL_STATE(578)] = 5280, - [SMALL_STATE(579)] = 5343, - [SMALL_STATE(580)] = 5406, - [SMALL_STATE(581)] = 5469, - [SMALL_STATE(582)] = 5546, - [SMALL_STATE(583)] = 5609, - [SMALL_STATE(584)] = 5672, - [SMALL_STATE(585)] = 5749, - [SMALL_STATE(586)] = 5812, - [SMALL_STATE(587)] = 5885, - [SMALL_STATE(588)] = 5948, - [SMALL_STATE(589)] = 6013, - [SMALL_STATE(590)] = 6076, - [SMALL_STATE(591)] = 6139, - [SMALL_STATE(592)] = 6214, - [SMALL_STATE(593)] = 6277, - [SMALL_STATE(594)] = 6340, - [SMALL_STATE(595)] = 6403, - [SMALL_STATE(596)] = 6466, - [SMALL_STATE(597)] = 6529, - [SMALL_STATE(598)] = 6592, - [SMALL_STATE(599)] = 6655, - [SMALL_STATE(600)] = 6718, - [SMALL_STATE(601)] = 6781, - [SMALL_STATE(602)] = 6844, - [SMALL_STATE(603)] = 6907, - [SMALL_STATE(604)] = 6970, - [SMALL_STATE(605)] = 7033, - [SMALL_STATE(606)] = 7096, - [SMALL_STATE(607)] = 7159, - [SMALL_STATE(608)] = 7238, - [SMALL_STATE(609)] = 7301, - [SMALL_STATE(610)] = 7364, - [SMALL_STATE(611)] = 7427, - [SMALL_STATE(612)] = 7490, - [SMALL_STATE(613)] = 7563, - [SMALL_STATE(614)] = 7626, - [SMALL_STATE(615)] = 7689, - [SMALL_STATE(616)] = 7762, - [SMALL_STATE(617)] = 7825, - [SMALL_STATE(618)] = 7888, - [SMALL_STATE(619)] = 7951, - [SMALL_STATE(620)] = 8014, - [SMALL_STATE(621)] = 8077, - [SMALL_STATE(622)] = 8140, - [SMALL_STATE(623)] = 8203, - [SMALL_STATE(624)] = 8282, - [SMALL_STATE(625)] = 8345, - [SMALL_STATE(626)] = 8424, - [SMALL_STATE(627)] = 8487, + [SMALL_STATE(535)] = 2487, + [SMALL_STATE(536)] = 2550, + [SMALL_STATE(537)] = 2613, + [SMALL_STATE(538)] = 2676, + [SMALL_STATE(539)] = 2755, + [SMALL_STATE(540)] = 2818, + [SMALL_STATE(541)] = 2881, + [SMALL_STATE(542)] = 2944, + [SMALL_STATE(543)] = 3007, + [SMALL_STATE(544)] = 3070, + [SMALL_STATE(545)] = 3133, + [SMALL_STATE(546)] = 3196, + [SMALL_STATE(547)] = 3259, + [SMALL_STATE(548)] = 3322, + [SMALL_STATE(549)] = 3385, + [SMALL_STATE(550)] = 3448, + [SMALL_STATE(551)] = 3511, + [SMALL_STATE(552)] = 3574, + [SMALL_STATE(553)] = 3637, + [SMALL_STATE(554)] = 3700, + [SMALL_STATE(555)] = 3779, + [SMALL_STATE(556)] = 3842, + [SMALL_STATE(557)] = 3905, + [SMALL_STATE(558)] = 3968, + [SMALL_STATE(559)] = 4031, + [SMALL_STATE(560)] = 4094, + [SMALL_STATE(561)] = 4157, + [SMALL_STATE(562)] = 4220, + [SMALL_STATE(563)] = 4283, + [SMALL_STATE(564)] = 4346, + [SMALL_STATE(565)] = 4409, + [SMALL_STATE(566)] = 4486, + [SMALL_STATE(567)] = 4549, + [SMALL_STATE(568)] = 4612, + [SMALL_STATE(569)] = 4675, + [SMALL_STATE(570)] = 4754, + [SMALL_STATE(571)] = 4817, + [SMALL_STATE(572)] = 4880, + [SMALL_STATE(573)] = 4943, + [SMALL_STATE(574)] = 5006, + [SMALL_STATE(575)] = 5069, + [SMALL_STATE(576)] = 5132, + [SMALL_STATE(577)] = 5195, + [SMALL_STATE(578)] = 5258, + [SMALL_STATE(579)] = 5321, + [SMALL_STATE(580)] = 5384, + [SMALL_STATE(581)] = 5447, + [SMALL_STATE(582)] = 5510, + [SMALL_STATE(583)] = 5573, + [SMALL_STATE(584)] = 5636, + [SMALL_STATE(585)] = 5699, + [SMALL_STATE(586)] = 5762, + [SMALL_STATE(587)] = 5825, + [SMALL_STATE(588)] = 5888, + [SMALL_STATE(589)] = 5951, + [SMALL_STATE(590)] = 6014, + [SMALL_STATE(591)] = 6087, + [SMALL_STATE(592)] = 6150, + [SMALL_STATE(593)] = 6223, + [SMALL_STATE(594)] = 6300, + [SMALL_STATE(595)] = 6373, + [SMALL_STATE(596)] = 6448, + [SMALL_STATE(597)] = 6513, + [SMALL_STATE(598)] = 6576, + [SMALL_STATE(599)] = 6639, + [SMALL_STATE(600)] = 6702, + [SMALL_STATE(601)] = 6765, + [SMALL_STATE(602)] = 6840, + [SMALL_STATE(603)] = 6919, + [SMALL_STATE(604)] = 6982, + [SMALL_STATE(605)] = 7045, + [SMALL_STATE(606)] = 7108, + [SMALL_STATE(607)] = 7171, + [SMALL_STATE(608)] = 7234, + [SMALL_STATE(609)] = 7297, + [SMALL_STATE(610)] = 7360, + [SMALL_STATE(611)] = 7423, + [SMALL_STATE(612)] = 7486, + [SMALL_STATE(613)] = 7549, + [SMALL_STATE(614)] = 7612, + [SMALL_STATE(615)] = 7675, + [SMALL_STATE(616)] = 7752, + [SMALL_STATE(617)] = 7815, + [SMALL_STATE(618)] = 7892, + [SMALL_STATE(619)] = 7955, + [SMALL_STATE(620)] = 8018, + [SMALL_STATE(621)] = 8081, + [SMALL_STATE(622)] = 8144, + [SMALL_STATE(623)] = 8207, + [SMALL_STATE(624)] = 8284, + [SMALL_STATE(625)] = 8347, + [SMALL_STATE(626)] = 8410, + [SMALL_STATE(627)] = 8473, [SMALL_STATE(628)] = 8550, [SMALL_STATE(629)] = 8613, [SMALL_STATE(630)] = 8676, @@ -152746,79 +153132,79 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(634)] = 8925, [SMALL_STATE(635)] = 8987, [SMALL_STATE(636)] = 9049, - [SMALL_STATE(637)] = 9125, - [SMALL_STATE(638)] = 9187, - [SMALL_STATE(639)] = 9253, - [SMALL_STATE(640)] = 9319, - [SMALL_STATE(641)] = 9381, - [SMALL_STATE(642)] = 9443, - [SMALL_STATE(643)] = 9521, - [SMALL_STATE(644)] = 9583, - [SMALL_STATE(645)] = 9649, - [SMALL_STATE(646)] = 9711, - [SMALL_STATE(647)] = 9773, - [SMALL_STATE(648)] = 9839, - [SMALL_STATE(649)] = 9901, - [SMALL_STATE(650)] = 9963, - [SMALL_STATE(651)] = 10029, - [SMALL_STATE(652)] = 10091, - [SMALL_STATE(653)] = 10153, - [SMALL_STATE(654)] = 10215, - [SMALL_STATE(655)] = 10277, - [SMALL_STATE(656)] = 10339, - [SMALL_STATE(657)] = 10401, - [SMALL_STATE(658)] = 10463, - [SMALL_STATE(659)] = 10529, - [SMALL_STATE(660)] = 10591, - [SMALL_STATE(661)] = 10653, - [SMALL_STATE(662)] = 10719, - [SMALL_STATE(663)] = 10781, - [SMALL_STATE(664)] = 10843, - [SMALL_STATE(665)] = 10905, - [SMALL_STATE(666)] = 10967, - [SMALL_STATE(667)] = 11029, - [SMALL_STATE(668)] = 11091, - [SMALL_STATE(669)] = 11153, - [SMALL_STATE(670)] = 11215, - [SMALL_STATE(671)] = 11277, - [SMALL_STATE(672)] = 11339, - [SMALL_STATE(673)] = 11401, - [SMALL_STATE(674)] = 11463, - [SMALL_STATE(675)] = 11525, - [SMALL_STATE(676)] = 11587, - [SMALL_STATE(677)] = 11649, - [SMALL_STATE(678)] = 11711, - [SMALL_STATE(679)] = 11773, - [SMALL_STATE(680)] = 11835, - [SMALL_STATE(681)] = 11897, + [SMALL_STATE(637)] = 9111, + [SMALL_STATE(638)] = 9173, + [SMALL_STATE(639)] = 9239, + [SMALL_STATE(640)] = 9301, + [SMALL_STATE(641)] = 9363, + [SMALL_STATE(642)] = 9429, + [SMALL_STATE(643)] = 9491, + [SMALL_STATE(644)] = 9569, + [SMALL_STATE(645)] = 9635, + [SMALL_STATE(646)] = 9697, + [SMALL_STATE(647)] = 9763, + [SMALL_STATE(648)] = 9825, + [SMALL_STATE(649)] = 9887, + [SMALL_STATE(650)] = 9949, + [SMALL_STATE(651)] = 10011, + [SMALL_STATE(652)] = 10073, + [SMALL_STATE(653)] = 10135, + [SMALL_STATE(654)] = 10197, + [SMALL_STATE(655)] = 10259, + [SMALL_STATE(656)] = 10321, + [SMALL_STATE(657)] = 10383, + [SMALL_STATE(658)] = 10445, + [SMALL_STATE(659)] = 10507, + [SMALL_STATE(660)] = 10573, + [SMALL_STATE(661)] = 10635, + [SMALL_STATE(662)] = 10697, + [SMALL_STATE(663)] = 10763, + [SMALL_STATE(664)] = 10825, + [SMALL_STATE(665)] = 10887, + [SMALL_STATE(666)] = 10949, + [SMALL_STATE(667)] = 11011, + [SMALL_STATE(668)] = 11073, + [SMALL_STATE(669)] = 11135, + [SMALL_STATE(670)] = 11197, + [SMALL_STATE(671)] = 11263, + [SMALL_STATE(672)] = 11325, + [SMALL_STATE(673)] = 11387, + [SMALL_STATE(674)] = 11453, + [SMALL_STATE(675)] = 11515, + [SMALL_STATE(676)] = 11591, + [SMALL_STATE(677)] = 11653, + [SMALL_STATE(678)] = 11715, + [SMALL_STATE(679)] = 11777, + [SMALL_STATE(680)] = 11839, + [SMALL_STATE(681)] = 11901, [SMALL_STATE(682)] = 11963, [SMALL_STATE(683)] = 12025, [SMALL_STATE(684)] = 12090, [SMALL_STATE(685)] = 12155, [SMALL_STATE(686)] = 12220, - [SMALL_STATE(687)] = 12287, - [SMALL_STATE(688)] = 12352, - [SMALL_STATE(689)] = 12419, - [SMALL_STATE(690)] = 12484, - [SMALL_STATE(691)] = 12549, + [SMALL_STATE(687)] = 12285, + [SMALL_STATE(688)] = 12350, + [SMALL_STATE(689)] = 12415, + [SMALL_STATE(690)] = 12480, + [SMALL_STATE(691)] = 12547, [SMALL_STATE(692)] = 12614, [SMALL_STATE(693)] = 12679, - [SMALL_STATE(694)] = 12739, - [SMALL_STATE(695)] = 12803, - [SMALL_STATE(696)] = 12861, - [SMALL_STATE(697)] = 12925, - [SMALL_STATE(698)] = 12987, - [SMALL_STATE(699)] = 13045, - [SMALL_STATE(700)] = 13103, - [SMALL_STATE(701)] = 13161, - [SMALL_STATE(702)] = 13225, - [SMALL_STATE(703)] = 13289, - [SMALL_STATE(704)] = 13349, - [SMALL_STATE(705)] = 13409, - [SMALL_STATE(706)] = 13469, + [SMALL_STATE(694)] = 12737, + [SMALL_STATE(695)] = 12801, + [SMALL_STATE(696)] = 12865, + [SMALL_STATE(697)] = 12923, + [SMALL_STATE(698)] = 12983, + [SMALL_STATE(699)] = 13047, + [SMALL_STATE(700)] = 13107, + [SMALL_STATE(701)] = 13167, + [SMALL_STATE(702)] = 13227, + [SMALL_STATE(703)] = 13285, + [SMALL_STATE(704)] = 13345, + [SMALL_STATE(705)] = 13407, + [SMALL_STATE(706)] = 13465, [SMALL_STATE(707)] = 13529, - [SMALL_STATE(708)] = 13593, - [SMALL_STATE(709)] = 13653, + [SMALL_STATE(708)] = 13587, + [SMALL_STATE(709)] = 13651, [SMALL_STATE(710)] = 13711, [SMALL_STATE(711)] = 13769, [SMALL_STATE(712)] = 13824, @@ -152826,54 +153212,54 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(714)] = 13934, [SMALL_STATE(715)] = 13989, [SMALL_STATE(716)] = 14044, - [SMALL_STATE(717)] = 14103, - [SMALL_STATE(718)] = 14158, - [SMALL_STATE(719)] = 14215, - [SMALL_STATE(720)] = 14270, - [SMALL_STATE(721)] = 14325, - [SMALL_STATE(722)] = 14380, - [SMALL_STATE(723)] = 14435, - [SMALL_STATE(724)] = 14490, - [SMALL_STATE(725)] = 14545, - [SMALL_STATE(726)] = 14600, - [SMALL_STATE(727)] = 14655, - [SMALL_STATE(728)] = 14710, - [SMALL_STATE(729)] = 14765, - [SMALL_STATE(730)] = 14820, - [SMALL_STATE(731)] = 14875, - [SMALL_STATE(732)] = 14930, - [SMALL_STATE(733)] = 14985, + [SMALL_STATE(717)] = 14099, + [SMALL_STATE(718)] = 14154, + [SMALL_STATE(719)] = 14209, + [SMALL_STATE(720)] = 14264, + [SMALL_STATE(721)] = 14319, + [SMALL_STATE(722)] = 14374, + [SMALL_STATE(723)] = 14429, + [SMALL_STATE(724)] = 14484, + [SMALL_STATE(725)] = 14543, + [SMALL_STATE(726)] = 14598, + [SMALL_STATE(727)] = 14653, + [SMALL_STATE(728)] = 14708, + [SMALL_STATE(729)] = 14767, + [SMALL_STATE(730)] = 14822, + [SMALL_STATE(731)] = 14877, + [SMALL_STATE(732)] = 14932, + [SMALL_STATE(733)] = 14987, [SMALL_STATE(734)] = 15042, [SMALL_STATE(735)] = 15097, - [SMALL_STATE(736)] = 15154, - [SMALL_STATE(737)] = 15209, - [SMALL_STATE(738)] = 15264, - [SMALL_STATE(739)] = 15319, - [SMALL_STATE(740)] = 15374, - [SMALL_STATE(741)] = 15429, - [SMALL_STATE(742)] = 15484, + [SMALL_STATE(736)] = 15156, + [SMALL_STATE(737)] = 15211, + [SMALL_STATE(738)] = 15266, + [SMALL_STATE(739)] = 15325, + [SMALL_STATE(740)] = 15382, + [SMALL_STATE(741)] = 15437, + [SMALL_STATE(742)] = 15492, [SMALL_STATE(743)] = 15547, [SMALL_STATE(744)] = 15602, - [SMALL_STATE(745)] = 15659, - [SMALL_STATE(746)] = 15718, - [SMALL_STATE(747)] = 15775, - [SMALL_STATE(748)] = 15838, - [SMALL_STATE(749)] = 15893, - [SMALL_STATE(750)] = 15948, - [SMALL_STATE(751)] = 16003, - [SMALL_STATE(752)] = 16058, - [SMALL_STATE(753)] = 16115, - [SMALL_STATE(754)] = 16170, + [SMALL_STATE(745)] = 15657, + [SMALL_STATE(746)] = 15712, + [SMALL_STATE(747)] = 15767, + [SMALL_STATE(748)] = 15826, + [SMALL_STATE(749)] = 15881, + [SMALL_STATE(750)] = 15936, + [SMALL_STATE(751)] = 15991, + [SMALL_STATE(752)] = 16046, + [SMALL_STATE(753)] = 16105, + [SMALL_STATE(754)] = 16162, [SMALL_STATE(755)] = 16225, - [SMALL_STATE(756)] = 16284, - [SMALL_STATE(757)] = 16339, - [SMALL_STATE(758)] = 16394, - [SMALL_STATE(759)] = 16449, - [SMALL_STATE(760)] = 16504, - [SMALL_STATE(761)] = 16563, - [SMALL_STATE(762)] = 16618, - [SMALL_STATE(763)] = 16673, - [SMALL_STATE(764)] = 16728, + [SMALL_STATE(756)] = 16280, + [SMALL_STATE(757)] = 16335, + [SMALL_STATE(758)] = 16398, + [SMALL_STATE(759)] = 16453, + [SMALL_STATE(760)] = 16508, + [SMALL_STATE(761)] = 16565, + [SMALL_STATE(762)] = 16620, + [SMALL_STATE(763)] = 16677, + [SMALL_STATE(764)] = 16732, [SMALL_STATE(765)] = 16787, [SMALL_STATE(766)] = 16842, [SMALL_STATE(767)] = 16897, @@ -152885,83 +153271,83 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(773)] = 17227, [SMALL_STATE(774)] = 17282, [SMALL_STATE(775)] = 17337, - [SMALL_STATE(776)] = 17392, - [SMALL_STATE(777)] = 17447, - [SMALL_STATE(778)] = 17502, - [SMALL_STATE(779)] = 17561, - [SMALL_STATE(780)] = 17616, - [SMALL_STATE(781)] = 17673, - [SMALL_STATE(782)] = 17736, - [SMALL_STATE(783)] = 17791, - [SMALL_STATE(784)] = 17846, - [SMALL_STATE(785)] = 17909, - [SMALL_STATE(786)] = 17964, - [SMALL_STATE(787)] = 18023, - [SMALL_STATE(788)] = 18078, - [SMALL_STATE(789)] = 18133, - [SMALL_STATE(790)] = 18188, - [SMALL_STATE(791)] = 18243, - [SMALL_STATE(792)] = 18298, - [SMALL_STATE(793)] = 18353, + [SMALL_STATE(776)] = 17396, + [SMALL_STATE(777)] = 17451, + [SMALL_STATE(778)] = 17506, + [SMALL_STATE(779)] = 17569, + [SMALL_STATE(780)] = 17624, + [SMALL_STATE(781)] = 17687, + [SMALL_STATE(782)] = 17742, + [SMALL_STATE(783)] = 17797, + [SMALL_STATE(784)] = 17852, + [SMALL_STATE(785)] = 17907, + [SMALL_STATE(786)] = 17962, + [SMALL_STATE(787)] = 18017, + [SMALL_STATE(788)] = 18072, + [SMALL_STATE(789)] = 18129, + [SMALL_STATE(790)] = 18184, + [SMALL_STATE(791)] = 18239, + [SMALL_STATE(792)] = 18296, + [SMALL_STATE(793)] = 18351, [SMALL_STATE(794)] = 18408, - [SMALL_STATE(795)] = 18463, - [SMALL_STATE(796)] = 18518, - [SMALL_STATE(797)] = 18573, - [SMALL_STATE(798)] = 18628, - [SMALL_STATE(799)] = 18683, - [SMALL_STATE(800)] = 18738, - [SMALL_STATE(801)] = 18793, - [SMALL_STATE(802)] = 18848, - [SMALL_STATE(803)] = 18903, - [SMALL_STATE(804)] = 18958, - [SMALL_STATE(805)] = 19013, - [SMALL_STATE(806)] = 19068, - [SMALL_STATE(807)] = 19123, - [SMALL_STATE(808)] = 19178, - [SMALL_STATE(809)] = 19233, - [SMALL_STATE(810)] = 19288, - [SMALL_STATE(811)] = 19343, - [SMALL_STATE(812)] = 19398, - [SMALL_STATE(813)] = 19453, - [SMALL_STATE(814)] = 19508, - [SMALL_STATE(815)] = 19567, - [SMALL_STATE(816)] = 19622, - [SMALL_STATE(817)] = 19677, - [SMALL_STATE(818)] = 19732, - [SMALL_STATE(819)] = 19787, - [SMALL_STATE(820)] = 19842, - [SMALL_STATE(821)] = 19897, - [SMALL_STATE(822)] = 19952, - [SMALL_STATE(823)] = 20007, - [SMALL_STATE(824)] = 20062, - [SMALL_STATE(825)] = 20117, - [SMALL_STATE(826)] = 20172, - [SMALL_STATE(827)] = 20227, - [SMALL_STATE(828)] = 20284, - [SMALL_STATE(829)] = 20339, - [SMALL_STATE(830)] = 20396, - [SMALL_STATE(831)] = 20453, - [SMALL_STATE(832)] = 20510, - [SMALL_STATE(833)] = 20569, - [SMALL_STATE(834)] = 20632, + [SMALL_STATE(795)] = 18465, + [SMALL_STATE(796)] = 18522, + [SMALL_STATE(797)] = 18577, + [SMALL_STATE(798)] = 18636, + [SMALL_STATE(799)] = 18691, + [SMALL_STATE(800)] = 18746, + [SMALL_STATE(801)] = 18801, + [SMALL_STATE(802)] = 18856, + [SMALL_STATE(803)] = 18911, + [SMALL_STATE(804)] = 18966, + [SMALL_STATE(805)] = 19021, + [SMALL_STATE(806)] = 19076, + [SMALL_STATE(807)] = 19131, + [SMALL_STATE(808)] = 19186, + [SMALL_STATE(809)] = 19243, + [SMALL_STATE(810)] = 19298, + [SMALL_STATE(811)] = 19353, + [SMALL_STATE(812)] = 19408, + [SMALL_STATE(813)] = 19463, + [SMALL_STATE(814)] = 19518, + [SMALL_STATE(815)] = 19573, + [SMALL_STATE(816)] = 19628, + [SMALL_STATE(817)] = 19683, + [SMALL_STATE(818)] = 19738, + [SMALL_STATE(819)] = 19793, + [SMALL_STATE(820)] = 19850, + [SMALL_STATE(821)] = 19907, + [SMALL_STATE(822)] = 19966, + [SMALL_STATE(823)] = 20021, + [SMALL_STATE(824)] = 20078, + [SMALL_STATE(825)] = 20133, + [SMALL_STATE(826)] = 20188, + [SMALL_STATE(827)] = 20243, + [SMALL_STATE(828)] = 20298, + [SMALL_STATE(829)] = 20353, + [SMALL_STATE(830)] = 20408, + [SMALL_STATE(831)] = 20463, + [SMALL_STATE(832)] = 20518, + [SMALL_STATE(833)] = 20577, + [SMALL_STATE(834)] = 20636, [SMALL_STATE(835)] = 20691, [SMALL_STATE(836)] = 20746, [SMALL_STATE(837)] = 20801, - [SMALL_STATE(838)] = 20864, + [SMALL_STATE(838)] = 20856, [SMALL_STATE(839)] = 20919, [SMALL_STATE(840)] = 20974, [SMALL_STATE(841)] = 21029, - [SMALL_STATE(842)] = 21086, - [SMALL_STATE(843)] = 21141, - [SMALL_STATE(844)] = 21196, - [SMALL_STATE(845)] = 21253, - [SMALL_STATE(846)] = 21308, - [SMALL_STATE(847)] = 21363, - [SMALL_STATE(848)] = 21418, - [SMALL_STATE(849)] = 21473, - [SMALL_STATE(850)] = 21528, - [SMALL_STATE(851)] = 21583, - [SMALL_STATE(852)] = 21638, + [SMALL_STATE(842)] = 21092, + [SMALL_STATE(843)] = 21147, + [SMALL_STATE(844)] = 21202, + [SMALL_STATE(845)] = 21257, + [SMALL_STATE(846)] = 21312, + [SMALL_STATE(847)] = 21367, + [SMALL_STATE(848)] = 21422, + [SMALL_STATE(849)] = 21477, + [SMALL_STATE(850)] = 21532, + [SMALL_STATE(851)] = 21587, + [SMALL_STATE(852)] = 21642, [SMALL_STATE(853)] = 21697, [SMALL_STATE(854)] = 21752, [SMALL_STATE(855)] = 21807, @@ -152979,5167 +153365,5180 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(867)] = 22467, [SMALL_STATE(868)] = 22521, [SMALL_STATE(869)] = 22575, - [SMALL_STATE(870)] = 22629, - [SMALL_STATE(871)] = 22695, - [SMALL_STATE(872)] = 22749, - [SMALL_STATE(873)] = 22815, - [SMALL_STATE(874)] = 22869, - [SMALL_STATE(875)] = 22923, - [SMALL_STATE(876)] = 22977, - [SMALL_STATE(877)] = 23043, - [SMALL_STATE(878)] = 23101, - [SMALL_STATE(879)] = 23167, - [SMALL_STATE(880)] = 23221, - [SMALL_STATE(881)] = 23277, - [SMALL_STATE(882)] = 23333, - [SMALL_STATE(883)] = 23393, - [SMALL_STATE(884)] = 23447, - [SMALL_STATE(885)] = 23501, - [SMALL_STATE(886)] = 23555, - [SMALL_STATE(887)] = 23609, - [SMALL_STATE(888)] = 23663, - [SMALL_STATE(889)] = 23717, - [SMALL_STATE(890)] = 23771, - [SMALL_STATE(891)] = 23837, - [SMALL_STATE(892)] = 23895, - [SMALL_STATE(893)] = 23949, - [SMALL_STATE(894)] = 24005, - [SMALL_STATE(895)] = 24061, - [SMALL_STATE(896)] = 24115, - [SMALL_STATE(897)] = 24169, - [SMALL_STATE(898)] = 24223, - [SMALL_STATE(899)] = 24277, - [SMALL_STATE(900)] = 24365, - [SMALL_STATE(901)] = 24421, - [SMALL_STATE(902)] = 24475, - [SMALL_STATE(903)] = 24529, - [SMALL_STATE(904)] = 24583, - [SMALL_STATE(905)] = 24637, - [SMALL_STATE(906)] = 24691, - [SMALL_STATE(907)] = 24745, - [SMALL_STATE(908)] = 24799, - [SMALL_STATE(909)] = 24853, - [SMALL_STATE(910)] = 24907, - [SMALL_STATE(911)] = 24973, - [SMALL_STATE(912)] = 25029, - [SMALL_STATE(913)] = 25083, - [SMALL_STATE(914)] = 25139, - [SMALL_STATE(915)] = 25193, - [SMALL_STATE(916)] = 25259, - [SMALL_STATE(917)] = 25313, - [SMALL_STATE(918)] = 25367, - [SMALL_STATE(919)] = 25425, - [SMALL_STATE(920)] = 25479, - [SMALL_STATE(921)] = 25533, - [SMALL_STATE(922)] = 25589, - [SMALL_STATE(923)] = 25643, - [SMALL_STATE(924)] = 25709, - [SMALL_STATE(925)] = 25763, - [SMALL_STATE(926)] = 25817, - [SMALL_STATE(927)] = 25871, - [SMALL_STATE(928)] = 25925, - [SMALL_STATE(929)] = 25979, - [SMALL_STATE(930)] = 26033, - [SMALL_STATE(931)] = 26087, - [SMALL_STATE(932)] = 26141, - [SMALL_STATE(933)] = 26195, - [SMALL_STATE(934)] = 26249, - [SMALL_STATE(935)] = 26303, - [SMALL_STATE(936)] = 26357, - [SMALL_STATE(937)] = 26411, - [SMALL_STATE(938)] = 26465, - [SMALL_STATE(939)] = 26519, - [SMALL_STATE(940)] = 26585, - [SMALL_STATE(941)] = 26641, - [SMALL_STATE(942)] = 26695, - [SMALL_STATE(943)] = 26749, - [SMALL_STATE(944)] = 26803, - [SMALL_STATE(945)] = 26857, - [SMALL_STATE(946)] = 26911, - [SMALL_STATE(947)] = 26965, - [SMALL_STATE(948)] = 27031, - [SMALL_STATE(949)] = 27085, - [SMALL_STATE(950)] = 27141, - [SMALL_STATE(951)] = 27195, - [SMALL_STATE(952)] = 27249, - [SMALL_STATE(953)] = 27303, - [SMALL_STATE(954)] = 27357, - [SMALL_STATE(955)] = 27411, - [SMALL_STATE(956)] = 27465, - [SMALL_STATE(957)] = 27519, - [SMALL_STATE(958)] = 27573, - [SMALL_STATE(959)] = 27627, - [SMALL_STATE(960)] = 27681, - [SMALL_STATE(961)] = 27735, - [SMALL_STATE(962)] = 27789, - [SMALL_STATE(963)] = 27843, - [SMALL_STATE(964)] = 27897, - [SMALL_STATE(965)] = 27951, - [SMALL_STATE(966)] = 28005, - [SMALL_STATE(967)] = 28059, - [SMALL_STATE(968)] = 28113, - [SMALL_STATE(969)] = 28167, - [SMALL_STATE(970)] = 28233, - [SMALL_STATE(971)] = 28289, - [SMALL_STATE(972)] = 28343, - [SMALL_STATE(973)] = 28397, - [SMALL_STATE(974)] = 28451, - [SMALL_STATE(975)] = 28505, - [SMALL_STATE(976)] = 28559, - [SMALL_STATE(977)] = 28613, - [SMALL_STATE(978)] = 28667, - [SMALL_STATE(979)] = 28721, - [SMALL_STATE(980)] = 28775, - [SMALL_STATE(981)] = 28829, - [SMALL_STATE(982)] = 28883, - [SMALL_STATE(983)] = 28971, - [SMALL_STATE(984)] = 29025, - [SMALL_STATE(985)] = 29079, - [SMALL_STATE(986)] = 29133, - [SMALL_STATE(987)] = 29187, - [SMALL_STATE(988)] = 29242, - [SMALL_STATE(989)] = 29315, - [SMALL_STATE(990)] = 29386, - [SMALL_STATE(991)] = 29459, - [SMALL_STATE(992)] = 29530, - [SMALL_STATE(993)] = 29603, - [SMALL_STATE(994)] = 29684, - [SMALL_STATE(995)] = 29757, - [SMALL_STATE(996)] = 29828, - [SMALL_STATE(997)] = 29909, - [SMALL_STATE(998)] = 29980, - [SMALL_STATE(999)] = 30053, - [SMALL_STATE(1000)] = 30126, - [SMALL_STATE(1001)] = 30199, - [SMALL_STATE(1002)] = 30272, - [SMALL_STATE(1003)] = 30345, - [SMALL_STATE(1004)] = 30418, - [SMALL_STATE(1005)] = 30471, - [SMALL_STATE(1006)] = 30524, - [SMALL_STATE(1007)] = 30597, - [SMALL_STATE(1008)] = 30668, - [SMALL_STATE(1009)] = 30741, - [SMALL_STATE(1010)] = 30814, - [SMALL_STATE(1011)] = 30885, - [SMALL_STATE(1012)] = 30958, - [SMALL_STATE(1013)] = 31031, - [SMALL_STATE(1014)] = 31102, - [SMALL_STATE(1015)] = 31173, - [SMALL_STATE(1016)] = 31228, - [SMALL_STATE(1017)] = 31281, - [SMALL_STATE(1018)] = 31336, - [SMALL_STATE(1019)] = 31389, - [SMALL_STATE(1020)] = 31442, - [SMALL_STATE(1021)] = 31495, - [SMALL_STATE(1022)] = 31548, - [SMALL_STATE(1023)] = 31619, - [SMALL_STATE(1024)] = 31690, - [SMALL_STATE(1025)] = 31763, - [SMALL_STATE(1026)] = 31844, - [SMALL_STATE(1027)] = 31917, - [SMALL_STATE(1028)] = 31990, - [SMALL_STATE(1029)] = 32061, - [SMALL_STATE(1030)] = 32134, - [SMALL_STATE(1031)] = 32207, - [SMALL_STATE(1032)] = 32288, - [SMALL_STATE(1033)] = 32361, - [SMALL_STATE(1034)] = 32434, - [SMALL_STATE(1035)] = 32515, - [SMALL_STATE(1036)] = 32568, - [SMALL_STATE(1037)] = 32641, - [SMALL_STATE(1038)] = 32714, - [SMALL_STATE(1039)] = 32777, - [SMALL_STATE(1040)] = 32830, - [SMALL_STATE(1041)] = 32883, - [SMALL_STATE(1042)] = 32954, - [SMALL_STATE(1043)] = 33007, - [SMALL_STATE(1044)] = 33078, - [SMALL_STATE(1045)] = 33151, - [SMALL_STATE(1046)] = 33224, - [SMALL_STATE(1047)] = 33277, - [SMALL_STATE(1048)] = 33330, - [SMALL_STATE(1049)] = 33383, - [SMALL_STATE(1050)] = 33436, - [SMALL_STATE(1051)] = 33517, - [SMALL_STATE(1052)] = 33570, - [SMALL_STATE(1053)] = 33643, - [SMALL_STATE(1054)] = 33696, - [SMALL_STATE(1055)] = 33749, - [SMALL_STATE(1056)] = 33822, - [SMALL_STATE(1057)] = 33877, - [SMALL_STATE(1058)] = 33958, - [SMALL_STATE(1059)] = 34039, - [SMALL_STATE(1060)] = 34092, - [SMALL_STATE(1061)] = 34145, - [SMALL_STATE(1062)] = 34200, - [SMALL_STATE(1063)] = 34273, - [SMALL_STATE(1064)] = 34326, - [SMALL_STATE(1065)] = 34379, - [SMALL_STATE(1066)] = 34452, - [SMALL_STATE(1067)] = 34505, - [SMALL_STATE(1068)] = 34576, - [SMALL_STATE(1069)] = 34649, - [SMALL_STATE(1070)] = 34730, - [SMALL_STATE(1071)] = 34803, - [SMALL_STATE(1072)] = 34858, - [SMALL_STATE(1073)] = 34931, - [SMALL_STATE(1074)] = 35002, - [SMALL_STATE(1075)] = 35073, - [SMALL_STATE(1076)] = 35154, - [SMALL_STATE(1077)] = 35227, - [SMALL_STATE(1078)] = 35300, - [SMALL_STATE(1079)] = 35371, - [SMALL_STATE(1080)] = 35442, - [SMALL_STATE(1081)] = 35513, - [SMALL_STATE(1082)] = 35586, - [SMALL_STATE(1083)] = 35641, - [SMALL_STATE(1084)] = 35694, - [SMALL_STATE(1085)] = 35767, - [SMALL_STATE(1086)] = 35820, - [SMALL_STATE(1087)] = 35901, - [SMALL_STATE(1088)] = 35974, - [SMALL_STATE(1089)] = 36047, - [SMALL_STATE(1090)] = 36120, - [SMALL_STATE(1091)] = 36177, - [SMALL_STATE(1092)] = 36250, - [SMALL_STATE(1093)] = 36323, - [SMALL_STATE(1094)] = 36380, - [SMALL_STATE(1095)] = 36437, - [SMALL_STATE(1096)] = 36510, - [SMALL_STATE(1097)] = 36583, - [SMALL_STATE(1098)] = 36654, - [SMALL_STATE(1099)] = 36727, - [SMALL_STATE(1100)] = 36784, - [SMALL_STATE(1101)] = 36857, - [SMALL_STATE(1102)] = 36938, - [SMALL_STATE(1103)] = 36996, - [SMALL_STATE(1104)] = 37072, - [SMALL_STATE(1105)] = 37148, - [SMALL_STATE(1106)] = 37205, - [SMALL_STATE(1107)] = 37290, - [SMALL_STATE(1108)] = 37375, - [SMALL_STATE(1109)] = 37460, - [SMALL_STATE(1110)] = 37541, - [SMALL_STATE(1111)] = 37626, - [SMALL_STATE(1112)] = 37699, - [SMALL_STATE(1113)] = 37780, - [SMALL_STATE(1114)] = 37844, - [SMALL_STATE(1115)] = 37908, - [SMALL_STATE(1116)] = 37972, - [SMALL_STATE(1117)] = 38036, - [SMALL_STATE(1118)] = 38100, - [SMALL_STATE(1119)] = 38164, - [SMALL_STATE(1120)] = 38228, - [SMALL_STATE(1121)] = 38292, - [SMALL_STATE(1122)] = 38356, - [SMALL_STATE(1123)] = 38420, - [SMALL_STATE(1124)] = 38484, - [SMALL_STATE(1125)] = 38548, - [SMALL_STATE(1126)] = 38612, - [SMALL_STATE(1127)] = 38684, - [SMALL_STATE(1128)] = 38748, - [SMALL_STATE(1129)] = 38812, - [SMALL_STATE(1130)] = 38876, - [SMALL_STATE(1131)] = 38940, - [SMALL_STATE(1132)] = 39004, - [SMALL_STATE(1133)] = 39068, - [SMALL_STATE(1134)] = 39132, - [SMALL_STATE(1135)] = 39196, - [SMALL_STATE(1136)] = 39260, - [SMALL_STATE(1137)] = 39324, - [SMALL_STATE(1138)] = 39388, - [SMALL_STATE(1139)] = 39452, - [SMALL_STATE(1140)] = 39516, - [SMALL_STATE(1141)] = 39588, - [SMALL_STATE(1142)] = 39652, - [SMALL_STATE(1143)] = 39716, - [SMALL_STATE(1144)] = 39780, - [SMALL_STATE(1145)] = 39844, - [SMALL_STATE(1146)] = 39900, - [SMALL_STATE(1147)] = 39972, - [SMALL_STATE(1148)] = 40036, - [SMALL_STATE(1149)] = 40100, - [SMALL_STATE(1150)] = 40164, - [SMALL_STATE(1151)] = 40236, - [SMALL_STATE(1152)] = 40300, - [SMALL_STATE(1153)] = 40364, - [SMALL_STATE(1154)] = 40428, - [SMALL_STATE(1155)] = 40492, - [SMALL_STATE(1156)] = 40546, - [SMALL_STATE(1157)] = 40600, - [SMALL_STATE(1158)] = 40654, - [SMALL_STATE(1159)] = 40708, - [SMALL_STATE(1160)] = 40772, - [SMALL_STATE(1161)] = 40836, - [SMALL_STATE(1162)] = 40900, - [SMALL_STATE(1163)] = 40964, - [SMALL_STATE(1164)] = 41028, - [SMALL_STATE(1165)] = 41092, - [SMALL_STATE(1166)] = 41156, - [SMALL_STATE(1167)] = 41220, - [SMALL_STATE(1168)] = 41272, - [SMALL_STATE(1169)] = 41324, - [SMALL_STATE(1170)] = 41388, - [SMALL_STATE(1171)] = 41452, - [SMALL_STATE(1172)] = 41516, - [SMALL_STATE(1173)] = 41580, - [SMALL_STATE(1174)] = 41644, - [SMALL_STATE(1175)] = 41708, - [SMALL_STATE(1176)] = 41772, - [SMALL_STATE(1177)] = 41836, - [SMALL_STATE(1178)] = 41900, - [SMALL_STATE(1179)] = 41964, - [SMALL_STATE(1180)] = 42028, - [SMALL_STATE(1181)] = 42092, - [SMALL_STATE(1182)] = 42156, - [SMALL_STATE(1183)] = 42220, - [SMALL_STATE(1184)] = 42284, - [SMALL_STATE(1185)] = 42339, - [SMALL_STATE(1186)] = 42398, - [SMALL_STATE(1187)] = 42457, - [SMALL_STATE(1188)] = 42520, - [SMALL_STATE(1189)] = 42573, - [SMALL_STATE(1190)] = 42626, - [SMALL_STATE(1191)] = 42679, - [SMALL_STATE(1192)] = 42728, - [SMALL_STATE(1193)] = 42781, - [SMALL_STATE(1194)] = 42834, - [SMALL_STATE(1195)] = 42893, - [SMALL_STATE(1196)] = 42946, - [SMALL_STATE(1197)] = 42999, - [SMALL_STATE(1198)] = 43058, - [SMALL_STATE(1199)] = 43111, - [SMALL_STATE(1200)] = 43164, - [SMALL_STATE(1201)] = 43227, - [SMALL_STATE(1202)] = 43280, - [SMALL_STATE(1203)] = 43333, - [SMALL_STATE(1204)] = 43386, - [SMALL_STATE(1205)] = 43439, - [SMALL_STATE(1206)] = 43492, - [SMALL_STATE(1207)] = 43545, - [SMALL_STATE(1208)] = 43600, - [SMALL_STATE(1209)] = 43649, - [SMALL_STATE(1210)] = 43704, - [SMALL_STATE(1211)] = 43757, - [SMALL_STATE(1212)] = 43810, - [SMALL_STATE(1213)] = 43863, - [SMALL_STATE(1214)] = 43916, - [SMALL_STATE(1215)] = 43969, - [SMALL_STATE(1216)] = 44022, - [SMALL_STATE(1217)] = 44075, - [SMALL_STATE(1218)] = 44128, - [SMALL_STATE(1219)] = 44183, - [SMALL_STATE(1220)] = 44238, - [SMALL_STATE(1221)] = 44291, - [SMALL_STATE(1222)] = 44344, - [SMALL_STATE(1223)] = 44397, - [SMALL_STATE(1224)] = 44450, - [SMALL_STATE(1225)] = 44503, - [SMALL_STATE(1226)] = 44556, - [SMALL_STATE(1227)] = 44611, - [SMALL_STATE(1228)] = 44664, - [SMALL_STATE(1229)] = 44717, - [SMALL_STATE(1230)] = 44770, - [SMALL_STATE(1231)] = 44829, - [SMALL_STATE(1232)] = 44882, - [SMALL_STATE(1233)] = 44935, - [SMALL_STATE(1234)] = 44988, - [SMALL_STATE(1235)] = 45041, - [SMALL_STATE(1236)] = 45094, - [SMALL_STATE(1237)] = 45147, - [SMALL_STATE(1238)] = 45206, - [SMALL_STATE(1239)] = 45267, - [SMALL_STATE(1240)] = 45322, - [SMALL_STATE(1241)] = 45375, - [SMALL_STATE(1242)] = 45428, - [SMALL_STATE(1243)] = 45481, - [SMALL_STATE(1244)] = 45534, - [SMALL_STATE(1245)] = 45595, - [SMALL_STATE(1246)] = 45658, - [SMALL_STATE(1247)] = 45719, - [SMALL_STATE(1248)] = 45778, - [SMALL_STATE(1249)] = 45837, - [SMALL_STATE(1250)] = 45896, - [SMALL_STATE(1251)] = 45959, - [SMALL_STATE(1252)] = 46020, - [SMALL_STATE(1253)] = 46083, - [SMALL_STATE(1254)] = 46146, - [SMALL_STATE(1255)] = 46205, - [SMALL_STATE(1256)] = 46266, - [SMALL_STATE(1257)] = 46325, - [SMALL_STATE(1258)] = 46387, - [SMALL_STATE(1259)] = 46449, - [SMALL_STATE(1260)] = 46507, - [SMALL_STATE(1261)] = 46565, - [SMALL_STATE(1262)] = 46627, - [SMALL_STATE(1263)] = 46689, - [SMALL_STATE(1264)] = 46751, - [SMALL_STATE(1265)] = 46813, - [SMALL_STATE(1266)] = 46875, - [SMALL_STATE(1267)] = 46937, - [SMALL_STATE(1268)] = 46999, - [SMALL_STATE(1269)] = 47061, - [SMALL_STATE(1270)] = 47123, - [SMALL_STATE(1271)] = 47185, - [SMALL_STATE(1272)] = 47247, - [SMALL_STATE(1273)] = 47309, - [SMALL_STATE(1274)] = 47371, - [SMALL_STATE(1275)] = 47433, - [SMALL_STATE(1276)] = 47495, - [SMALL_STATE(1277)] = 47557, - [SMALL_STATE(1278)] = 47619, - [SMALL_STATE(1279)] = 47681, - [SMALL_STATE(1280)] = 47743, - [SMALL_STATE(1281)] = 47805, - [SMALL_STATE(1282)] = 47867, - [SMALL_STATE(1283)] = 47921, - [SMALL_STATE(1284)] = 47983, - [SMALL_STATE(1285)] = 48045, - [SMALL_STATE(1286)] = 48103, - [SMALL_STATE(1287)] = 48165, - [SMALL_STATE(1288)] = 48227, - [SMALL_STATE(1289)] = 48289, - [SMALL_STATE(1290)] = 48351, - [SMALL_STATE(1291)] = 48413, - [SMALL_STATE(1292)] = 48475, - [SMALL_STATE(1293)] = 48537, - [SMALL_STATE(1294)] = 48599, - [SMALL_STATE(1295)] = 48661, - [SMALL_STATE(1296)] = 48723, - [SMALL_STATE(1297)] = 48785, - [SMALL_STATE(1298)] = 48847, - [SMALL_STATE(1299)] = 48909, - [SMALL_STATE(1300)] = 48971, - [SMALL_STATE(1301)] = 49033, - [SMALL_STATE(1302)] = 49095, - [SMALL_STATE(1303)] = 49153, - [SMALL_STATE(1304)] = 49231, - [SMALL_STATE(1305)] = 49293, - [SMALL_STATE(1306)] = 49355, - [SMALL_STATE(1307)] = 49413, - [SMALL_STATE(1308)] = 49475, - [SMALL_STATE(1309)] = 49537, - [SMALL_STATE(1310)] = 49589, - [SMALL_STATE(1311)] = 49651, - [SMALL_STATE(1312)] = 49713, - [SMALL_STATE(1313)] = 49775, - [SMALL_STATE(1314)] = 49837, - [SMALL_STATE(1315)] = 49895, - [SMALL_STATE(1316)] = 49957, - [SMALL_STATE(1317)] = 50019, - [SMALL_STATE(1318)] = 50077, - [SMALL_STATE(1319)] = 50131, - [SMALL_STATE(1320)] = 50189, - [SMALL_STATE(1321)] = 50251, - [SMALL_STATE(1322)] = 50313, - [SMALL_STATE(1323)] = 50365, - [SMALL_STATE(1324)] = 50443, - [SMALL_STATE(1325)] = 50495, - [SMALL_STATE(1326)] = 50547, - [SMALL_STATE(1327)] = 50605, - [SMALL_STATE(1328)] = 50663, - [SMALL_STATE(1329)] = 50725, - [SMALL_STATE(1330)] = 50777, - [SMALL_STATE(1331)] = 50829, - [SMALL_STATE(1332)] = 50881, - [SMALL_STATE(1333)] = 50933, - [SMALL_STATE(1334)] = 50995, - [SMALL_STATE(1335)] = 51047, - [SMALL_STATE(1336)] = 51109, - [SMALL_STATE(1337)] = 51171, - [SMALL_STATE(1338)] = 51233, - [SMALL_STATE(1339)] = 51285, - [SMALL_STATE(1340)] = 51337, - [SMALL_STATE(1341)] = 51389, - [SMALL_STATE(1342)] = 51441, - [SMALL_STATE(1343)] = 51493, - [SMALL_STATE(1344)] = 51555, - [SMALL_STATE(1345)] = 51607, - [SMALL_STATE(1346)] = 51659, - [SMALL_STATE(1347)] = 51713, - [SMALL_STATE(1348)] = 51775, - [SMALL_STATE(1349)] = 51827, - [SMALL_STATE(1350)] = 51879, - [SMALL_STATE(1351)] = 51941, - [SMALL_STATE(1352)] = 52003, - [SMALL_STATE(1353)] = 52055, - [SMALL_STATE(1354)] = 52107, - [SMALL_STATE(1355)] = 52159, - [SMALL_STATE(1356)] = 52211, - [SMALL_STATE(1357)] = 52263, - [SMALL_STATE(1358)] = 52325, - [SMALL_STATE(1359)] = 52377, - [SMALL_STATE(1360)] = 52429, - [SMALL_STATE(1361)] = 52491, - [SMALL_STATE(1362)] = 52543, - [SMALL_STATE(1363)] = 52605, - [SMALL_STATE(1364)] = 52667, - [SMALL_STATE(1365)] = 52729, - [SMALL_STATE(1366)] = 52781, - [SMALL_STATE(1367)] = 52843, - [SMALL_STATE(1368)] = 52905, - [SMALL_STATE(1369)] = 52967, - [SMALL_STATE(1370)] = 53029, - [SMALL_STATE(1371)] = 53081, - [SMALL_STATE(1372)] = 53143, - [SMALL_STATE(1373)] = 53205, - [SMALL_STATE(1374)] = 53267, - [SMALL_STATE(1375)] = 53329, - [SMALL_STATE(1376)] = 53391, - [SMALL_STATE(1377)] = 53453, - [SMALL_STATE(1378)] = 53515, - [SMALL_STATE(1379)] = 53577, - [SMALL_STATE(1380)] = 53639, - [SMALL_STATE(1381)] = 53701, - [SMALL_STATE(1382)] = 53755, - [SMALL_STATE(1383)] = 53817, - [SMALL_STATE(1384)] = 53879, - [SMALL_STATE(1385)] = 53941, - [SMALL_STATE(1386)] = 54003, - [SMALL_STATE(1387)] = 54065, - [SMALL_STATE(1388)] = 54127, - [SMALL_STATE(1389)] = 54189, - [SMALL_STATE(1390)] = 54251, - [SMALL_STATE(1391)] = 54313, - [SMALL_STATE(1392)] = 54375, - [SMALL_STATE(1393)] = 54453, - [SMALL_STATE(1394)] = 54507, - [SMALL_STATE(1395)] = 54569, - [SMALL_STATE(1396)] = 54631, - [SMALL_STATE(1397)] = 54693, - [SMALL_STATE(1398)] = 54755, - [SMALL_STATE(1399)] = 54817, - [SMALL_STATE(1400)] = 54879, - [SMALL_STATE(1401)] = 54941, - [SMALL_STATE(1402)] = 55003, - [SMALL_STATE(1403)] = 55081, - [SMALL_STATE(1404)] = 55143, - [SMALL_STATE(1405)] = 55205, - [SMALL_STATE(1406)] = 55256, - [SMALL_STATE(1407)] = 55307, - [SMALL_STATE(1408)] = 55366, - [SMALL_STATE(1409)] = 55425, - [SMALL_STATE(1410)] = 55478, - [SMALL_STATE(1411)] = 55537, - [SMALL_STATE(1412)] = 55596, - [SMALL_STATE(1413)] = 55655, - [SMALL_STATE(1414)] = 55714, - [SMALL_STATE(1415)] = 55773, - [SMALL_STATE(1416)] = 55832, - [SMALL_STATE(1417)] = 55891, - [SMALL_STATE(1418)] = 55942, - [SMALL_STATE(1419)] = 56001, - [SMALL_STATE(1420)] = 56060, - [SMALL_STATE(1421)] = 56119, - [SMALL_STATE(1422)] = 56178, - [SMALL_STATE(1423)] = 56237, - [SMALL_STATE(1424)] = 56296, - [SMALL_STATE(1425)] = 56355, - [SMALL_STATE(1426)] = 56406, - [SMALL_STATE(1427)] = 56457, - [SMALL_STATE(1428)] = 56516, - [SMALL_STATE(1429)] = 56575, - [SMALL_STATE(1430)] = 56634, - [SMALL_STATE(1431)] = 56685, - [SMALL_STATE(1432)] = 56744, - [SMALL_STATE(1433)] = 56803, - [SMALL_STATE(1434)] = 56862, - [SMALL_STATE(1435)] = 56921, - [SMALL_STATE(1436)] = 56980, - [SMALL_STATE(1437)] = 57039, - [SMALL_STATE(1438)] = 57098, - [SMALL_STATE(1439)] = 57161, - [SMALL_STATE(1440)] = 57220, - [SMALL_STATE(1441)] = 57271, - [SMALL_STATE(1442)] = 57330, - [SMALL_STATE(1443)] = 57389, - [SMALL_STATE(1444)] = 57448, - [SMALL_STATE(1445)] = 57507, - [SMALL_STATE(1446)] = 57558, - [SMALL_STATE(1447)] = 57617, - [SMALL_STATE(1448)] = 57676, - [SMALL_STATE(1449)] = 57735, - [SMALL_STATE(1450)] = 57794, - [SMALL_STATE(1451)] = 57857, - [SMALL_STATE(1452)] = 57908, - [SMALL_STATE(1453)] = 57967, - [SMALL_STATE(1454)] = 58026, - [SMALL_STATE(1455)] = 58085, - [SMALL_STATE(1456)] = 58144, - [SMALL_STATE(1457)] = 58203, - [SMALL_STATE(1458)] = 58262, - [SMALL_STATE(1459)] = 58313, - [SMALL_STATE(1460)] = 58364, - [SMALL_STATE(1461)] = 58415, - [SMALL_STATE(1462)] = 58474, - [SMALL_STATE(1463)] = 58533, - [SMALL_STATE(1464)] = 58592, - [SMALL_STATE(1465)] = 58651, - [SMALL_STATE(1466)] = 58710, - [SMALL_STATE(1467)] = 58761, - [SMALL_STATE(1468)] = 58820, - [SMALL_STATE(1469)] = 58879, - [SMALL_STATE(1470)] = 58938, - [SMALL_STATE(1471)] = 58997, - [SMALL_STATE(1472)] = 59048, - [SMALL_STATE(1473)] = 59099, - [SMALL_STATE(1474)] = 59150, - [SMALL_STATE(1475)] = 59209, - [SMALL_STATE(1476)] = 59264, - [SMALL_STATE(1477)] = 59323, - [SMALL_STATE(1478)] = 59382, - [SMALL_STATE(1479)] = 59433, - [SMALL_STATE(1480)] = 59484, - [SMALL_STATE(1481)] = 59547, - [SMALL_STATE(1482)] = 59606, - [SMALL_STATE(1483)] = 59657, - [SMALL_STATE(1484)] = 59716, - [SMALL_STATE(1485)] = 59767, - [SMALL_STATE(1486)] = 59818, - [SMALL_STATE(1487)] = 59877, - [SMALL_STATE(1488)] = 59936, - [SMALL_STATE(1489)] = 59995, - [SMALL_STATE(1490)] = 60054, - [SMALL_STATE(1491)] = 60113, - [SMALL_STATE(1492)] = 60172, - [SMALL_STATE(1493)] = 60231, - [SMALL_STATE(1494)] = 60290, - [SMALL_STATE(1495)] = 60349, - [SMALL_STATE(1496)] = 60408, - [SMALL_STATE(1497)] = 60467, - [SMALL_STATE(1498)] = 60526, - [SMALL_STATE(1499)] = 60585, - [SMALL_STATE(1500)] = 60644, - [SMALL_STATE(1501)] = 60703, - [SMALL_STATE(1502)] = 60762, - [SMALL_STATE(1503)] = 60821, - [SMALL_STATE(1504)] = 60880, - [SMALL_STATE(1505)] = 60939, - [SMALL_STATE(1506)] = 60998, - [SMALL_STATE(1507)] = 61057, - [SMALL_STATE(1508)] = 61116, - [SMALL_STATE(1509)] = 61175, - [SMALL_STATE(1510)] = 61234, - [SMALL_STATE(1511)] = 61293, - [SMALL_STATE(1512)] = 61352, - [SMALL_STATE(1513)] = 61411, - [SMALL_STATE(1514)] = 61462, - [SMALL_STATE(1515)] = 61521, - [SMALL_STATE(1516)] = 61580, - [SMALL_STATE(1517)] = 61639, - [SMALL_STATE(1518)] = 61690, - [SMALL_STATE(1519)] = 61749, - [SMALL_STATE(1520)] = 61800, - [SMALL_STATE(1521)] = 61851, - [SMALL_STATE(1522)] = 61902, - [SMALL_STATE(1523)] = 61961, - [SMALL_STATE(1524)] = 62012, - [SMALL_STATE(1525)] = 62067, - [SMALL_STATE(1526)] = 62126, - [SMALL_STATE(1527)] = 62189, - [SMALL_STATE(1528)] = 62248, - [SMALL_STATE(1529)] = 62299, - [SMALL_STATE(1530)] = 62350, - [SMALL_STATE(1531)] = 62409, - [SMALL_STATE(1532)] = 62460, - [SMALL_STATE(1533)] = 62511, - [SMALL_STATE(1534)] = 62562, - [SMALL_STATE(1535)] = 62613, - [SMALL_STATE(1536)] = 62672, - [SMALL_STATE(1537)] = 62731, - [SMALL_STATE(1538)] = 62782, - [SMALL_STATE(1539)] = 62833, - [SMALL_STATE(1540)] = 62884, - [SMALL_STATE(1541)] = 62947, - [SMALL_STATE(1542)] = 62998, - [SMALL_STATE(1543)] = 63057, - [SMALL_STATE(1544)] = 63116, - [SMALL_STATE(1545)] = 63167, - [SMALL_STATE(1546)] = 63226, - [SMALL_STATE(1547)] = 63285, - [SMALL_STATE(1548)] = 63336, - [SMALL_STATE(1549)] = 63395, - [SMALL_STATE(1550)] = 63454, - [SMALL_STATE(1551)] = 63513, - [SMALL_STATE(1552)] = 63572, - [SMALL_STATE(1553)] = 63623, - [SMALL_STATE(1554)] = 63682, - [SMALL_STATE(1555)] = 63741, - [SMALL_STATE(1556)] = 63792, - [SMALL_STATE(1557)] = 63851, - [SMALL_STATE(1558)] = 63910, - [SMALL_STATE(1559)] = 63961, - [SMALL_STATE(1560)] = 64020, - [SMALL_STATE(1561)] = 64071, - [SMALL_STATE(1562)] = 64130, - [SMALL_STATE(1563)] = 64189, - [SMALL_STATE(1564)] = 64248, - [SMALL_STATE(1565)] = 64307, - [SMALL_STATE(1566)] = 64358, - [SMALL_STATE(1567)] = 64421, - [SMALL_STATE(1568)] = 64484, - [SMALL_STATE(1569)] = 64543, - [SMALL_STATE(1570)] = 64602, - [SMALL_STATE(1571)] = 64661, - [SMALL_STATE(1572)] = 64712, - [SMALL_STATE(1573)] = 64763, - [SMALL_STATE(1574)] = 64814, - [SMALL_STATE(1575)] = 64873, - [SMALL_STATE(1576)] = 64932, - [SMALL_STATE(1577)] = 64991, - [SMALL_STATE(1578)] = 65050, - [SMALL_STATE(1579)] = 65109, - [SMALL_STATE(1580)] = 65160, - [SMALL_STATE(1581)] = 65223, - [SMALL_STATE(1582)] = 65282, - [SMALL_STATE(1583)] = 65341, - [SMALL_STATE(1584)] = 65400, - [SMALL_STATE(1585)] = 65459, - [SMALL_STATE(1586)] = 65518, - [SMALL_STATE(1587)] = 65569, - [SMALL_STATE(1588)] = 65628, - [SMALL_STATE(1589)] = 65687, - [SMALL_STATE(1590)] = 65746, - [SMALL_STATE(1591)] = 65805, - [SMALL_STATE(1592)] = 65864, - [SMALL_STATE(1593)] = 65923, - [SMALL_STATE(1594)] = 65982, - [SMALL_STATE(1595)] = 66041, - [SMALL_STATE(1596)] = 66100, - [SMALL_STATE(1597)] = 66159, - [SMALL_STATE(1598)] = 66218, - [SMALL_STATE(1599)] = 66277, - [SMALL_STATE(1600)] = 66336, - [SMALL_STATE(1601)] = 66395, - [SMALL_STATE(1602)] = 66454, - [SMALL_STATE(1603)] = 66513, - [SMALL_STATE(1604)] = 66572, - [SMALL_STATE(1605)] = 66631, - [SMALL_STATE(1606)] = 66690, - [SMALL_STATE(1607)] = 66749, - [SMALL_STATE(1608)] = 66808, - [SMALL_STATE(1609)] = 66867, - [SMALL_STATE(1610)] = 66926, - [SMALL_STATE(1611)] = 66977, - [SMALL_STATE(1612)] = 67028, - [SMALL_STATE(1613)] = 67087, - [SMALL_STATE(1614)] = 67146, - [SMALL_STATE(1615)] = 67197, - [SMALL_STATE(1616)] = 67256, - [SMALL_STATE(1617)] = 67307, - [SMALL_STATE(1618)] = 67366, - [SMALL_STATE(1619)] = 67417, - [SMALL_STATE(1620)] = 67468, - [SMALL_STATE(1621)] = 67519, - [SMALL_STATE(1622)] = 67578, - [SMALL_STATE(1623)] = 67641, - [SMALL_STATE(1624)] = 67700, - [SMALL_STATE(1625)] = 67759, - [SMALL_STATE(1626)] = 67818, - [SMALL_STATE(1627)] = 67877, - [SMALL_STATE(1628)] = 67936, - [SMALL_STATE(1629)] = 67995, - [SMALL_STATE(1630)] = 68054, - [SMALL_STATE(1631)] = 68105, - [SMALL_STATE(1632)] = 68164, - [SMALL_STATE(1633)] = 68215, - [SMALL_STATE(1634)] = 68274, - [SMALL_STATE(1635)] = 68333, - [SMALL_STATE(1636)] = 68392, - [SMALL_STATE(1637)] = 68443, - [SMALL_STATE(1638)] = 68494, - [SMALL_STATE(1639)] = 68553, - [SMALL_STATE(1640)] = 68616, - [SMALL_STATE(1641)] = 68666, - [SMALL_STATE(1642)] = 68716, - [SMALL_STATE(1643)] = 68764, - [SMALL_STATE(1644)] = 68812, - [SMALL_STATE(1645)] = 68862, - [SMALL_STATE(1646)] = 68912, - [SMALL_STATE(1647)] = 68962, - [SMALL_STATE(1648)] = 69018, - [SMALL_STATE(1649)] = 69066, - [SMALL_STATE(1650)] = 69114, - [SMALL_STATE(1651)] = 69164, - [SMALL_STATE(1652)] = 69214, - [SMALL_STATE(1653)] = 69264, - [SMALL_STATE(1654)] = 69314, - [SMALL_STATE(1655)] = 69364, - [SMALL_STATE(1656)] = 69414, - [SMALL_STATE(1657)] = 69464, - [SMALL_STATE(1658)] = 69514, - [SMALL_STATE(1659)] = 69564, - [SMALL_STATE(1660)] = 69620, - [SMALL_STATE(1661)] = 69670, - [SMALL_STATE(1662)] = 69720, - [SMALL_STATE(1663)] = 69770, - [SMALL_STATE(1664)] = 69820, - [SMALL_STATE(1665)] = 69870, - [SMALL_STATE(1666)] = 69926, - [SMALL_STATE(1667)] = 69976, - [SMALL_STATE(1668)] = 70026, - [SMALL_STATE(1669)] = 70076, - [SMALL_STATE(1670)] = 70126, - [SMALL_STATE(1671)] = 70176, - [SMALL_STATE(1672)] = 70224, - [SMALL_STATE(1673)] = 70274, - [SMALL_STATE(1674)] = 70324, - [SMALL_STATE(1675)] = 70380, - [SMALL_STATE(1676)] = 70430, - [SMALL_STATE(1677)] = 70486, - [SMALL_STATE(1678)] = 70536, - [SMALL_STATE(1679)] = 70586, - [SMALL_STATE(1680)] = 70636, - [SMALL_STATE(1681)] = 70686, - [SMALL_STATE(1682)] = 70736, - [SMALL_STATE(1683)] = 70786, - [SMALL_STATE(1684)] = 70842, - [SMALL_STATE(1685)] = 70892, - [SMALL_STATE(1686)] = 70942, - [SMALL_STATE(1687)] = 70992, - [SMALL_STATE(1688)] = 71048, - [SMALL_STATE(1689)] = 71098, - [SMALL_STATE(1690)] = 71148, - [SMALL_STATE(1691)] = 71198, - [SMALL_STATE(1692)] = 71246, - [SMALL_STATE(1693)] = 71296, - [SMALL_STATE(1694)] = 71346, - [SMALL_STATE(1695)] = 71400, - [SMALL_STATE(1696)] = 71450, - [SMALL_STATE(1697)] = 71500, - [SMALL_STATE(1698)] = 71548, - [SMALL_STATE(1699)] = 71596, - [SMALL_STATE(1700)] = 71650, - [SMALL_STATE(1701)] = 71698, - [SMALL_STATE(1702)] = 71750, - [SMALL_STATE(1703)] = 71804, - [SMALL_STATE(1704)] = 71858, - [SMALL_STATE(1705)] = 71905, - [SMALL_STATE(1706)] = 71950, - [SMALL_STATE(1707)] = 71995, - [SMALL_STATE(1708)] = 72042, - [SMALL_STATE(1709)] = 72089, - [SMALL_STATE(1710)] = 72134, - [SMALL_STATE(1711)] = 72181, - [SMALL_STATE(1712)] = 72226, - [SMALL_STATE(1713)] = 72271, - [SMALL_STATE(1714)] = 72316, - [SMALL_STATE(1715)] = 72365, - [SMALL_STATE(1716)] = 72410, - [SMALL_STATE(1717)] = 72459, - [SMALL_STATE(1718)] = 72504, - [SMALL_STATE(1719)] = 72549, - [SMALL_STATE(1720)] = 72604, - [SMALL_STATE(1721)] = 72649, - [SMALL_STATE(1722)] = 72696, - [SMALL_STATE(1723)] = 72741, - [SMALL_STATE(1724)] = 72786, - [SMALL_STATE(1725)] = 72831, - [SMALL_STATE(1726)] = 72876, - [SMALL_STATE(1727)] = 72921, - [SMALL_STATE(1728)] = 72966, - [SMALL_STATE(1729)] = 73011, - [SMALL_STATE(1730)] = 73056, - [SMALL_STATE(1731)] = 73101, - [SMALL_STATE(1732)] = 73146, - [SMALL_STATE(1733)] = 73193, - [SMALL_STATE(1734)] = 73248, - [SMALL_STATE(1735)] = 73293, - [SMALL_STATE(1736)] = 73338, - [SMALL_STATE(1737)] = 73383, - [SMALL_STATE(1738)] = 73428, - [SMALL_STATE(1739)] = 73473, - [SMALL_STATE(1740)] = 73520, - [SMALL_STATE(1741)] = 73567, - [SMALL_STATE(1742)] = 73614, - [SMALL_STATE(1743)] = 73661, - [SMALL_STATE(1744)] = 73708, - [SMALL_STATE(1745)] = 73755, - [SMALL_STATE(1746)] = 73800, - [SMALL_STATE(1747)] = 73855, - [SMALL_STATE(1748)] = 73900, - [SMALL_STATE(1749)] = 73949, - [SMALL_STATE(1750)] = 73996, - [SMALL_STATE(1751)] = 74041, - [SMALL_STATE(1752)] = 74090, - [SMALL_STATE(1753)] = 74137, - [SMALL_STATE(1754)] = 74182, - [SMALL_STATE(1755)] = 74236, - [SMALL_STATE(1756)] = 74282, - [SMALL_STATE(1757)] = 74326, - [SMALL_STATE(1758)] = 74380, - [SMALL_STATE(1759)] = 74426, - [SMALL_STATE(1760)] = 74470, - [SMALL_STATE(1761)] = 74524, - [SMALL_STATE(1762)] = 74568, - [SMALL_STATE(1763)] = 74622, - [SMALL_STATE(1764)] = 74668, - [SMALL_STATE(1765)] = 74714, - [SMALL_STATE(1766)] = 74758, - [SMALL_STATE(1767)] = 74804, - [SMALL_STATE(1768)] = 74848, - [SMALL_STATE(1769)] = 74892, - [SMALL_STATE(1770)] = 74936, - [SMALL_STATE(1771)] = 74980, - [SMALL_STATE(1772)] = 75024, - [SMALL_STATE(1773)] = 75070, - [SMALL_STATE(1774)] = 75116, - [SMALL_STATE(1775)] = 75170, - [SMALL_STATE(1776)] = 75222, - [SMALL_STATE(1777)] = 75268, - [SMALL_STATE(1778)] = 75312, - [SMALL_STATE(1779)] = 75358, - [SMALL_STATE(1780)] = 75404, - [SMALL_STATE(1781)] = 75450, - [SMALL_STATE(1782)] = 75496, - [SMALL_STATE(1783)] = 75540, - [SMALL_STATE(1784)] = 75584, - [SMALL_STATE(1785)] = 75628, - [SMALL_STATE(1786)] = 75672, - [SMALL_STATE(1787)] = 75718, - [SMALL_STATE(1788)] = 75772, - [SMALL_STATE(1789)] = 75818, - [SMALL_STATE(1790)] = 75863, - [SMALL_STATE(1791)] = 75906, - [SMALL_STATE(1792)] = 75949, - [SMALL_STATE(1793)] = 75992, - [SMALL_STATE(1794)] = 76035, - [SMALL_STATE(1795)] = 76078, - [SMALL_STATE(1796)] = 76123, - [SMALL_STATE(1797)] = 76166, - [SMALL_STATE(1798)] = 76209, - [SMALL_STATE(1799)] = 76252, - [SMALL_STATE(1800)] = 76295, - [SMALL_STATE(1801)] = 76338, - [SMALL_STATE(1802)] = 76381, - [SMALL_STATE(1803)] = 76424, - [SMALL_STATE(1804)] = 76467, - [SMALL_STATE(1805)] = 76510, - [SMALL_STATE(1806)] = 76553, - [SMALL_STATE(1807)] = 76596, - [SMALL_STATE(1808)] = 76639, - [SMALL_STATE(1809)] = 76682, - [SMALL_STATE(1810)] = 76725, - [SMALL_STATE(1811)] = 76768, - [SMALL_STATE(1812)] = 76811, - [SMALL_STATE(1813)] = 76854, - [SMALL_STATE(1814)] = 76897, - [SMALL_STATE(1815)] = 76940, - [SMALL_STATE(1816)] = 76983, - [SMALL_STATE(1817)] = 77028, - [SMALL_STATE(1818)] = 77071, - [SMALL_STATE(1819)] = 77114, - [SMALL_STATE(1820)] = 77157, - [SMALL_STATE(1821)] = 77200, - [SMALL_STATE(1822)] = 77245, - [SMALL_STATE(1823)] = 77288, - [SMALL_STATE(1824)] = 77330, - [SMALL_STATE(1825)] = 77374, - [SMALL_STATE(1826)] = 77416, - [SMALL_STATE(1827)] = 77458, - [SMALL_STATE(1828)] = 77502, - [SMALL_STATE(1829)] = 77544, - [SMALL_STATE(1830)] = 77586, - [SMALL_STATE(1831)] = 77628, - [SMALL_STATE(1832)] = 77670, - [SMALL_STATE(1833)] = 77712, - [SMALL_STATE(1834)] = 77754, - [SMALL_STATE(1835)] = 77796, - [SMALL_STATE(1836)] = 77838, - [SMALL_STATE(1837)] = 77880, - [SMALL_STATE(1838)] = 77922, - [SMALL_STATE(1839)] = 77964, - [SMALL_STATE(1840)] = 78006, - [SMALL_STATE(1841)] = 78048, - [SMALL_STATE(1842)] = 78090, - [SMALL_STATE(1843)] = 78132, - [SMALL_STATE(1844)] = 78173, - [SMALL_STATE(1845)] = 78214, - [SMALL_STATE(1846)] = 78248, - [SMALL_STATE(1847)] = 78282, - [SMALL_STATE(1848)] = 78316, - [SMALL_STATE(1849)] = 78338, - [SMALL_STATE(1850)] = 78360, - [SMALL_STATE(1851)] = 78382, - [SMALL_STATE(1852)] = 78404, - [SMALL_STATE(1853)] = 78426, - [SMALL_STATE(1854)] = 78448, - [SMALL_STATE(1855)] = 78470, - [SMALL_STATE(1856)] = 78492, - [SMALL_STATE(1857)] = 78514, - [SMALL_STATE(1858)] = 78536, - [SMALL_STATE(1859)] = 78558, - [SMALL_STATE(1860)] = 78580, - [SMALL_STATE(1861)] = 78602, - [SMALL_STATE(1862)] = 78624, - [SMALL_STATE(1863)] = 78646, - [SMALL_STATE(1864)] = 78668, - [SMALL_STATE(1865)] = 78690, - [SMALL_STATE(1866)] = 78712, - [SMALL_STATE(1867)] = 78734, - [SMALL_STATE(1868)] = 78756, - [SMALL_STATE(1869)] = 78778, - [SMALL_STATE(1870)] = 78800, - [SMALL_STATE(1871)] = 78822, - [SMALL_STATE(1872)] = 78844, - [SMALL_STATE(1873)] = 78866, - [SMALL_STATE(1874)] = 78888, - [SMALL_STATE(1875)] = 78914, - [SMALL_STATE(1876)] = 78936, - [SMALL_STATE(1877)] = 78958, - [SMALL_STATE(1878)] = 78980, - [SMALL_STATE(1879)] = 79002, - [SMALL_STATE(1880)] = 79024, - [SMALL_STATE(1881)] = 79046, - [SMALL_STATE(1882)] = 79068, - [SMALL_STATE(1883)] = 79090, - [SMALL_STATE(1884)] = 79112, - [SMALL_STATE(1885)] = 79134, - [SMALL_STATE(1886)] = 79156, - [SMALL_STATE(1887)] = 79178, - [SMALL_STATE(1888)] = 79211, - [SMALL_STATE(1889)] = 79244, - [SMALL_STATE(1890)] = 79277, - [SMALL_STATE(1891)] = 79310, - [SMALL_STATE(1892)] = 79343, - [SMALL_STATE(1893)] = 79376, - [SMALL_STATE(1894)] = 79409, - [SMALL_STATE(1895)] = 79442, - [SMALL_STATE(1896)] = 79475, - [SMALL_STATE(1897)] = 79508, - [SMALL_STATE(1898)] = 79541, - [SMALL_STATE(1899)] = 79574, - [SMALL_STATE(1900)] = 79590, - [SMALL_STATE(1901)] = 79620, - [SMALL_STATE(1902)] = 79636, - [SMALL_STATE(1903)] = 79664, - [SMALL_STATE(1904)] = 79692, - [SMALL_STATE(1905)] = 79722, - [SMALL_STATE(1906)] = 79738, - [SMALL_STATE(1907)] = 79754, - [SMALL_STATE(1908)] = 79780, - [SMALL_STATE(1909)] = 79802, - [SMALL_STATE(1910)] = 79830, - [SMALL_STATE(1911)] = 79846, - [SMALL_STATE(1912)] = 79876, - [SMALL_STATE(1913)] = 79892, - [SMALL_STATE(1914)] = 79922, - [SMALL_STATE(1915)] = 79950, - [SMALL_STATE(1916)] = 79978, - [SMALL_STATE(1917)] = 80000, - [SMALL_STATE(1918)] = 80016, - [SMALL_STATE(1919)] = 80032, - [SMALL_STATE(1920)] = 80060, - [SMALL_STATE(1921)] = 80076, - [SMALL_STATE(1922)] = 80092, - [SMALL_STATE(1923)] = 80108, - [SMALL_STATE(1924)] = 80130, - [SMALL_STATE(1925)] = 80146, - [SMALL_STATE(1926)] = 80162, - [SMALL_STATE(1927)] = 80178, - [SMALL_STATE(1928)] = 80197, - [SMALL_STATE(1929)] = 80216, - [SMALL_STATE(1930)] = 80235, - [SMALL_STATE(1931)] = 80254, - [SMALL_STATE(1932)] = 80281, - [SMALL_STATE(1933)] = 80300, - [SMALL_STATE(1934)] = 80319, - [SMALL_STATE(1935)] = 80338, - [SMALL_STATE(1936)] = 80357, - [SMALL_STATE(1937)] = 80376, - [SMALL_STATE(1938)] = 80395, - [SMALL_STATE(1939)] = 80414, - [SMALL_STATE(1940)] = 80433, - [SMALL_STATE(1941)] = 80452, - [SMALL_STATE(1942)] = 80471, - [SMALL_STATE(1943)] = 80490, - [SMALL_STATE(1944)] = 80509, - [SMALL_STATE(1945)] = 80528, - [SMALL_STATE(1946)] = 80547, - [SMALL_STATE(1947)] = 80566, - [SMALL_STATE(1948)] = 80593, - [SMALL_STATE(1949)] = 80612, - [SMALL_STATE(1950)] = 80631, - [SMALL_STATE(1951)] = 80650, - [SMALL_STATE(1952)] = 80669, - [SMALL_STATE(1953)] = 80688, - [SMALL_STATE(1954)] = 80707, - [SMALL_STATE(1955)] = 80726, - [SMALL_STATE(1956)] = 80745, - [SMALL_STATE(1957)] = 80764, - [SMALL_STATE(1958)] = 80783, - [SMALL_STATE(1959)] = 80802, - [SMALL_STATE(1960)] = 80821, - [SMALL_STATE(1961)] = 80848, - [SMALL_STATE(1962)] = 80867, - [SMALL_STATE(1963)] = 80886, - [SMALL_STATE(1964)] = 80905, - [SMALL_STATE(1965)] = 80924, - [SMALL_STATE(1966)] = 80943, - [SMALL_STATE(1967)] = 80962, - [SMALL_STATE(1968)] = 80981, - [SMALL_STATE(1969)] = 81000, - [SMALL_STATE(1970)] = 81019, - [SMALL_STATE(1971)] = 81038, - [SMALL_STATE(1972)] = 81057, - [SMALL_STATE(1973)] = 81076, - [SMALL_STATE(1974)] = 81095, - [SMALL_STATE(1975)] = 81114, - [SMALL_STATE(1976)] = 81133, - [SMALL_STATE(1977)] = 81152, - [SMALL_STATE(1978)] = 81171, - [SMALL_STATE(1979)] = 81190, - [SMALL_STATE(1980)] = 81209, - [SMALL_STATE(1981)] = 81228, - [SMALL_STATE(1982)] = 81247, - [SMALL_STATE(1983)] = 81266, - [SMALL_STATE(1984)] = 81285, - [SMALL_STATE(1985)] = 81304, - [SMALL_STATE(1986)] = 81323, - [SMALL_STATE(1987)] = 81350, - [SMALL_STATE(1988)] = 81373, - [SMALL_STATE(1989)] = 81392, - [SMALL_STATE(1990)] = 81411, - [SMALL_STATE(1991)] = 81430, - [SMALL_STATE(1992)] = 81449, - [SMALL_STATE(1993)] = 81468, - [SMALL_STATE(1994)] = 81487, - [SMALL_STATE(1995)] = 81506, - [SMALL_STATE(1996)] = 81525, - [SMALL_STATE(1997)] = 81544, - [SMALL_STATE(1998)] = 81563, - [SMALL_STATE(1999)] = 81590, - [SMALL_STATE(2000)] = 81609, - [SMALL_STATE(2001)] = 81628, - [SMALL_STATE(2002)] = 81647, - [SMALL_STATE(2003)] = 81666, - [SMALL_STATE(2004)] = 81693, - [SMALL_STATE(2005)] = 81712, - [SMALL_STATE(2006)] = 81731, - [SMALL_STATE(2007)] = 81750, - [SMALL_STATE(2008)] = 81769, - [SMALL_STATE(2009)] = 81788, - [SMALL_STATE(2010)] = 81807, - [SMALL_STATE(2011)] = 81826, - [SMALL_STATE(2012)] = 81849, - [SMALL_STATE(2013)] = 81868, - [SMALL_STATE(2014)] = 81887, - [SMALL_STATE(2015)] = 81906, - [SMALL_STATE(2016)] = 81925, - [SMALL_STATE(2017)] = 81944, - [SMALL_STATE(2018)] = 81963, - [SMALL_STATE(2019)] = 81982, - [SMALL_STATE(2020)] = 82001, - [SMALL_STATE(2021)] = 82020, - [SMALL_STATE(2022)] = 82039, - [SMALL_STATE(2023)] = 82058, - [SMALL_STATE(2024)] = 82076, - [SMALL_STATE(2025)] = 82094, - [SMALL_STATE(2026)] = 82112, - [SMALL_STATE(2027)] = 82133, - [SMALL_STATE(2028)] = 82154, - [SMALL_STATE(2029)] = 82175, - [SMALL_STATE(2030)] = 82196, - [SMALL_STATE(2031)] = 82217, - [SMALL_STATE(2032)] = 82234, - [SMALL_STATE(2033)] = 82259, - [SMALL_STATE(2034)] = 82280, - [SMALL_STATE(2035)] = 82301, - [SMALL_STATE(2036)] = 82322, - [SMALL_STATE(2037)] = 82347, - [SMALL_STATE(2038)] = 82368, - [SMALL_STATE(2039)] = 82389, - [SMALL_STATE(2040)] = 82410, - [SMALL_STATE(2041)] = 82431, - [SMALL_STATE(2042)] = 82452, - [SMALL_STATE(2043)] = 82477, - [SMALL_STATE(2044)] = 82498, - [SMALL_STATE(2045)] = 82519, - [SMALL_STATE(2046)] = 82540, - [SMALL_STATE(2047)] = 82561, - [SMALL_STATE(2048)] = 82582, - [SMALL_STATE(2049)] = 82603, - [SMALL_STATE(2050)] = 82628, - [SMALL_STATE(2051)] = 82653, - [SMALL_STATE(2052)] = 82674, - [SMALL_STATE(2053)] = 82695, - [SMALL_STATE(2054)] = 82716, - [SMALL_STATE(2055)] = 82737, - [SMALL_STATE(2056)] = 82762, - [SMALL_STATE(2057)] = 82787, - [SMALL_STATE(2058)] = 82808, - [SMALL_STATE(2059)] = 82829, - [SMALL_STATE(2060)] = 82850, - [SMALL_STATE(2061)] = 82871, - [SMALL_STATE(2062)] = 82892, - [SMALL_STATE(2063)] = 82913, - [SMALL_STATE(2064)] = 82938, - [SMALL_STATE(2065)] = 82959, - [SMALL_STATE(2066)] = 82980, - [SMALL_STATE(2067)] = 83001, - [SMALL_STATE(2068)] = 83022, - [SMALL_STATE(2069)] = 83047, - [SMALL_STATE(2070)] = 83068, - [SMALL_STATE(2071)] = 83089, - [SMALL_STATE(2072)] = 83110, - [SMALL_STATE(2073)] = 83131, - [SMALL_STATE(2074)] = 83152, - [SMALL_STATE(2075)] = 83173, - [SMALL_STATE(2076)] = 83198, - [SMALL_STATE(2077)] = 83219, - [SMALL_STATE(2078)] = 83240, - [SMALL_STATE(2079)] = 83261, - [SMALL_STATE(2080)] = 83282, - [SMALL_STATE(2081)] = 83303, - [SMALL_STATE(2082)] = 83324, - [SMALL_STATE(2083)] = 83345, - [SMALL_STATE(2084)] = 83366, - [SMALL_STATE(2085)] = 83387, - [SMALL_STATE(2086)] = 83408, - [SMALL_STATE(2087)] = 83429, - [SMALL_STATE(2088)] = 83450, - [SMALL_STATE(2089)] = 83471, - [SMALL_STATE(2090)] = 83492, - [SMALL_STATE(2091)] = 83513, - [SMALL_STATE(2092)] = 83534, - [SMALL_STATE(2093)] = 83555, - [SMALL_STATE(2094)] = 83576, - [SMALL_STATE(2095)] = 83597, - [SMALL_STATE(2096)] = 83618, - [SMALL_STATE(2097)] = 83639, - [SMALL_STATE(2098)] = 83660, - [SMALL_STATE(2099)] = 83677, - [SMALL_STATE(2100)] = 83698, - [SMALL_STATE(2101)] = 83719, - [SMALL_STATE(2102)] = 83740, - [SMALL_STATE(2103)] = 83761, - [SMALL_STATE(2104)] = 83782, - [SMALL_STATE(2105)] = 83803, - [SMALL_STATE(2106)] = 83824, - [SMALL_STATE(2107)] = 83845, - [SMALL_STATE(2108)] = 83862, - [SMALL_STATE(2109)] = 83884, - [SMALL_STATE(2110)] = 83900, - [SMALL_STATE(2111)] = 83922, - [SMALL_STATE(2112)] = 83944, - [SMALL_STATE(2113)] = 83966, - [SMALL_STATE(2114)] = 83988, - [SMALL_STATE(2115)] = 84010, - [SMALL_STATE(2116)] = 84032, - [SMALL_STATE(2117)] = 84054, - [SMALL_STATE(2118)] = 84068, - [SMALL_STATE(2119)] = 84090, - [SMALL_STATE(2120)] = 84112, - [SMALL_STATE(2121)] = 84126, - [SMALL_STATE(2122)] = 84137, - [SMALL_STATE(2123)] = 84148, - [SMALL_STATE(2124)] = 84159, - [SMALL_STATE(2125)] = 84170, - [SMALL_STATE(2126)] = 84181, - [SMALL_STATE(2127)] = 84192, - [SMALL_STATE(2128)] = 84203, - [SMALL_STATE(2129)] = 84216, - [SMALL_STATE(2130)] = 84227, - [SMALL_STATE(2131)] = 84238, - [SMALL_STATE(2132)] = 84253, - [SMALL_STATE(2133)] = 84268, - [SMALL_STATE(2134)] = 84281, - [SMALL_STATE(2135)] = 84292, - [SMALL_STATE(2136)] = 84303, - [SMALL_STATE(2137)] = 84316, - [SMALL_STATE(2138)] = 84327, - [SMALL_STATE(2139)] = 84338, - [SMALL_STATE(2140)] = 84349, - [SMALL_STATE(2141)] = 84360, - [SMALL_STATE(2142)] = 84371, - [SMALL_STATE(2143)] = 84384, - [SMALL_STATE(2144)] = 84395, - [SMALL_STATE(2145)] = 84411, - [SMALL_STATE(2146)] = 84427, - [SMALL_STATE(2147)] = 84443, - [SMALL_STATE(2148)] = 84459, - [SMALL_STATE(2149)] = 84469, - [SMALL_STATE(2150)] = 84485, - [SMALL_STATE(2151)] = 84501, - [SMALL_STATE(2152)] = 84513, - [SMALL_STATE(2153)] = 84525, - [SMALL_STATE(2154)] = 84541, - [SMALL_STATE(2155)] = 84551, - [SMALL_STATE(2156)] = 84567, - [SMALL_STATE(2157)] = 84577, - [SMALL_STATE(2158)] = 84593, - [SMALL_STATE(2159)] = 84603, - [SMALL_STATE(2160)] = 84619, - [SMALL_STATE(2161)] = 84635, - [SMALL_STATE(2162)] = 84651, - [SMALL_STATE(2163)] = 84667, - [SMALL_STATE(2164)] = 84683, - [SMALL_STATE(2165)] = 84699, - [SMALL_STATE(2166)] = 84711, - [SMALL_STATE(2167)] = 84723, - [SMALL_STATE(2168)] = 84733, - [SMALL_STATE(2169)] = 84749, - [SMALL_STATE(2170)] = 84765, - [SMALL_STATE(2171)] = 84781, - [SMALL_STATE(2172)] = 84793, - [SMALL_STATE(2173)] = 84805, - [SMALL_STATE(2174)] = 84821, - [SMALL_STATE(2175)] = 84837, - [SMALL_STATE(2176)] = 84853, - [SMALL_STATE(2177)] = 84865, - [SMALL_STATE(2178)] = 84877, - [SMALL_STATE(2179)] = 84889, - [SMALL_STATE(2180)] = 84905, - [SMALL_STATE(2181)] = 84917, - [SMALL_STATE(2182)] = 84925, - [SMALL_STATE(2183)] = 84938, - [SMALL_STATE(2184)] = 84947, - [SMALL_STATE(2185)] = 84960, - [SMALL_STATE(2186)] = 84973, - [SMALL_STATE(2187)] = 84986, - [SMALL_STATE(2188)] = 84999, - [SMALL_STATE(2189)] = 85008, - [SMALL_STATE(2190)] = 85017, - [SMALL_STATE(2191)] = 85030, - [SMALL_STATE(2192)] = 85043, - [SMALL_STATE(2193)] = 85056, - [SMALL_STATE(2194)] = 85069, - [SMALL_STATE(2195)] = 85082, - [SMALL_STATE(2196)] = 85095, - [SMALL_STATE(2197)] = 85108, - [SMALL_STATE(2198)] = 85121, - [SMALL_STATE(2199)] = 85130, - [SMALL_STATE(2200)] = 85143, - [SMALL_STATE(2201)] = 85153, - [SMALL_STATE(2202)] = 85163, - [SMALL_STATE(2203)] = 85173, - [SMALL_STATE(2204)] = 85183, - [SMALL_STATE(2205)] = 85193, - [SMALL_STATE(2206)] = 85203, - [SMALL_STATE(2207)] = 85213, - [SMALL_STATE(2208)] = 85223, - [SMALL_STATE(2209)] = 85233, - [SMALL_STATE(2210)] = 85243, - [SMALL_STATE(2211)] = 85253, - [SMALL_STATE(2212)] = 85263, - [SMALL_STATE(2213)] = 85271, - [SMALL_STATE(2214)] = 85281, - [SMALL_STATE(2215)] = 85291, - [SMALL_STATE(2216)] = 85301, - [SMALL_STATE(2217)] = 85311, - [SMALL_STATE(2218)] = 85321, - [SMALL_STATE(2219)] = 85331, - [SMALL_STATE(2220)] = 85341, - [SMALL_STATE(2221)] = 85351, - [SMALL_STATE(2222)] = 85361, - [SMALL_STATE(2223)] = 85371, - [SMALL_STATE(2224)] = 85381, - [SMALL_STATE(2225)] = 85391, - [SMALL_STATE(2226)] = 85398, - [SMALL_STATE(2227)] = 85405, - [SMALL_STATE(2228)] = 85412, - [SMALL_STATE(2229)] = 85419, - [SMALL_STATE(2230)] = 85426, - [SMALL_STATE(2231)] = 85433, - [SMALL_STATE(2232)] = 85440, - [SMALL_STATE(2233)] = 85447, - [SMALL_STATE(2234)] = 85454, - [SMALL_STATE(2235)] = 85461, - [SMALL_STATE(2236)] = 85468, - [SMALL_STATE(2237)] = 85475, - [SMALL_STATE(2238)] = 85482, - [SMALL_STATE(2239)] = 85489, - [SMALL_STATE(2240)] = 85496, - [SMALL_STATE(2241)] = 85503, - [SMALL_STATE(2242)] = 85510, - [SMALL_STATE(2243)] = 85517, - [SMALL_STATE(2244)] = 85524, - [SMALL_STATE(2245)] = 85531, - [SMALL_STATE(2246)] = 85538, - [SMALL_STATE(2247)] = 85545, - [SMALL_STATE(2248)] = 85552, - [SMALL_STATE(2249)] = 85559, - [SMALL_STATE(2250)] = 85566, - [SMALL_STATE(2251)] = 85573, - [SMALL_STATE(2252)] = 85580, - [SMALL_STATE(2253)] = 85587, - [SMALL_STATE(2254)] = 85594, - [SMALL_STATE(2255)] = 85601, - [SMALL_STATE(2256)] = 85608, - [SMALL_STATE(2257)] = 85615, - [SMALL_STATE(2258)] = 85622, - [SMALL_STATE(2259)] = 85629, - [SMALL_STATE(2260)] = 85636, - [SMALL_STATE(2261)] = 85643, - [SMALL_STATE(2262)] = 85650, - [SMALL_STATE(2263)] = 85657, - [SMALL_STATE(2264)] = 85664, - [SMALL_STATE(2265)] = 85671, - [SMALL_STATE(2266)] = 85678, - [SMALL_STATE(2267)] = 85685, - [SMALL_STATE(2268)] = 85692, - [SMALL_STATE(2269)] = 85699, - [SMALL_STATE(2270)] = 85706, - [SMALL_STATE(2271)] = 85713, - [SMALL_STATE(2272)] = 85720, - [SMALL_STATE(2273)] = 85727, - [SMALL_STATE(2274)] = 85734, - [SMALL_STATE(2275)] = 85741, - [SMALL_STATE(2276)] = 85748, - [SMALL_STATE(2277)] = 85755, - [SMALL_STATE(2278)] = 85762, - [SMALL_STATE(2279)] = 85769, - [SMALL_STATE(2280)] = 85776, - [SMALL_STATE(2281)] = 85783, - [SMALL_STATE(2282)] = 85790, - [SMALL_STATE(2283)] = 85797, - [SMALL_STATE(2284)] = 85804, - [SMALL_STATE(2285)] = 85811, - [SMALL_STATE(2286)] = 85818, - [SMALL_STATE(2287)] = 85825, - [SMALL_STATE(2288)] = 85832, - [SMALL_STATE(2289)] = 85839, - [SMALL_STATE(2290)] = 85846, - [SMALL_STATE(2291)] = 85853, - [SMALL_STATE(2292)] = 85860, - [SMALL_STATE(2293)] = 85867, - [SMALL_STATE(2294)] = 85874, - [SMALL_STATE(2295)] = 85881, - [SMALL_STATE(2296)] = 85888, - [SMALL_STATE(2297)] = 85895, - [SMALL_STATE(2298)] = 85902, - [SMALL_STATE(2299)] = 85909, - [SMALL_STATE(2300)] = 85916, - [SMALL_STATE(2301)] = 85923, - [SMALL_STATE(2302)] = 85930, - [SMALL_STATE(2303)] = 85937, - [SMALL_STATE(2304)] = 85944, - [SMALL_STATE(2305)] = 85951, - [SMALL_STATE(2306)] = 85958, - [SMALL_STATE(2307)] = 85965, - [SMALL_STATE(2308)] = 85972, - [SMALL_STATE(2309)] = 85979, - [SMALL_STATE(2310)] = 85986, - [SMALL_STATE(2311)] = 85993, - [SMALL_STATE(2312)] = 86000, - [SMALL_STATE(2313)] = 86007, - [SMALL_STATE(2314)] = 86014, - [SMALL_STATE(2315)] = 86021, - [SMALL_STATE(2316)] = 86028, - [SMALL_STATE(2317)] = 86035, - [SMALL_STATE(2318)] = 86042, - [SMALL_STATE(2319)] = 86049, - [SMALL_STATE(2320)] = 86056, - [SMALL_STATE(2321)] = 86063, - [SMALL_STATE(2322)] = 86070, - [SMALL_STATE(2323)] = 86077, - [SMALL_STATE(2324)] = 86084, - [SMALL_STATE(2325)] = 86091, - [SMALL_STATE(2326)] = 86098, - [SMALL_STATE(2327)] = 86105, - [SMALL_STATE(2328)] = 86112, - [SMALL_STATE(2329)] = 86119, - [SMALL_STATE(2330)] = 86126, - [SMALL_STATE(2331)] = 86133, - [SMALL_STATE(2332)] = 86140, - [SMALL_STATE(2333)] = 86147, - [SMALL_STATE(2334)] = 86154, - [SMALL_STATE(2335)] = 86161, - [SMALL_STATE(2336)] = 86168, - [SMALL_STATE(2337)] = 86175, - [SMALL_STATE(2338)] = 86182, - [SMALL_STATE(2339)] = 86189, - [SMALL_STATE(2340)] = 86196, - [SMALL_STATE(2341)] = 86203, - [SMALL_STATE(2342)] = 86210, - [SMALL_STATE(2343)] = 86217, - [SMALL_STATE(2344)] = 86224, - [SMALL_STATE(2345)] = 86231, - [SMALL_STATE(2346)] = 86238, - [SMALL_STATE(2347)] = 86245, - [SMALL_STATE(2348)] = 86252, - [SMALL_STATE(2349)] = 86259, - [SMALL_STATE(2350)] = 86266, - [SMALL_STATE(2351)] = 86273, - [SMALL_STATE(2352)] = 86280, - [SMALL_STATE(2353)] = 86285, - [SMALL_STATE(2354)] = 86292, - [SMALL_STATE(2355)] = 86299, - [SMALL_STATE(2356)] = 86306, - [SMALL_STATE(2357)] = 86313, - [SMALL_STATE(2358)] = 86320, - [SMALL_STATE(2359)] = 86327, - [SMALL_STATE(2360)] = 86334, - [SMALL_STATE(2361)] = 86341, - [SMALL_STATE(2362)] = 86348, - [SMALL_STATE(2363)] = 86355, - [SMALL_STATE(2364)] = 86362, - [SMALL_STATE(2365)] = 86369, - [SMALL_STATE(2366)] = 86376, - [SMALL_STATE(2367)] = 86383, - [SMALL_STATE(2368)] = 86390, - [SMALL_STATE(2369)] = 86397, - [SMALL_STATE(2370)] = 86404, - [SMALL_STATE(2371)] = 86411, - [SMALL_STATE(2372)] = 86418, - [SMALL_STATE(2373)] = 86425, - [SMALL_STATE(2374)] = 86432, - [SMALL_STATE(2375)] = 86439, - [SMALL_STATE(2376)] = 86446, - [SMALL_STATE(2377)] = 86453, - [SMALL_STATE(2378)] = 86460, - [SMALL_STATE(2379)] = 86467, - [SMALL_STATE(2380)] = 86474, - [SMALL_STATE(2381)] = 86481, - [SMALL_STATE(2382)] = 86488, - [SMALL_STATE(2383)] = 86495, - [SMALL_STATE(2384)] = 86502, - [SMALL_STATE(2385)] = 86509, - [SMALL_STATE(2386)] = 86516, - [SMALL_STATE(2387)] = 86523, - [SMALL_STATE(2388)] = 86530, - [SMALL_STATE(2389)] = 86537, - [SMALL_STATE(2390)] = 86544, - [SMALL_STATE(2391)] = 86551, - [SMALL_STATE(2392)] = 86558, - [SMALL_STATE(2393)] = 86565, - [SMALL_STATE(2394)] = 86572, - [SMALL_STATE(2395)] = 86579, - [SMALL_STATE(2396)] = 86586, - [SMALL_STATE(2397)] = 86593, - [SMALL_STATE(2398)] = 86600, - [SMALL_STATE(2399)] = 86607, - [SMALL_STATE(2400)] = 86614, - [SMALL_STATE(2401)] = 86621, - [SMALL_STATE(2402)] = 86628, - [SMALL_STATE(2403)] = 86635, - [SMALL_STATE(2404)] = 86642, - [SMALL_STATE(2405)] = 86649, - [SMALL_STATE(2406)] = 86656, - [SMALL_STATE(2407)] = 86663, - [SMALL_STATE(2408)] = 86670, - [SMALL_STATE(2409)] = 86677, - [SMALL_STATE(2410)] = 86684, - [SMALL_STATE(2411)] = 86691, - [SMALL_STATE(2412)] = 86695, - [SMALL_STATE(2413)] = 86699, - [SMALL_STATE(2414)] = 86703, - [SMALL_STATE(2415)] = 86707, - [SMALL_STATE(2416)] = 86711, - [SMALL_STATE(2417)] = 86715, - [SMALL_STATE(2418)] = 86719, - [SMALL_STATE(2419)] = 86723, - [SMALL_STATE(2420)] = 86727, - [SMALL_STATE(2421)] = 86731, - [SMALL_STATE(2422)] = 86735, - [SMALL_STATE(2423)] = 86739, - [SMALL_STATE(2424)] = 86743, - [SMALL_STATE(2425)] = 86747, - [SMALL_STATE(2426)] = 86751, - [SMALL_STATE(2427)] = 86755, - [SMALL_STATE(2428)] = 86759, - [SMALL_STATE(2429)] = 86763, - [SMALL_STATE(2430)] = 86767, - [SMALL_STATE(2431)] = 86771, - [SMALL_STATE(2432)] = 86775, - [SMALL_STATE(2433)] = 86779, - [SMALL_STATE(2434)] = 86783, - [SMALL_STATE(2435)] = 86787, - [SMALL_STATE(2436)] = 86791, - [SMALL_STATE(2437)] = 86795, - [SMALL_STATE(2438)] = 86799, - [SMALL_STATE(2439)] = 86803, - [SMALL_STATE(2440)] = 86807, - [SMALL_STATE(2441)] = 86811, - [SMALL_STATE(2442)] = 86815, - [SMALL_STATE(2443)] = 86819, - [SMALL_STATE(2444)] = 86823, - [SMALL_STATE(2445)] = 86827, - [SMALL_STATE(2446)] = 86831, - [SMALL_STATE(2447)] = 86835, - [SMALL_STATE(2448)] = 86839, - [SMALL_STATE(2449)] = 86843, - [SMALL_STATE(2450)] = 86847, - [SMALL_STATE(2451)] = 86851, - [SMALL_STATE(2452)] = 86855, - [SMALL_STATE(2453)] = 86859, - [SMALL_STATE(2454)] = 86863, - [SMALL_STATE(2455)] = 86867, - [SMALL_STATE(2456)] = 86871, - [SMALL_STATE(2457)] = 86875, - [SMALL_STATE(2458)] = 86879, - [SMALL_STATE(2459)] = 86883, - [SMALL_STATE(2460)] = 86887, - [SMALL_STATE(2461)] = 86891, - [SMALL_STATE(2462)] = 86895, - [SMALL_STATE(2463)] = 86899, - [SMALL_STATE(2464)] = 86903, - [SMALL_STATE(2465)] = 86907, - [SMALL_STATE(2466)] = 86911, - [SMALL_STATE(2467)] = 86915, - [SMALL_STATE(2468)] = 86919, - [SMALL_STATE(2469)] = 86923, - [SMALL_STATE(2470)] = 86927, - [SMALL_STATE(2471)] = 86931, - [SMALL_STATE(2472)] = 86935, - [SMALL_STATE(2473)] = 86939, - [SMALL_STATE(2474)] = 86943, - [SMALL_STATE(2475)] = 86947, - [SMALL_STATE(2476)] = 86951, - [SMALL_STATE(2477)] = 86955, - [SMALL_STATE(2478)] = 86959, - [SMALL_STATE(2479)] = 86963, - [SMALL_STATE(2480)] = 86967, - [SMALL_STATE(2481)] = 86971, - [SMALL_STATE(2482)] = 86975, - [SMALL_STATE(2483)] = 86979, - [SMALL_STATE(2484)] = 86983, - [SMALL_STATE(2485)] = 86987, - [SMALL_STATE(2486)] = 86991, - [SMALL_STATE(2487)] = 86995, - [SMALL_STATE(2488)] = 86999, - [SMALL_STATE(2489)] = 87003, - [SMALL_STATE(2490)] = 87007, - [SMALL_STATE(2491)] = 87011, - [SMALL_STATE(2492)] = 87015, - [SMALL_STATE(2493)] = 87019, - [SMALL_STATE(2494)] = 87023, - [SMALL_STATE(2495)] = 87027, - [SMALL_STATE(2496)] = 87031, - [SMALL_STATE(2497)] = 87035, - [SMALL_STATE(2498)] = 87039, - [SMALL_STATE(2499)] = 87043, - [SMALL_STATE(2500)] = 87047, - [SMALL_STATE(2501)] = 87051, - [SMALL_STATE(2502)] = 87055, - [SMALL_STATE(2503)] = 87059, - [SMALL_STATE(2504)] = 87063, - [SMALL_STATE(2505)] = 87067, - [SMALL_STATE(2506)] = 87071, - [SMALL_STATE(2507)] = 87075, - [SMALL_STATE(2508)] = 87079, - [SMALL_STATE(2509)] = 87083, - [SMALL_STATE(2510)] = 87087, - [SMALL_STATE(2511)] = 87091, - [SMALL_STATE(2512)] = 87095, - [SMALL_STATE(2513)] = 87099, - [SMALL_STATE(2514)] = 87103, - [SMALL_STATE(2515)] = 87107, - [SMALL_STATE(2516)] = 87111, - [SMALL_STATE(2517)] = 87115, - [SMALL_STATE(2518)] = 87119, - [SMALL_STATE(2519)] = 87123, - [SMALL_STATE(2520)] = 87127, - [SMALL_STATE(2521)] = 87131, - [SMALL_STATE(2522)] = 87135, - [SMALL_STATE(2523)] = 87139, - [SMALL_STATE(2524)] = 87143, - [SMALL_STATE(2525)] = 87147, - [SMALL_STATE(2526)] = 87151, - [SMALL_STATE(2527)] = 87155, - [SMALL_STATE(2528)] = 87159, - [SMALL_STATE(2529)] = 87163, - [SMALL_STATE(2530)] = 87167, - [SMALL_STATE(2531)] = 87171, - [SMALL_STATE(2532)] = 87175, - [SMALL_STATE(2533)] = 87179, - [SMALL_STATE(2534)] = 87183, - [SMALL_STATE(2535)] = 87187, - [SMALL_STATE(2536)] = 87191, - [SMALL_STATE(2537)] = 87195, - [SMALL_STATE(2538)] = 87199, - [SMALL_STATE(2539)] = 87203, - [SMALL_STATE(2540)] = 87207, - [SMALL_STATE(2541)] = 87211, - [SMALL_STATE(2542)] = 87215, - [SMALL_STATE(2543)] = 87219, - [SMALL_STATE(2544)] = 87223, - [SMALL_STATE(2545)] = 87227, - [SMALL_STATE(2546)] = 87231, - [SMALL_STATE(2547)] = 87235, - [SMALL_STATE(2548)] = 87239, - [SMALL_STATE(2549)] = 87243, - [SMALL_STATE(2550)] = 87247, - [SMALL_STATE(2551)] = 87251, - [SMALL_STATE(2552)] = 87255, - [SMALL_STATE(2553)] = 87259, - [SMALL_STATE(2554)] = 87263, - [SMALL_STATE(2555)] = 87267, - [SMALL_STATE(2556)] = 87271, - [SMALL_STATE(2557)] = 87275, - [SMALL_STATE(2558)] = 87279, - [SMALL_STATE(2559)] = 87283, - [SMALL_STATE(2560)] = 87287, - [SMALL_STATE(2561)] = 87291, - [SMALL_STATE(2562)] = 87295, - [SMALL_STATE(2563)] = 87299, - [SMALL_STATE(2564)] = 87303, - [SMALL_STATE(2565)] = 87307, - [SMALL_STATE(2566)] = 87311, - [SMALL_STATE(2567)] = 87315, - [SMALL_STATE(2568)] = 87319, - [SMALL_STATE(2569)] = 87323, - [SMALL_STATE(2570)] = 87327, - [SMALL_STATE(2571)] = 87331, - [SMALL_STATE(2572)] = 87335, - [SMALL_STATE(2573)] = 87339, - [SMALL_STATE(2574)] = 87343, - [SMALL_STATE(2575)] = 87347, - [SMALL_STATE(2576)] = 87351, - [SMALL_STATE(2577)] = 87355, - [SMALL_STATE(2578)] = 87359, - [SMALL_STATE(2579)] = 87363, - [SMALL_STATE(2580)] = 87367, - [SMALL_STATE(2581)] = 87371, - [SMALL_STATE(2582)] = 87375, - [SMALL_STATE(2583)] = 87379, - [SMALL_STATE(2584)] = 87383, - [SMALL_STATE(2585)] = 87387, - [SMALL_STATE(2586)] = 87391, - [SMALL_STATE(2587)] = 87395, - [SMALL_STATE(2588)] = 87399, - [SMALL_STATE(2589)] = 87403, - [SMALL_STATE(2590)] = 87407, - [SMALL_STATE(2591)] = 87411, - [SMALL_STATE(2592)] = 87415, - [SMALL_STATE(2593)] = 87419, - [SMALL_STATE(2594)] = 87423, - [SMALL_STATE(2595)] = 87427, - [SMALL_STATE(2596)] = 87431, - [SMALL_STATE(2597)] = 87435, - [SMALL_STATE(2598)] = 87439, - [SMALL_STATE(2599)] = 87443, - [SMALL_STATE(2600)] = 87447, - [SMALL_STATE(2601)] = 87451, - [SMALL_STATE(2602)] = 87455, - [SMALL_STATE(2603)] = 87459, - [SMALL_STATE(2604)] = 87463, - [SMALL_STATE(2605)] = 87467, - [SMALL_STATE(2606)] = 87471, - [SMALL_STATE(2607)] = 87475, - [SMALL_STATE(2608)] = 87479, - [SMALL_STATE(2609)] = 87483, - [SMALL_STATE(2610)] = 87487, - [SMALL_STATE(2611)] = 87491, - [SMALL_STATE(2612)] = 87495, - [SMALL_STATE(2613)] = 87499, - [SMALL_STATE(2614)] = 87503, - [SMALL_STATE(2615)] = 87507, - [SMALL_STATE(2616)] = 87511, - [SMALL_STATE(2617)] = 87515, - [SMALL_STATE(2618)] = 87519, - [SMALL_STATE(2619)] = 87523, - [SMALL_STATE(2620)] = 87527, - [SMALL_STATE(2621)] = 87531, - [SMALL_STATE(2622)] = 87535, - [SMALL_STATE(2623)] = 87539, - [SMALL_STATE(2624)] = 87543, - [SMALL_STATE(2625)] = 87547, - [SMALL_STATE(2626)] = 87551, - [SMALL_STATE(2627)] = 87555, - [SMALL_STATE(2628)] = 87559, - [SMALL_STATE(2629)] = 87563, - [SMALL_STATE(2630)] = 87567, - [SMALL_STATE(2631)] = 87571, - [SMALL_STATE(2632)] = 87575, - [SMALL_STATE(2633)] = 87579, - [SMALL_STATE(2634)] = 87583, - [SMALL_STATE(2635)] = 87587, - [SMALL_STATE(2636)] = 87591, - [SMALL_STATE(2637)] = 87595, - [SMALL_STATE(2638)] = 87599, - [SMALL_STATE(2639)] = 87603, - [SMALL_STATE(2640)] = 87607, - [SMALL_STATE(2641)] = 87611, - [SMALL_STATE(2642)] = 87615, - [SMALL_STATE(2643)] = 87619, - [SMALL_STATE(2644)] = 87623, - [SMALL_STATE(2645)] = 87627, - [SMALL_STATE(2646)] = 87631, - [SMALL_STATE(2647)] = 87635, - [SMALL_STATE(2648)] = 87639, - [SMALL_STATE(2649)] = 87643, - [SMALL_STATE(2650)] = 87647, - [SMALL_STATE(2651)] = 87651, - [SMALL_STATE(2652)] = 87655, - [SMALL_STATE(2653)] = 87659, - [SMALL_STATE(2654)] = 87663, - [SMALL_STATE(2655)] = 87667, - [SMALL_STATE(2656)] = 87671, - [SMALL_STATE(2657)] = 87675, + [SMALL_STATE(870)] = 22663, + [SMALL_STATE(871)] = 22717, + [SMALL_STATE(872)] = 22771, + [SMALL_STATE(873)] = 22837, + [SMALL_STATE(874)] = 22891, + [SMALL_STATE(875)] = 22945, + [SMALL_STATE(876)] = 23001, + [SMALL_STATE(877)] = 23055, + [SMALL_STATE(878)] = 23109, + [SMALL_STATE(879)] = 23163, + [SMALL_STATE(880)] = 23217, + [SMALL_STATE(881)] = 23271, + [SMALL_STATE(882)] = 23325, + [SMALL_STATE(883)] = 23379, + [SMALL_STATE(884)] = 23433, + [SMALL_STATE(885)] = 23491, + [SMALL_STATE(886)] = 23557, + [SMALL_STATE(887)] = 23635, + [SMALL_STATE(888)] = 23711, + [SMALL_STATE(889)] = 23787, + [SMALL_STATE(890)] = 23865, + [SMALL_STATE(891)] = 23943, + [SMALL_STATE(892)] = 24019, + [SMALL_STATE(893)] = 24095, + [SMALL_STATE(894)] = 24149, + [SMALL_STATE(895)] = 24203, + [SMALL_STATE(896)] = 24281, + [SMALL_STATE(897)] = 24335, + [SMALL_STATE(898)] = 24389, + [SMALL_STATE(899)] = 24443, + [SMALL_STATE(900)] = 24497, + [SMALL_STATE(901)] = 24551, + [SMALL_STATE(902)] = 24605, + [SMALL_STATE(903)] = 24671, + [SMALL_STATE(904)] = 24725, + [SMALL_STATE(905)] = 24779, + [SMALL_STATE(906)] = 24833, + [SMALL_STATE(907)] = 24911, + [SMALL_STATE(908)] = 24987, + [SMALL_STATE(909)] = 25041, + [SMALL_STATE(910)] = 25095, + [SMALL_STATE(911)] = 25149, + [SMALL_STATE(912)] = 25227, + [SMALL_STATE(913)] = 25303, + [SMALL_STATE(914)] = 25379, + [SMALL_STATE(915)] = 25433, + [SMALL_STATE(916)] = 25491, + [SMALL_STATE(917)] = 25545, + [SMALL_STATE(918)] = 25599, + [SMALL_STATE(919)] = 25653, + [SMALL_STATE(920)] = 25707, + [SMALL_STATE(921)] = 25761, + [SMALL_STATE(922)] = 25815, + [SMALL_STATE(923)] = 25869, + [SMALL_STATE(924)] = 25923, + [SMALL_STATE(925)] = 25977, + [SMALL_STATE(926)] = 26055, + [SMALL_STATE(927)] = 26133, + [SMALL_STATE(928)] = 26211, + [SMALL_STATE(929)] = 26267, + [SMALL_STATE(930)] = 26321, + [SMALL_STATE(931)] = 26375, + [SMALL_STATE(932)] = 26433, + [SMALL_STATE(933)] = 26489, + [SMALL_STATE(934)] = 26543, + [SMALL_STATE(935)] = 26619, + [SMALL_STATE(936)] = 26673, + [SMALL_STATE(937)] = 26727, + [SMALL_STATE(938)] = 26781, + [SMALL_STATE(939)] = 26835, + [SMALL_STATE(940)] = 26911, + [SMALL_STATE(941)] = 26987, + [SMALL_STATE(942)] = 27043, + [SMALL_STATE(943)] = 27131, + [SMALL_STATE(944)] = 27209, + [SMALL_STATE(945)] = 27263, + [SMALL_STATE(946)] = 27339, + [SMALL_STATE(947)] = 27393, + [SMALL_STATE(948)] = 27471, + [SMALL_STATE(949)] = 27525, + [SMALL_STATE(950)] = 27579, + [SMALL_STATE(951)] = 27645, + [SMALL_STATE(952)] = 27699, + [SMALL_STATE(953)] = 27753, + [SMALL_STATE(954)] = 27807, + [SMALL_STATE(955)] = 27861, + [SMALL_STATE(956)] = 27915, + [SMALL_STATE(957)] = 27991, + [SMALL_STATE(958)] = 28057, + [SMALL_STATE(959)] = 28111, + [SMALL_STATE(960)] = 28165, + [SMALL_STATE(961)] = 28243, + [SMALL_STATE(962)] = 28321, + [SMALL_STATE(963)] = 28375, + [SMALL_STATE(964)] = 28429, + [SMALL_STATE(965)] = 28483, + [SMALL_STATE(966)] = 28549, + [SMALL_STATE(967)] = 28605, + [SMALL_STATE(968)] = 28681, + [SMALL_STATE(969)] = 28735, + [SMALL_STATE(970)] = 28789, + [SMALL_STATE(971)] = 28843, + [SMALL_STATE(972)] = 28909, + [SMALL_STATE(973)] = 28975, + [SMALL_STATE(974)] = 29051, + [SMALL_STATE(975)] = 29111, + [SMALL_STATE(976)] = 29167, + [SMALL_STATE(977)] = 29223, + [SMALL_STATE(978)] = 29301, + [SMALL_STATE(979)] = 29379, + [SMALL_STATE(980)] = 29455, + [SMALL_STATE(981)] = 29509, + [SMALL_STATE(982)] = 29563, + [SMALL_STATE(983)] = 29617, + [SMALL_STATE(984)] = 29693, + [SMALL_STATE(985)] = 29769, + [SMALL_STATE(986)] = 29825, + [SMALL_STATE(987)] = 29879, + [SMALL_STATE(988)] = 29935, + [SMALL_STATE(989)] = 30001, + [SMALL_STATE(990)] = 30055, + [SMALL_STATE(991)] = 30109, + [SMALL_STATE(992)] = 30187, + [SMALL_STATE(993)] = 30241, + [SMALL_STATE(994)] = 30319, + [SMALL_STATE(995)] = 30395, + [SMALL_STATE(996)] = 30473, + [SMALL_STATE(997)] = 30549, + [SMALL_STATE(998)] = 30627, + [SMALL_STATE(999)] = 30681, + [SMALL_STATE(1000)] = 30735, + [SMALL_STATE(1001)] = 30789, + [SMALL_STATE(1002)] = 30843, + [SMALL_STATE(1003)] = 30897, + [SMALL_STATE(1004)] = 30975, + [SMALL_STATE(1005)] = 31029, + [SMALL_STATE(1006)] = 31083, + [SMALL_STATE(1007)] = 31159, + [SMALL_STATE(1008)] = 31213, + [SMALL_STATE(1009)] = 31267, + [SMALL_STATE(1010)] = 31333, + [SMALL_STATE(1011)] = 31387, + [SMALL_STATE(1012)] = 31441, + [SMALL_STATE(1013)] = 31495, + [SMALL_STATE(1014)] = 31549, + [SMALL_STATE(1015)] = 31603, + [SMALL_STATE(1016)] = 31657, + [SMALL_STATE(1017)] = 31711, + [SMALL_STATE(1018)] = 31765, + [SMALL_STATE(1019)] = 31821, + [SMALL_STATE(1020)] = 31875, + [SMALL_STATE(1021)] = 31929, + [SMALL_STATE(1022)] = 31983, + [SMALL_STATE(1023)] = 32049, + [SMALL_STATE(1024)] = 32103, + [SMALL_STATE(1025)] = 32159, + [SMALL_STATE(1026)] = 32213, + [SMALL_STATE(1027)] = 32267, + [SMALL_STATE(1028)] = 32320, + [SMALL_STATE(1029)] = 32393, + [SMALL_STATE(1030)] = 32446, + [SMALL_STATE(1031)] = 32527, + [SMALL_STATE(1032)] = 32580, + [SMALL_STATE(1033)] = 32637, + [SMALL_STATE(1034)] = 32718, + [SMALL_STATE(1035)] = 32773, + [SMALL_STATE(1036)] = 32830, + [SMALL_STATE(1037)] = 32883, + [SMALL_STATE(1038)] = 32956, + [SMALL_STATE(1039)] = 33009, + [SMALL_STATE(1040)] = 33064, + [SMALL_STATE(1041)] = 33117, + [SMALL_STATE(1042)] = 33170, + [SMALL_STATE(1043)] = 33243, + [SMALL_STATE(1044)] = 33324, + [SMALL_STATE(1045)] = 33377, + [SMALL_STATE(1046)] = 33434, + [SMALL_STATE(1047)] = 33515, + [SMALL_STATE(1048)] = 33572, + [SMALL_STATE(1049)] = 33645, + [SMALL_STATE(1050)] = 33718, + [SMALL_STATE(1051)] = 33791, + [SMALL_STATE(1052)] = 33844, + [SMALL_STATE(1053)] = 33897, + [SMALL_STATE(1054)] = 33970, + [SMALL_STATE(1055)] = 34051, + [SMALL_STATE(1056)] = 34124, + [SMALL_STATE(1057)] = 34205, + [SMALL_STATE(1058)] = 34268, + [SMALL_STATE(1059)] = 34321, + [SMALL_STATE(1060)] = 34394, + [SMALL_STATE(1061)] = 34447, + [SMALL_STATE(1062)] = 34528, + [SMALL_STATE(1063)] = 34601, + [SMALL_STATE(1064)] = 34654, + [SMALL_STATE(1065)] = 34707, + [SMALL_STATE(1066)] = 34760, + [SMALL_STATE(1067)] = 34815, + [SMALL_STATE(1068)] = 34868, + [SMALL_STATE(1069)] = 34921, + [SMALL_STATE(1070)] = 34974, + [SMALL_STATE(1071)] = 35047, + [SMALL_STATE(1072)] = 35102, + [SMALL_STATE(1073)] = 35155, + [SMALL_STATE(1074)] = 35210, + [SMALL_STATE(1075)] = 35291, + [SMALL_STATE(1076)] = 35364, + [SMALL_STATE(1077)] = 35437, + [SMALL_STATE(1078)] = 35518, + [SMALL_STATE(1079)] = 35591, + [SMALL_STATE(1080)] = 35664, + [SMALL_STATE(1081)] = 35719, + [SMALL_STATE(1082)] = 35774, + [SMALL_STATE(1083)] = 35855, + [SMALL_STATE(1084)] = 35928, + [SMALL_STATE(1085)] = 35981, + [SMALL_STATE(1086)] = 36034, + [SMALL_STATE(1087)] = 36107, + [SMALL_STATE(1088)] = 36160, + [SMALL_STATE(1089)] = 36233, + [SMALL_STATE(1090)] = 36286, + [SMALL_STATE(1091)] = 36359, + [SMALL_STATE(1092)] = 36432, + [SMALL_STATE(1093)] = 36505, + [SMALL_STATE(1094)] = 36578, + [SMALL_STATE(1095)] = 36631, + [SMALL_STATE(1096)] = 36684, + [SMALL_STATE(1097)] = 36757, + [SMALL_STATE(1098)] = 36830, + [SMALL_STATE(1099)] = 36903, + [SMALL_STATE(1100)] = 36976, + [SMALL_STATE(1101)] = 37057, + [SMALL_STATE(1102)] = 37138, + [SMALL_STATE(1103)] = 37214, + [SMALL_STATE(1104)] = 37272, + [SMALL_STATE(1105)] = 37348, + [SMALL_STATE(1106)] = 37418, + [SMALL_STATE(1107)] = 37499, + [SMALL_STATE(1108)] = 37584, + [SMALL_STATE(1109)] = 37665, + [SMALL_STATE(1110)] = 37738, + [SMALL_STATE(1111)] = 37823, + [SMALL_STATE(1112)] = 37908, + [SMALL_STATE(1113)] = 37993, + [SMALL_STATE(1114)] = 38050, + [SMALL_STATE(1115)] = 38114, + [SMALL_STATE(1116)] = 38178, + [SMALL_STATE(1117)] = 38230, + [SMALL_STATE(1118)] = 38294, + [SMALL_STATE(1119)] = 38358, + [SMALL_STATE(1120)] = 38422, + [SMALL_STATE(1121)] = 38486, + [SMALL_STATE(1122)] = 38550, + [SMALL_STATE(1123)] = 38614, + [SMALL_STATE(1124)] = 38678, + [SMALL_STATE(1125)] = 38742, + [SMALL_STATE(1126)] = 38806, + [SMALL_STATE(1127)] = 38870, + [SMALL_STATE(1128)] = 38934, + [SMALL_STATE(1129)] = 38998, + [SMALL_STATE(1130)] = 39062, + [SMALL_STATE(1131)] = 39126, + [SMALL_STATE(1132)] = 39182, + [SMALL_STATE(1133)] = 39246, + [SMALL_STATE(1134)] = 39310, + [SMALL_STATE(1135)] = 39374, + [SMALL_STATE(1136)] = 39438, + [SMALL_STATE(1137)] = 39502, + [SMALL_STATE(1138)] = 39566, + [SMALL_STATE(1139)] = 39630, + [SMALL_STATE(1140)] = 39694, + [SMALL_STATE(1141)] = 39758, + [SMALL_STATE(1142)] = 39822, + [SMALL_STATE(1143)] = 39874, + [SMALL_STATE(1144)] = 39938, + [SMALL_STATE(1145)] = 40002, + [SMALL_STATE(1146)] = 40066, + [SMALL_STATE(1147)] = 40130, + [SMALL_STATE(1148)] = 40194, + [SMALL_STATE(1149)] = 40258, + [SMALL_STATE(1150)] = 40322, + [SMALL_STATE(1151)] = 40386, + [SMALL_STATE(1152)] = 40450, + [SMALL_STATE(1153)] = 40504, + [SMALL_STATE(1154)] = 40558, + [SMALL_STATE(1155)] = 40622, + [SMALL_STATE(1156)] = 40676, + [SMALL_STATE(1157)] = 40740, + [SMALL_STATE(1158)] = 40804, + [SMALL_STATE(1159)] = 40876, + [SMALL_STATE(1160)] = 40930, + [SMALL_STATE(1161)] = 40994, + [SMALL_STATE(1162)] = 41058, + [SMALL_STATE(1163)] = 41122, + [SMALL_STATE(1164)] = 41186, + [SMALL_STATE(1165)] = 41250, + [SMALL_STATE(1166)] = 41314, + [SMALL_STATE(1167)] = 41386, + [SMALL_STATE(1168)] = 41450, + [SMALL_STATE(1169)] = 41514, + [SMALL_STATE(1170)] = 41578, + [SMALL_STATE(1171)] = 41642, + [SMALL_STATE(1172)] = 41706, + [SMALL_STATE(1173)] = 41770, + [SMALL_STATE(1174)] = 41834, + [SMALL_STATE(1175)] = 41898, + [SMALL_STATE(1176)] = 41970, + [SMALL_STATE(1177)] = 42034, + [SMALL_STATE(1178)] = 42098, + [SMALL_STATE(1179)] = 42162, + [SMALL_STATE(1180)] = 42234, + [SMALL_STATE(1181)] = 42298, + [SMALL_STATE(1182)] = 42362, + [SMALL_STATE(1183)] = 42426, + [SMALL_STATE(1184)] = 42490, + [SMALL_STATE(1185)] = 42554, + [SMALL_STATE(1186)] = 42617, + [SMALL_STATE(1187)] = 42676, + [SMALL_STATE(1188)] = 42729, + [SMALL_STATE(1189)] = 42782, + [SMALL_STATE(1190)] = 42835, + [SMALL_STATE(1191)] = 42888, + [SMALL_STATE(1192)] = 42941, + [SMALL_STATE(1193)] = 42994, + [SMALL_STATE(1194)] = 43053, + [SMALL_STATE(1195)] = 43114, + [SMALL_STATE(1196)] = 43177, + [SMALL_STATE(1197)] = 43240, + [SMALL_STATE(1198)] = 43293, + [SMALL_STATE(1199)] = 43352, + [SMALL_STATE(1200)] = 43411, + [SMALL_STATE(1201)] = 43464, + [SMALL_STATE(1202)] = 43525, + [SMALL_STATE(1203)] = 43588, + [SMALL_STATE(1204)] = 43649, + [SMALL_STATE(1205)] = 43704, + [SMALL_STATE(1206)] = 43759, + [SMALL_STATE(1207)] = 43818, + [SMALL_STATE(1208)] = 43879, + [SMALL_STATE(1209)] = 43932, + [SMALL_STATE(1210)] = 43985, + [SMALL_STATE(1211)] = 44040, + [SMALL_STATE(1212)] = 44093, + [SMALL_STATE(1213)] = 44146, + [SMALL_STATE(1214)] = 44199, + [SMALL_STATE(1215)] = 44252, + [SMALL_STATE(1216)] = 44311, + [SMALL_STATE(1217)] = 44364, + [SMALL_STATE(1218)] = 44417, + [SMALL_STATE(1219)] = 44480, + [SMALL_STATE(1220)] = 44533, + [SMALL_STATE(1221)] = 44592, + [SMALL_STATE(1222)] = 44645, + [SMALL_STATE(1223)] = 44698, + [SMALL_STATE(1224)] = 44751, + [SMALL_STATE(1225)] = 44804, + [SMALL_STATE(1226)] = 44857, + [SMALL_STATE(1227)] = 44910, + [SMALL_STATE(1228)] = 44963, + [SMALL_STATE(1229)] = 45016, + [SMALL_STATE(1230)] = 45075, + [SMALL_STATE(1231)] = 45128, + [SMALL_STATE(1232)] = 45181, + [SMALL_STATE(1233)] = 45234, + [SMALL_STATE(1234)] = 45289, + [SMALL_STATE(1235)] = 45342, + [SMALL_STATE(1236)] = 45395, + [SMALL_STATE(1237)] = 45448, + [SMALL_STATE(1238)] = 45509, + [SMALL_STATE(1239)] = 45562, + [SMALL_STATE(1240)] = 45615, + [SMALL_STATE(1241)] = 45668, + [SMALL_STATE(1242)] = 45723, + [SMALL_STATE(1243)] = 45776, + [SMALL_STATE(1244)] = 45825, + [SMALL_STATE(1245)] = 45884, + [SMALL_STATE(1246)] = 45943, + [SMALL_STATE(1247)] = 45996, + [SMALL_STATE(1248)] = 46059, + [SMALL_STATE(1249)] = 46114, + [SMALL_STATE(1250)] = 46167, + [SMALL_STATE(1251)] = 46220, + [SMALL_STATE(1252)] = 46279, + [SMALL_STATE(1253)] = 46328, + [SMALL_STATE(1254)] = 46387, + [SMALL_STATE(1255)] = 46442, + [SMALL_STATE(1256)] = 46501, + [SMALL_STATE(1257)] = 46554, + [SMALL_STATE(1258)] = 46607, + [SMALL_STATE(1259)] = 46660, + [SMALL_STATE(1260)] = 46713, + [SMALL_STATE(1261)] = 46775, + [SMALL_STATE(1262)] = 46827, + [SMALL_STATE(1263)] = 46879, + [SMALL_STATE(1264)] = 46931, + [SMALL_STATE(1265)] = 46983, + [SMALL_STATE(1266)] = 47035, + [SMALL_STATE(1267)] = 47087, + [SMALL_STATE(1268)] = 47139, + [SMALL_STATE(1269)] = 47201, + [SMALL_STATE(1270)] = 47263, + [SMALL_STATE(1271)] = 47315, + [SMALL_STATE(1272)] = 47377, + [SMALL_STATE(1273)] = 47439, + [SMALL_STATE(1274)] = 47501, + [SMALL_STATE(1275)] = 47563, + [SMALL_STATE(1276)] = 47625, + [SMALL_STATE(1277)] = 47687, + [SMALL_STATE(1278)] = 47749, + [SMALL_STATE(1279)] = 47811, + [SMALL_STATE(1280)] = 47873, + [SMALL_STATE(1281)] = 47927, + [SMALL_STATE(1282)] = 47989, + [SMALL_STATE(1283)] = 48051, + [SMALL_STATE(1284)] = 48113, + [SMALL_STATE(1285)] = 48175, + [SMALL_STATE(1286)] = 48227, + [SMALL_STATE(1287)] = 48289, + [SMALL_STATE(1288)] = 48343, + [SMALL_STATE(1289)] = 48401, + [SMALL_STATE(1290)] = 48463, + [SMALL_STATE(1291)] = 48525, + [SMALL_STATE(1292)] = 48587, + [SMALL_STATE(1293)] = 48649, + [SMALL_STATE(1294)] = 48711, + [SMALL_STATE(1295)] = 48763, + [SMALL_STATE(1296)] = 48815, + [SMALL_STATE(1297)] = 48867, + [SMALL_STATE(1298)] = 48919, + [SMALL_STATE(1299)] = 48981, + [SMALL_STATE(1300)] = 49033, + [SMALL_STATE(1301)] = 49085, + [SMALL_STATE(1302)] = 49147, + [SMALL_STATE(1303)] = 49209, + [SMALL_STATE(1304)] = 49271, + [SMALL_STATE(1305)] = 49333, + [SMALL_STATE(1306)] = 49385, + [SMALL_STATE(1307)] = 49437, + [SMALL_STATE(1308)] = 49499, + [SMALL_STATE(1309)] = 49577, + [SMALL_STATE(1310)] = 49639, + [SMALL_STATE(1311)] = 49717, + [SMALL_STATE(1312)] = 49769, + [SMALL_STATE(1313)] = 49831, + [SMALL_STATE(1314)] = 49889, + [SMALL_STATE(1315)] = 49941, + [SMALL_STATE(1316)] = 50003, + [SMALL_STATE(1317)] = 50061, + [SMALL_STATE(1318)] = 50123, + [SMALL_STATE(1319)] = 50185, + [SMALL_STATE(1320)] = 50239, + [SMALL_STATE(1321)] = 50291, + [SMALL_STATE(1322)] = 50353, + [SMALL_STATE(1323)] = 50405, + [SMALL_STATE(1324)] = 50467, + [SMALL_STATE(1325)] = 50529, + [SMALL_STATE(1326)] = 50591, + [SMALL_STATE(1327)] = 50653, + [SMALL_STATE(1328)] = 50715, + [SMALL_STATE(1329)] = 50793, + [SMALL_STATE(1330)] = 50855, + [SMALL_STATE(1331)] = 50917, + [SMALL_STATE(1332)] = 50979, + [SMALL_STATE(1333)] = 51041, + [SMALL_STATE(1334)] = 51103, + [SMALL_STATE(1335)] = 51165, + [SMALL_STATE(1336)] = 51227, + [SMALL_STATE(1337)] = 51289, + [SMALL_STATE(1338)] = 51367, + [SMALL_STATE(1339)] = 51419, + [SMALL_STATE(1340)] = 51481, + [SMALL_STATE(1341)] = 51543, + [SMALL_STATE(1342)] = 51605, + [SMALL_STATE(1343)] = 51667, + [SMALL_STATE(1344)] = 51729, + [SMALL_STATE(1345)] = 51791, + [SMALL_STATE(1346)] = 51853, + [SMALL_STATE(1347)] = 51915, + [SMALL_STATE(1348)] = 51977, + [SMALL_STATE(1349)] = 52039, + [SMALL_STATE(1350)] = 52097, + [SMALL_STATE(1351)] = 52159, + [SMALL_STATE(1352)] = 52213, + [SMALL_STATE(1353)] = 52265, + [SMALL_STATE(1354)] = 52317, + [SMALL_STATE(1355)] = 52369, + [SMALL_STATE(1356)] = 52427, + [SMALL_STATE(1357)] = 52485, + [SMALL_STATE(1358)] = 52547, + [SMALL_STATE(1359)] = 52609, + [SMALL_STATE(1360)] = 52671, + [SMALL_STATE(1361)] = 52733, + [SMALL_STATE(1362)] = 52795, + [SMALL_STATE(1363)] = 52857, + [SMALL_STATE(1364)] = 52919, + [SMALL_STATE(1365)] = 52981, + [SMALL_STATE(1366)] = 53043, + [SMALL_STATE(1367)] = 53105, + [SMALL_STATE(1368)] = 53159, + [SMALL_STATE(1369)] = 53221, + [SMALL_STATE(1370)] = 53283, + [SMALL_STATE(1371)] = 53345, + [SMALL_STATE(1372)] = 53407, + [SMALL_STATE(1373)] = 53469, + [SMALL_STATE(1374)] = 53531, + [SMALL_STATE(1375)] = 53593, + [SMALL_STATE(1376)] = 53655, + [SMALL_STATE(1377)] = 53707, + [SMALL_STATE(1378)] = 53765, + [SMALL_STATE(1379)] = 53823, + [SMALL_STATE(1380)] = 53875, + [SMALL_STATE(1381)] = 53927, + [SMALL_STATE(1382)] = 53989, + [SMALL_STATE(1383)] = 54051, + [SMALL_STATE(1384)] = 54113, + [SMALL_STATE(1385)] = 54175, + [SMALL_STATE(1386)] = 54237, + [SMALL_STATE(1387)] = 54299, + [SMALL_STATE(1388)] = 54361, + [SMALL_STATE(1389)] = 54423, + [SMALL_STATE(1390)] = 54485, + [SMALL_STATE(1391)] = 54547, + [SMALL_STATE(1392)] = 54605, + [SMALL_STATE(1393)] = 54663, + [SMALL_STATE(1394)] = 54725, + [SMALL_STATE(1395)] = 54787, + [SMALL_STATE(1396)] = 54849, + [SMALL_STATE(1397)] = 54911, + [SMALL_STATE(1398)] = 54973, + [SMALL_STATE(1399)] = 55035, + [SMALL_STATE(1400)] = 55097, + [SMALL_STATE(1401)] = 55159, + [SMALL_STATE(1402)] = 55221, + [SMALL_STATE(1403)] = 55283, + [SMALL_STATE(1404)] = 55345, + [SMALL_STATE(1405)] = 55407, + [SMALL_STATE(1406)] = 55469, + [SMALL_STATE(1407)] = 55531, + [SMALL_STATE(1408)] = 55593, + [SMALL_STATE(1409)] = 55652, + [SMALL_STATE(1410)] = 55711, + [SMALL_STATE(1411)] = 55770, + [SMALL_STATE(1412)] = 55829, + [SMALL_STATE(1413)] = 55888, + [SMALL_STATE(1414)] = 55947, + [SMALL_STATE(1415)] = 56006, + [SMALL_STATE(1416)] = 56065, + [SMALL_STATE(1417)] = 56124, + [SMALL_STATE(1418)] = 56177, + [SMALL_STATE(1419)] = 56236, + [SMALL_STATE(1420)] = 56295, + [SMALL_STATE(1421)] = 56354, + [SMALL_STATE(1422)] = 56413, + [SMALL_STATE(1423)] = 56464, + [SMALL_STATE(1424)] = 56523, + [SMALL_STATE(1425)] = 56574, + [SMALL_STATE(1426)] = 56633, + [SMALL_STATE(1427)] = 56692, + [SMALL_STATE(1428)] = 56751, + [SMALL_STATE(1429)] = 56810, + [SMALL_STATE(1430)] = 56869, + [SMALL_STATE(1431)] = 56928, + [SMALL_STATE(1432)] = 56987, + [SMALL_STATE(1433)] = 57046, + [SMALL_STATE(1434)] = 57105, + [SMALL_STATE(1435)] = 57164, + [SMALL_STATE(1436)] = 57215, + [SMALL_STATE(1437)] = 57274, + [SMALL_STATE(1438)] = 57333, + [SMALL_STATE(1439)] = 57392, + [SMALL_STATE(1440)] = 57451, + [SMALL_STATE(1441)] = 57502, + [SMALL_STATE(1442)] = 57561, + [SMALL_STATE(1443)] = 57612, + [SMALL_STATE(1444)] = 57671, + [SMALL_STATE(1445)] = 57722, + [SMALL_STATE(1446)] = 57773, + [SMALL_STATE(1447)] = 57832, + [SMALL_STATE(1448)] = 57891, + [SMALL_STATE(1449)] = 57950, + [SMALL_STATE(1450)] = 58009, + [SMALL_STATE(1451)] = 58068, + [SMALL_STATE(1452)] = 58127, + [SMALL_STATE(1453)] = 58186, + [SMALL_STATE(1454)] = 58245, + [SMALL_STATE(1455)] = 58304, + [SMALL_STATE(1456)] = 58363, + [SMALL_STATE(1457)] = 58422, + [SMALL_STATE(1458)] = 58477, + [SMALL_STATE(1459)] = 58536, + [SMALL_STATE(1460)] = 58595, + [SMALL_STATE(1461)] = 58654, + [SMALL_STATE(1462)] = 58713, + [SMALL_STATE(1463)] = 58772, + [SMALL_STATE(1464)] = 58831, + [SMALL_STATE(1465)] = 58890, + [SMALL_STATE(1466)] = 58949, + [SMALL_STATE(1467)] = 59008, + [SMALL_STATE(1468)] = 59067, + [SMALL_STATE(1469)] = 59126, + [SMALL_STATE(1470)] = 59185, + [SMALL_STATE(1471)] = 59244, + [SMALL_STATE(1472)] = 59303, + [SMALL_STATE(1473)] = 59362, + [SMALL_STATE(1474)] = 59421, + [SMALL_STATE(1475)] = 59480, + [SMALL_STATE(1476)] = 59539, + [SMALL_STATE(1477)] = 59590, + [SMALL_STATE(1478)] = 59641, + [SMALL_STATE(1479)] = 59700, + [SMALL_STATE(1480)] = 59759, + [SMALL_STATE(1481)] = 59810, + [SMALL_STATE(1482)] = 59869, + [SMALL_STATE(1483)] = 59928, + [SMALL_STATE(1484)] = 59987, + [SMALL_STATE(1485)] = 60050, + [SMALL_STATE(1486)] = 60109, + [SMALL_STATE(1487)] = 60168, + [SMALL_STATE(1488)] = 60227, + [SMALL_STATE(1489)] = 60286, + [SMALL_STATE(1490)] = 60337, + [SMALL_STATE(1491)] = 60396, + [SMALL_STATE(1492)] = 60455, + [SMALL_STATE(1493)] = 60514, + [SMALL_STATE(1494)] = 60573, + [SMALL_STATE(1495)] = 60632, + [SMALL_STATE(1496)] = 60691, + [SMALL_STATE(1497)] = 60750, + [SMALL_STATE(1498)] = 60809, + [SMALL_STATE(1499)] = 60868, + [SMALL_STATE(1500)] = 60927, + [SMALL_STATE(1501)] = 60986, + [SMALL_STATE(1502)] = 61045, + [SMALL_STATE(1503)] = 61104, + [SMALL_STATE(1504)] = 61163, + [SMALL_STATE(1505)] = 61222, + [SMALL_STATE(1506)] = 61281, + [SMALL_STATE(1507)] = 61340, + [SMALL_STATE(1508)] = 61399, + [SMALL_STATE(1509)] = 61458, + [SMALL_STATE(1510)] = 61517, + [SMALL_STATE(1511)] = 61576, + [SMALL_STATE(1512)] = 61635, + [SMALL_STATE(1513)] = 61694, + [SMALL_STATE(1514)] = 61753, + [SMALL_STATE(1515)] = 61812, + [SMALL_STATE(1516)] = 61871, + [SMALL_STATE(1517)] = 61930, + [SMALL_STATE(1518)] = 61989, + [SMALL_STATE(1519)] = 62048, + [SMALL_STATE(1520)] = 62107, + [SMALL_STATE(1521)] = 62166, + [SMALL_STATE(1522)] = 62225, + [SMALL_STATE(1523)] = 62284, + [SMALL_STATE(1524)] = 62343, + [SMALL_STATE(1525)] = 62402, + [SMALL_STATE(1526)] = 62461, + [SMALL_STATE(1527)] = 62520, + [SMALL_STATE(1528)] = 62579, + [SMALL_STATE(1529)] = 62638, + [SMALL_STATE(1530)] = 62697, + [SMALL_STATE(1531)] = 62756, + [SMALL_STATE(1532)] = 62807, + [SMALL_STATE(1533)] = 62866, + [SMALL_STATE(1534)] = 62925, + [SMALL_STATE(1535)] = 62984, + [SMALL_STATE(1536)] = 63043, + [SMALL_STATE(1537)] = 63102, + [SMALL_STATE(1538)] = 63161, + [SMALL_STATE(1539)] = 63212, + [SMALL_STATE(1540)] = 63271, + [SMALL_STATE(1541)] = 63330, + [SMALL_STATE(1542)] = 63389, + [SMALL_STATE(1543)] = 63452, + [SMALL_STATE(1544)] = 63507, + [SMALL_STATE(1545)] = 63566, + [SMALL_STATE(1546)] = 63617, + [SMALL_STATE(1547)] = 63668, + [SMALL_STATE(1548)] = 63731, + [SMALL_STATE(1549)] = 63790, + [SMALL_STATE(1550)] = 63849, + [SMALL_STATE(1551)] = 63908, + [SMALL_STATE(1552)] = 63967, + [SMALL_STATE(1553)] = 64026, + [SMALL_STATE(1554)] = 64085, + [SMALL_STATE(1555)] = 64136, + [SMALL_STATE(1556)] = 64195, + [SMALL_STATE(1557)] = 64246, + [SMALL_STATE(1558)] = 64305, + [SMALL_STATE(1559)] = 64364, + [SMALL_STATE(1560)] = 64423, + [SMALL_STATE(1561)] = 64482, + [SMALL_STATE(1562)] = 64541, + [SMALL_STATE(1563)] = 64600, + [SMALL_STATE(1564)] = 64659, + [SMALL_STATE(1565)] = 64718, + [SMALL_STATE(1566)] = 64777, + [SMALL_STATE(1567)] = 64836, + [SMALL_STATE(1568)] = 64895, + [SMALL_STATE(1569)] = 64954, + [SMALL_STATE(1570)] = 65013, + [SMALL_STATE(1571)] = 65072, + [SMALL_STATE(1572)] = 65131, + [SMALL_STATE(1573)] = 65182, + [SMALL_STATE(1574)] = 65241, + [SMALL_STATE(1575)] = 65300, + [SMALL_STATE(1576)] = 65359, + [SMALL_STATE(1577)] = 65418, + [SMALL_STATE(1578)] = 65477, + [SMALL_STATE(1579)] = 65536, + [SMALL_STATE(1580)] = 65595, + [SMALL_STATE(1581)] = 65646, + [SMALL_STATE(1582)] = 65709, + [SMALL_STATE(1583)] = 65760, + [SMALL_STATE(1584)] = 65811, + [SMALL_STATE(1585)] = 65874, + [SMALL_STATE(1586)] = 65925, + [SMALL_STATE(1587)] = 65988, + [SMALL_STATE(1588)] = 66039, + [SMALL_STATE(1589)] = 66090, + [SMALL_STATE(1590)] = 66141, + [SMALL_STATE(1591)] = 66192, + [SMALL_STATE(1592)] = 66255, + [SMALL_STATE(1593)] = 66306, + [SMALL_STATE(1594)] = 66369, + [SMALL_STATE(1595)] = 66432, + [SMALL_STATE(1596)] = 66495, + [SMALL_STATE(1597)] = 66546, + [SMALL_STATE(1598)] = 66597, + [SMALL_STATE(1599)] = 66656, + [SMALL_STATE(1600)] = 66715, + [SMALL_STATE(1601)] = 66774, + [SMALL_STATE(1602)] = 66833, + [SMALL_STATE(1603)] = 66884, + [SMALL_STATE(1604)] = 66935, + [SMALL_STATE(1605)] = 66994, + [SMALL_STATE(1606)] = 67045, + [SMALL_STATE(1607)] = 67096, + [SMALL_STATE(1608)] = 67147, + [SMALL_STATE(1609)] = 67198, + [SMALL_STATE(1610)] = 67249, + [SMALL_STATE(1611)] = 67300, + [SMALL_STATE(1612)] = 67359, + [SMALL_STATE(1613)] = 67410, + [SMALL_STATE(1614)] = 67461, + [SMALL_STATE(1615)] = 67520, + [SMALL_STATE(1616)] = 67579, + [SMALL_STATE(1617)] = 67630, + [SMALL_STATE(1618)] = 67689, + [SMALL_STATE(1619)] = 67748, + [SMALL_STATE(1620)] = 67799, + [SMALL_STATE(1621)] = 67850, + [SMALL_STATE(1622)] = 67901, + [SMALL_STATE(1623)] = 67952, + [SMALL_STATE(1624)] = 68003, + [SMALL_STATE(1625)] = 68054, + [SMALL_STATE(1626)] = 68105, + [SMALL_STATE(1627)] = 68156, + [SMALL_STATE(1628)] = 68215, + [SMALL_STATE(1629)] = 68274, + [SMALL_STATE(1630)] = 68325, + [SMALL_STATE(1631)] = 68376, + [SMALL_STATE(1632)] = 68427, + [SMALL_STATE(1633)] = 68486, + [SMALL_STATE(1634)] = 68537, + [SMALL_STATE(1635)] = 68588, + [SMALL_STATE(1636)] = 68639, + [SMALL_STATE(1637)] = 68690, + [SMALL_STATE(1638)] = 68749, + [SMALL_STATE(1639)] = 68800, + [SMALL_STATE(1640)] = 68851, + [SMALL_STATE(1641)] = 68902, + [SMALL_STATE(1642)] = 68953, + [SMALL_STATE(1643)] = 69004, + [SMALL_STATE(1644)] = 69052, + [SMALL_STATE(1645)] = 69100, + [SMALL_STATE(1646)] = 69150, + [SMALL_STATE(1647)] = 69200, + [SMALL_STATE(1648)] = 69250, + [SMALL_STATE(1649)] = 69306, + [SMALL_STATE(1650)] = 69356, + [SMALL_STATE(1651)] = 69410, + [SMALL_STATE(1652)] = 69466, + [SMALL_STATE(1653)] = 69516, + [SMALL_STATE(1654)] = 69566, + [SMALL_STATE(1655)] = 69616, + [SMALL_STATE(1656)] = 69666, + [SMALL_STATE(1657)] = 69716, + [SMALL_STATE(1658)] = 69766, + [SMALL_STATE(1659)] = 69816, + [SMALL_STATE(1660)] = 69866, + [SMALL_STATE(1661)] = 69916, + [SMALL_STATE(1662)] = 69970, + [SMALL_STATE(1663)] = 70020, + [SMALL_STATE(1664)] = 70070, + [SMALL_STATE(1665)] = 70120, + [SMALL_STATE(1666)] = 70170, + [SMALL_STATE(1667)] = 70220, + [SMALL_STATE(1668)] = 70270, + [SMALL_STATE(1669)] = 70320, + [SMALL_STATE(1670)] = 70370, + [SMALL_STATE(1671)] = 70420, + [SMALL_STATE(1672)] = 70470, + [SMALL_STATE(1673)] = 70520, + [SMALL_STATE(1674)] = 70570, + [SMALL_STATE(1675)] = 70620, + [SMALL_STATE(1676)] = 70668, + [SMALL_STATE(1677)] = 70718, + [SMALL_STATE(1678)] = 70768, + [SMALL_STATE(1679)] = 70818, + [SMALL_STATE(1680)] = 70868, + [SMALL_STATE(1681)] = 70918, + [SMALL_STATE(1682)] = 70968, + [SMALL_STATE(1683)] = 71018, + [SMALL_STATE(1684)] = 71066, + [SMALL_STATE(1685)] = 71116, + [SMALL_STATE(1686)] = 71166, + [SMALL_STATE(1687)] = 71216, + [SMALL_STATE(1688)] = 71266, + [SMALL_STATE(1689)] = 71316, + [SMALL_STATE(1690)] = 71366, + [SMALL_STATE(1691)] = 71416, + [SMALL_STATE(1692)] = 71466, + [SMALL_STATE(1693)] = 71522, + [SMALL_STATE(1694)] = 71578, + [SMALL_STATE(1695)] = 71632, + [SMALL_STATE(1696)] = 71682, + [SMALL_STATE(1697)] = 71738, + [SMALL_STATE(1698)] = 71786, + [SMALL_STATE(1699)] = 71836, + [SMALL_STATE(1700)] = 71888, + [SMALL_STATE(1701)] = 71944, + [SMALL_STATE(1702)] = 72000, + [SMALL_STATE(1703)] = 72048, + [SMALL_STATE(1704)] = 72096, + [SMALL_STATE(1705)] = 72146, + [SMALL_STATE(1706)] = 72200, + [SMALL_STATE(1707)] = 72248, + [SMALL_STATE(1708)] = 72296, + [SMALL_STATE(1709)] = 72344, + [SMALL_STATE(1710)] = 72389, + [SMALL_STATE(1711)] = 72434, + [SMALL_STATE(1712)] = 72483, + [SMALL_STATE(1713)] = 72530, + [SMALL_STATE(1714)] = 72575, + [SMALL_STATE(1715)] = 72622, + [SMALL_STATE(1716)] = 72667, + [SMALL_STATE(1717)] = 72714, + [SMALL_STATE(1718)] = 72759, + [SMALL_STATE(1719)] = 72806, + [SMALL_STATE(1720)] = 72861, + [SMALL_STATE(1721)] = 72916, + [SMALL_STATE(1722)] = 72963, + [SMALL_STATE(1723)] = 73008, + [SMALL_STATE(1724)] = 73053, + [SMALL_STATE(1725)] = 73098, + [SMALL_STATE(1726)] = 73143, + [SMALL_STATE(1727)] = 73188, + [SMALL_STATE(1728)] = 73237, + [SMALL_STATE(1729)] = 73284, + [SMALL_STATE(1730)] = 73329, + [SMALL_STATE(1731)] = 73374, + [SMALL_STATE(1732)] = 73421, + [SMALL_STATE(1733)] = 73468, + [SMALL_STATE(1734)] = 73513, + [SMALL_STATE(1735)] = 73558, + [SMALL_STATE(1736)] = 73603, + [SMALL_STATE(1737)] = 73648, + [SMALL_STATE(1738)] = 73695, + [SMALL_STATE(1739)] = 73740, + [SMALL_STATE(1740)] = 73787, + [SMALL_STATE(1741)] = 73836, + [SMALL_STATE(1742)] = 73885, + [SMALL_STATE(1743)] = 73930, + [SMALL_STATE(1744)] = 73977, + [SMALL_STATE(1745)] = 74022, + [SMALL_STATE(1746)] = 74077, + [SMALL_STATE(1747)] = 74122, + [SMALL_STATE(1748)] = 74167, + [SMALL_STATE(1749)] = 74212, + [SMALL_STATE(1750)] = 74257, + [SMALL_STATE(1751)] = 74302, + [SMALL_STATE(1752)] = 74347, + [SMALL_STATE(1753)] = 74394, + [SMALL_STATE(1754)] = 74439, + [SMALL_STATE(1755)] = 74484, + [SMALL_STATE(1756)] = 74529, + [SMALL_STATE(1757)] = 74576, + [SMALL_STATE(1758)] = 74621, + [SMALL_STATE(1759)] = 74668, + [SMALL_STATE(1760)] = 74712, + [SMALL_STATE(1761)] = 74758, + [SMALL_STATE(1762)] = 74804, + [SMALL_STATE(1763)] = 74850, + [SMALL_STATE(1764)] = 74896, + [SMALL_STATE(1765)] = 74940, + [SMALL_STATE(1766)] = 74986, + [SMALL_STATE(1767)] = 75032, + [SMALL_STATE(1768)] = 75078, + [SMALL_STATE(1769)] = 75132, + [SMALL_STATE(1770)] = 75176, + [SMALL_STATE(1771)] = 75220, + [SMALL_STATE(1772)] = 75266, + [SMALL_STATE(1773)] = 75320, + [SMALL_STATE(1774)] = 75364, + [SMALL_STATE(1775)] = 75410, + [SMALL_STATE(1776)] = 75454, + [SMALL_STATE(1777)] = 75498, + [SMALL_STATE(1778)] = 75552, + [SMALL_STATE(1779)] = 75596, + [SMALL_STATE(1780)] = 75640, + [SMALL_STATE(1781)] = 75684, + [SMALL_STATE(1782)] = 75730, + [SMALL_STATE(1783)] = 75776, + [SMALL_STATE(1784)] = 75822, + [SMALL_STATE(1785)] = 75876, + [SMALL_STATE(1786)] = 75920, + [SMALL_STATE(1787)] = 75974, + [SMALL_STATE(1788)] = 76028, + [SMALL_STATE(1789)] = 76074, + [SMALL_STATE(1790)] = 76126, + [SMALL_STATE(1791)] = 76172, + [SMALL_STATE(1792)] = 76216, + [SMALL_STATE(1793)] = 76260, + [SMALL_STATE(1794)] = 76304, + [SMALL_STATE(1795)] = 76347, + [SMALL_STATE(1796)] = 76390, + [SMALL_STATE(1797)] = 76433, + [SMALL_STATE(1798)] = 76476, + [SMALL_STATE(1799)] = 76519, + [SMALL_STATE(1800)] = 76562, + [SMALL_STATE(1801)] = 76605, + [SMALL_STATE(1802)] = 76648, + [SMALL_STATE(1803)] = 76693, + [SMALL_STATE(1804)] = 76738, + [SMALL_STATE(1805)] = 76781, + [SMALL_STATE(1806)] = 76824, + [SMALL_STATE(1807)] = 76867, + [SMALL_STATE(1808)] = 76910, + [SMALL_STATE(1809)] = 76953, + [SMALL_STATE(1810)] = 76996, + [SMALL_STATE(1811)] = 77039, + [SMALL_STATE(1812)] = 77082, + [SMALL_STATE(1813)] = 77125, + [SMALL_STATE(1814)] = 77170, + [SMALL_STATE(1815)] = 77213, + [SMALL_STATE(1816)] = 77256, + [SMALL_STATE(1817)] = 77299, + [SMALL_STATE(1818)] = 77344, + [SMALL_STATE(1819)] = 77387, + [SMALL_STATE(1820)] = 77430, + [SMALL_STATE(1821)] = 77473, + [SMALL_STATE(1822)] = 77516, + [SMALL_STATE(1823)] = 77559, + [SMALL_STATE(1824)] = 77602, + [SMALL_STATE(1825)] = 77645, + [SMALL_STATE(1826)] = 77688, + [SMALL_STATE(1827)] = 77731, + [SMALL_STATE(1828)] = 77774, + [SMALL_STATE(1829)] = 77816, + [SMALL_STATE(1830)] = 77858, + [SMALL_STATE(1831)] = 77900, + [SMALL_STATE(1832)] = 77942, + [SMALL_STATE(1833)] = 77984, + [SMALL_STATE(1834)] = 78026, + [SMALL_STATE(1835)] = 78068, + [SMALL_STATE(1836)] = 78110, + [SMALL_STATE(1837)] = 78152, + [SMALL_STATE(1838)] = 78194, + [SMALL_STATE(1839)] = 78236, + [SMALL_STATE(1840)] = 78278, + [SMALL_STATE(1841)] = 78320, + [SMALL_STATE(1842)] = 78364, + [SMALL_STATE(1843)] = 78408, + [SMALL_STATE(1844)] = 78450, + [SMALL_STATE(1845)] = 78492, + [SMALL_STATE(1846)] = 78534, + [SMALL_STATE(1847)] = 78576, + [SMALL_STATE(1848)] = 78618, + [SMALL_STATE(1849)] = 78659, + [SMALL_STATE(1850)] = 78700, + [SMALL_STATE(1851)] = 78734, + [SMALL_STATE(1852)] = 78768, + [SMALL_STATE(1853)] = 78802, + [SMALL_STATE(1854)] = 78824, + [SMALL_STATE(1855)] = 78846, + [SMALL_STATE(1856)] = 78868, + [SMALL_STATE(1857)] = 78890, + [SMALL_STATE(1858)] = 78912, + [SMALL_STATE(1859)] = 78934, + [SMALL_STATE(1860)] = 78956, + [SMALL_STATE(1861)] = 78978, + [SMALL_STATE(1862)] = 79000, + [SMALL_STATE(1863)] = 79022, + [SMALL_STATE(1864)] = 79044, + [SMALL_STATE(1865)] = 79066, + [SMALL_STATE(1866)] = 79088, + [SMALL_STATE(1867)] = 79110, + [SMALL_STATE(1868)] = 79132, + [SMALL_STATE(1869)] = 79154, + [SMALL_STATE(1870)] = 79176, + [SMALL_STATE(1871)] = 79198, + [SMALL_STATE(1872)] = 79220, + [SMALL_STATE(1873)] = 79242, + [SMALL_STATE(1874)] = 79264, + [SMALL_STATE(1875)] = 79286, + [SMALL_STATE(1876)] = 79308, + [SMALL_STATE(1877)] = 79330, + [SMALL_STATE(1878)] = 79352, + [SMALL_STATE(1879)] = 79374, + [SMALL_STATE(1880)] = 79396, + [SMALL_STATE(1881)] = 79418, + [SMALL_STATE(1882)] = 79444, + [SMALL_STATE(1883)] = 79466, + [SMALL_STATE(1884)] = 79488, + [SMALL_STATE(1885)] = 79510, + [SMALL_STATE(1886)] = 79532, + [SMALL_STATE(1887)] = 79554, + [SMALL_STATE(1888)] = 79576, + [SMALL_STATE(1889)] = 79598, + [SMALL_STATE(1890)] = 79620, + [SMALL_STATE(1891)] = 79642, + [SMALL_STATE(1892)] = 79664, + [SMALL_STATE(1893)] = 79697, + [SMALL_STATE(1894)] = 79730, + [SMALL_STATE(1895)] = 79763, + [SMALL_STATE(1896)] = 79796, + [SMALL_STATE(1897)] = 79829, + [SMALL_STATE(1898)] = 79862, + [SMALL_STATE(1899)] = 79895, + [SMALL_STATE(1900)] = 79928, + [SMALL_STATE(1901)] = 79961, + [SMALL_STATE(1902)] = 79994, + [SMALL_STATE(1903)] = 80027, + [SMALL_STATE(1904)] = 80060, + [SMALL_STATE(1905)] = 80076, + [SMALL_STATE(1906)] = 80106, + [SMALL_STATE(1907)] = 80132, + [SMALL_STATE(1908)] = 80148, + [SMALL_STATE(1909)] = 80164, + [SMALL_STATE(1910)] = 80180, + [SMALL_STATE(1911)] = 80196, + [SMALL_STATE(1912)] = 80212, + [SMALL_STATE(1913)] = 80228, + [SMALL_STATE(1914)] = 80250, + [SMALL_STATE(1915)] = 80278, + [SMALL_STATE(1916)] = 80308, + [SMALL_STATE(1917)] = 80338, + [SMALL_STATE(1918)] = 80366, + [SMALL_STATE(1919)] = 80382, + [SMALL_STATE(1920)] = 80398, + [SMALL_STATE(1921)] = 80426, + [SMALL_STATE(1922)] = 80442, + [SMALL_STATE(1923)] = 80458, + [SMALL_STATE(1924)] = 80488, + [SMALL_STATE(1925)] = 80504, + [SMALL_STATE(1926)] = 80520, + [SMALL_STATE(1927)] = 80536, + [SMALL_STATE(1928)] = 80564, + [SMALL_STATE(1929)] = 80592, + [SMALL_STATE(1930)] = 80614, + [SMALL_STATE(1931)] = 80636, + [SMALL_STATE(1932)] = 80664, + [SMALL_STATE(1933)] = 80683, + [SMALL_STATE(1934)] = 80710, + [SMALL_STATE(1935)] = 80737, + [SMALL_STATE(1936)] = 80756, + [SMALL_STATE(1937)] = 80775, + [SMALL_STATE(1938)] = 80794, + [SMALL_STATE(1939)] = 80813, + [SMALL_STATE(1940)] = 80832, + [SMALL_STATE(1941)] = 80851, + [SMALL_STATE(1942)] = 80870, + [SMALL_STATE(1943)] = 80889, + [SMALL_STATE(1944)] = 80908, + [SMALL_STATE(1945)] = 80927, + [SMALL_STATE(1946)] = 80946, + [SMALL_STATE(1947)] = 80965, + [SMALL_STATE(1948)] = 80984, + [SMALL_STATE(1949)] = 81003, + [SMALL_STATE(1950)] = 81030, + [SMALL_STATE(1951)] = 81057, + [SMALL_STATE(1952)] = 81076, + [SMALL_STATE(1953)] = 81095, + [SMALL_STATE(1954)] = 81114, + [SMALL_STATE(1955)] = 81133, + [SMALL_STATE(1956)] = 81152, + [SMALL_STATE(1957)] = 81171, + [SMALL_STATE(1958)] = 81190, + [SMALL_STATE(1959)] = 81209, + [SMALL_STATE(1960)] = 81228, + [SMALL_STATE(1961)] = 81247, + [SMALL_STATE(1962)] = 81266, + [SMALL_STATE(1963)] = 81285, + [SMALL_STATE(1964)] = 81304, + [SMALL_STATE(1965)] = 81323, + [SMALL_STATE(1966)] = 81342, + [SMALL_STATE(1967)] = 81361, + [SMALL_STATE(1968)] = 81380, + [SMALL_STATE(1969)] = 81399, + [SMALL_STATE(1970)] = 81418, + [SMALL_STATE(1971)] = 81437, + [SMALL_STATE(1972)] = 81456, + [SMALL_STATE(1973)] = 81475, + [SMALL_STATE(1974)] = 81494, + [SMALL_STATE(1975)] = 81513, + [SMALL_STATE(1976)] = 81532, + [SMALL_STATE(1977)] = 81551, + [SMALL_STATE(1978)] = 81570, + [SMALL_STATE(1979)] = 81589, + [SMALL_STATE(1980)] = 81608, + [SMALL_STATE(1981)] = 81627, + [SMALL_STATE(1982)] = 81646, + [SMALL_STATE(1983)] = 81665, + [SMALL_STATE(1984)] = 81684, + [SMALL_STATE(1985)] = 81703, + [SMALL_STATE(1986)] = 81722, + [SMALL_STATE(1987)] = 81741, + [SMALL_STATE(1988)] = 81760, + [SMALL_STATE(1989)] = 81779, + [SMALL_STATE(1990)] = 81798, + [SMALL_STATE(1991)] = 81817, + [SMALL_STATE(1992)] = 81836, + [SMALL_STATE(1993)] = 81855, + [SMALL_STATE(1994)] = 81878, + [SMALL_STATE(1995)] = 81897, + [SMALL_STATE(1996)] = 81916, + [SMALL_STATE(1997)] = 81935, + [SMALL_STATE(1998)] = 81954, + [SMALL_STATE(1999)] = 81973, + [SMALL_STATE(2000)] = 81992, + [SMALL_STATE(2001)] = 82011, + [SMALL_STATE(2002)] = 82030, + [SMALL_STATE(2003)] = 82049, + [SMALL_STATE(2004)] = 82068, + [SMALL_STATE(2005)] = 82087, + [SMALL_STATE(2006)] = 82106, + [SMALL_STATE(2007)] = 82125, + [SMALL_STATE(2008)] = 82144, + [SMALL_STATE(2009)] = 82163, + [SMALL_STATE(2010)] = 82182, + [SMALL_STATE(2011)] = 82201, + [SMALL_STATE(2012)] = 82220, + [SMALL_STATE(2013)] = 82239, + [SMALL_STATE(2014)] = 82258, + [SMALL_STATE(2015)] = 82277, + [SMALL_STATE(2016)] = 82296, + [SMALL_STATE(2017)] = 82315, + [SMALL_STATE(2018)] = 82334, + [SMALL_STATE(2019)] = 82353, + [SMALL_STATE(2020)] = 82372, + [SMALL_STATE(2021)] = 82391, + [SMALL_STATE(2022)] = 82410, + [SMALL_STATE(2023)] = 82429, + [SMALL_STATE(2024)] = 82448, + [SMALL_STATE(2025)] = 82467, + [SMALL_STATE(2026)] = 82490, + [SMALL_STATE(2027)] = 82517, + [SMALL_STATE(2028)] = 82544, + [SMALL_STATE(2029)] = 82562, + [SMALL_STATE(2030)] = 82580, + [SMALL_STATE(2031)] = 82598, + [SMALL_STATE(2032)] = 82623, + [SMALL_STATE(2033)] = 82640, + [SMALL_STATE(2034)] = 82661, + [SMALL_STATE(2035)] = 82682, + [SMALL_STATE(2036)] = 82703, + [SMALL_STATE(2037)] = 82720, + [SMALL_STATE(2038)] = 82741, + [SMALL_STATE(2039)] = 82762, + [SMALL_STATE(2040)] = 82783, + [SMALL_STATE(2041)] = 82804, + [SMALL_STATE(2042)] = 82825, + [SMALL_STATE(2043)] = 82846, + [SMALL_STATE(2044)] = 82867, + [SMALL_STATE(2045)] = 82888, + [SMALL_STATE(2046)] = 82909, + [SMALL_STATE(2047)] = 82930, + [SMALL_STATE(2048)] = 82951, + [SMALL_STATE(2049)] = 82972, + [SMALL_STATE(2050)] = 82993, + [SMALL_STATE(2051)] = 83014, + [SMALL_STATE(2052)] = 83035, + [SMALL_STATE(2053)] = 83056, + [SMALL_STATE(2054)] = 83077, + [SMALL_STATE(2055)] = 83098, + [SMALL_STATE(2056)] = 83119, + [SMALL_STATE(2057)] = 83140, + [SMALL_STATE(2058)] = 83161, + [SMALL_STATE(2059)] = 83182, + [SMALL_STATE(2060)] = 83199, + [SMALL_STATE(2061)] = 83220, + [SMALL_STATE(2062)] = 83241, + [SMALL_STATE(2063)] = 83262, + [SMALL_STATE(2064)] = 83283, + [SMALL_STATE(2065)] = 83308, + [SMALL_STATE(2066)] = 83329, + [SMALL_STATE(2067)] = 83354, + [SMALL_STATE(2068)] = 83379, + [SMALL_STATE(2069)] = 83400, + [SMALL_STATE(2070)] = 83421, + [SMALL_STATE(2071)] = 83442, + [SMALL_STATE(2072)] = 83463, + [SMALL_STATE(2073)] = 83484, + [SMALL_STATE(2074)] = 83505, + [SMALL_STATE(2075)] = 83526, + [SMALL_STATE(2076)] = 83547, + [SMALL_STATE(2077)] = 83572, + [SMALL_STATE(2078)] = 83593, + [SMALL_STATE(2079)] = 83614, + [SMALL_STATE(2080)] = 83635, + [SMALL_STATE(2081)] = 83656, + [SMALL_STATE(2082)] = 83677, + [SMALL_STATE(2083)] = 83698, + [SMALL_STATE(2084)] = 83719, + [SMALL_STATE(2085)] = 83740, + [SMALL_STATE(2086)] = 83761, + [SMALL_STATE(2087)] = 83782, + [SMALL_STATE(2088)] = 83807, + [SMALL_STATE(2089)] = 83828, + [SMALL_STATE(2090)] = 83849, + [SMALL_STATE(2091)] = 83870, + [SMALL_STATE(2092)] = 83891, + [SMALL_STATE(2093)] = 83912, + [SMALL_STATE(2094)] = 83933, + [SMALL_STATE(2095)] = 83954, + [SMALL_STATE(2096)] = 83975, + [SMALL_STATE(2097)] = 84000, + [SMALL_STATE(2098)] = 84025, + [SMALL_STATE(2099)] = 84046, + [SMALL_STATE(2100)] = 84067, + [SMALL_STATE(2101)] = 84088, + [SMALL_STATE(2102)] = 84109, + [SMALL_STATE(2103)] = 84130, + [SMALL_STATE(2104)] = 84151, + [SMALL_STATE(2105)] = 84172, + [SMALL_STATE(2106)] = 84193, + [SMALL_STATE(2107)] = 84214, + [SMALL_STATE(2108)] = 84239, + [SMALL_STATE(2109)] = 84260, + [SMALL_STATE(2110)] = 84285, + [SMALL_STATE(2111)] = 84306, + [SMALL_STATE(2112)] = 84327, + [SMALL_STATE(2113)] = 84348, + [SMALL_STATE(2114)] = 84370, + [SMALL_STATE(2115)] = 84392, + [SMALL_STATE(2116)] = 84414, + [SMALL_STATE(2117)] = 84428, + [SMALL_STATE(2118)] = 84450, + [SMALL_STATE(2119)] = 84466, + [SMALL_STATE(2120)] = 84480, + [SMALL_STATE(2121)] = 84502, + [SMALL_STATE(2122)] = 84524, + [SMALL_STATE(2123)] = 84546, + [SMALL_STATE(2124)] = 84568, + [SMALL_STATE(2125)] = 84590, + [SMALL_STATE(2126)] = 84612, + [SMALL_STATE(2127)] = 84625, + [SMALL_STATE(2128)] = 84636, + [SMALL_STATE(2129)] = 84647, + [SMALL_STATE(2130)] = 84658, + [SMALL_STATE(2131)] = 84669, + [SMALL_STATE(2132)] = 84680, + [SMALL_STATE(2133)] = 84691, + [SMALL_STATE(2134)] = 84704, + [SMALL_STATE(2135)] = 84719, + [SMALL_STATE(2136)] = 84730, + [SMALL_STATE(2137)] = 84741, + [SMALL_STATE(2138)] = 84752, + [SMALL_STATE(2139)] = 84763, + [SMALL_STATE(2140)] = 84776, + [SMALL_STATE(2141)] = 84787, + [SMALL_STATE(2142)] = 84798, + [SMALL_STATE(2143)] = 84809, + [SMALL_STATE(2144)] = 84820, + [SMALL_STATE(2145)] = 84835, + [SMALL_STATE(2146)] = 84846, + [SMALL_STATE(2147)] = 84857, + [SMALL_STATE(2148)] = 84868, + [SMALL_STATE(2149)] = 84881, + [SMALL_STATE(2150)] = 84893, + [SMALL_STATE(2151)] = 84909, + [SMALL_STATE(2152)] = 84925, + [SMALL_STATE(2153)] = 84941, + [SMALL_STATE(2154)] = 84957, + [SMALL_STATE(2155)] = 84965, + [SMALL_STATE(2156)] = 84981, + [SMALL_STATE(2157)] = 84997, + [SMALL_STATE(2158)] = 85013, + [SMALL_STATE(2159)] = 85023, + [SMALL_STATE(2160)] = 85039, + [SMALL_STATE(2161)] = 85051, + [SMALL_STATE(2162)] = 85067, + [SMALL_STATE(2163)] = 85079, + [SMALL_STATE(2164)] = 85091, + [SMALL_STATE(2165)] = 85107, + [SMALL_STATE(2166)] = 85119, + [SMALL_STATE(2167)] = 85131, + [SMALL_STATE(2168)] = 85147, + [SMALL_STATE(2169)] = 85159, + [SMALL_STATE(2170)] = 85171, + [SMALL_STATE(2171)] = 85187, + [SMALL_STATE(2172)] = 85199, + [SMALL_STATE(2173)] = 85215, + [SMALL_STATE(2174)] = 85225, + [SMALL_STATE(2175)] = 85241, + [SMALL_STATE(2176)] = 85251, + [SMALL_STATE(2177)] = 85261, + [SMALL_STATE(2178)] = 85277, + [SMALL_STATE(2179)] = 85293, + [SMALL_STATE(2180)] = 85305, + [SMALL_STATE(2181)] = 85321, + [SMALL_STATE(2182)] = 85337, + [SMALL_STATE(2183)] = 85353, + [SMALL_STATE(2184)] = 85369, + [SMALL_STATE(2185)] = 85385, + [SMALL_STATE(2186)] = 85401, + [SMALL_STATE(2187)] = 85411, + [SMALL_STATE(2188)] = 85424, + [SMALL_STATE(2189)] = 85437, + [SMALL_STATE(2190)] = 85450, + [SMALL_STATE(2191)] = 85463, + [SMALL_STATE(2192)] = 85476, + [SMALL_STATE(2193)] = 85489, + [SMALL_STATE(2194)] = 85502, + [SMALL_STATE(2195)] = 85515, + [SMALL_STATE(2196)] = 85528, + [SMALL_STATE(2197)] = 85541, + [SMALL_STATE(2198)] = 85550, + [SMALL_STATE(2199)] = 85559, + [SMALL_STATE(2200)] = 85568, + [SMALL_STATE(2201)] = 85581, + [SMALL_STATE(2202)] = 85594, + [SMALL_STATE(2203)] = 85607, + [SMALL_STATE(2204)] = 85620, + [SMALL_STATE(2205)] = 85629, + [SMALL_STATE(2206)] = 85639, + [SMALL_STATE(2207)] = 85649, + [SMALL_STATE(2208)] = 85659, + [SMALL_STATE(2209)] = 85669, + [SMALL_STATE(2210)] = 85679, + [SMALL_STATE(2211)] = 85689, + [SMALL_STATE(2212)] = 85699, + [SMALL_STATE(2213)] = 85709, + [SMALL_STATE(2214)] = 85719, + [SMALL_STATE(2215)] = 85729, + [SMALL_STATE(2216)] = 85739, + [SMALL_STATE(2217)] = 85749, + [SMALL_STATE(2218)] = 85759, + [SMALL_STATE(2219)] = 85769, + [SMALL_STATE(2220)] = 85779, + [SMALL_STATE(2221)] = 85789, + [SMALL_STATE(2222)] = 85799, + [SMALL_STATE(2223)] = 85809, + [SMALL_STATE(2224)] = 85819, + [SMALL_STATE(2225)] = 85829, + [SMALL_STATE(2226)] = 85839, + [SMALL_STATE(2227)] = 85849, + [SMALL_STATE(2228)] = 85859, + [SMALL_STATE(2229)] = 85869, + [SMALL_STATE(2230)] = 85877, + [SMALL_STATE(2231)] = 85884, + [SMALL_STATE(2232)] = 85891, + [SMALL_STATE(2233)] = 85898, + [SMALL_STATE(2234)] = 85905, + [SMALL_STATE(2235)] = 85912, + [SMALL_STATE(2236)] = 85919, + [SMALL_STATE(2237)] = 85926, + [SMALL_STATE(2238)] = 85933, + [SMALL_STATE(2239)] = 85940, + [SMALL_STATE(2240)] = 85947, + [SMALL_STATE(2241)] = 85954, + [SMALL_STATE(2242)] = 85961, + [SMALL_STATE(2243)] = 85968, + [SMALL_STATE(2244)] = 85975, + [SMALL_STATE(2245)] = 85982, + [SMALL_STATE(2246)] = 85989, + [SMALL_STATE(2247)] = 85996, + [SMALL_STATE(2248)] = 86003, + [SMALL_STATE(2249)] = 86010, + [SMALL_STATE(2250)] = 86017, + [SMALL_STATE(2251)] = 86024, + [SMALL_STATE(2252)] = 86031, + [SMALL_STATE(2253)] = 86038, + [SMALL_STATE(2254)] = 86045, + [SMALL_STATE(2255)] = 86052, + [SMALL_STATE(2256)] = 86059, + [SMALL_STATE(2257)] = 86066, + [SMALL_STATE(2258)] = 86073, + [SMALL_STATE(2259)] = 86080, + [SMALL_STATE(2260)] = 86087, + [SMALL_STATE(2261)] = 86094, + [SMALL_STATE(2262)] = 86101, + [SMALL_STATE(2263)] = 86108, + [SMALL_STATE(2264)] = 86115, + [SMALL_STATE(2265)] = 86122, + [SMALL_STATE(2266)] = 86129, + [SMALL_STATE(2267)] = 86136, + [SMALL_STATE(2268)] = 86143, + [SMALL_STATE(2269)] = 86150, + [SMALL_STATE(2270)] = 86157, + [SMALL_STATE(2271)] = 86164, + [SMALL_STATE(2272)] = 86171, + [SMALL_STATE(2273)] = 86178, + [SMALL_STATE(2274)] = 86185, + [SMALL_STATE(2275)] = 86192, + [SMALL_STATE(2276)] = 86199, + [SMALL_STATE(2277)] = 86206, + [SMALL_STATE(2278)] = 86213, + [SMALL_STATE(2279)] = 86220, + [SMALL_STATE(2280)] = 86227, + [SMALL_STATE(2281)] = 86234, + [SMALL_STATE(2282)] = 86241, + [SMALL_STATE(2283)] = 86248, + [SMALL_STATE(2284)] = 86255, + [SMALL_STATE(2285)] = 86262, + [SMALL_STATE(2286)] = 86269, + [SMALL_STATE(2287)] = 86276, + [SMALL_STATE(2288)] = 86283, + [SMALL_STATE(2289)] = 86290, + [SMALL_STATE(2290)] = 86297, + [SMALL_STATE(2291)] = 86304, + [SMALL_STATE(2292)] = 86311, + [SMALL_STATE(2293)] = 86318, + [SMALL_STATE(2294)] = 86325, + [SMALL_STATE(2295)] = 86332, + [SMALL_STATE(2296)] = 86339, + [SMALL_STATE(2297)] = 86346, + [SMALL_STATE(2298)] = 86353, + [SMALL_STATE(2299)] = 86360, + [SMALL_STATE(2300)] = 86367, + [SMALL_STATE(2301)] = 86374, + [SMALL_STATE(2302)] = 86381, + [SMALL_STATE(2303)] = 86388, + [SMALL_STATE(2304)] = 86395, + [SMALL_STATE(2305)] = 86402, + [SMALL_STATE(2306)] = 86409, + [SMALL_STATE(2307)] = 86416, + [SMALL_STATE(2308)] = 86423, + [SMALL_STATE(2309)] = 86430, + [SMALL_STATE(2310)] = 86437, + [SMALL_STATE(2311)] = 86444, + [SMALL_STATE(2312)] = 86451, + [SMALL_STATE(2313)] = 86458, + [SMALL_STATE(2314)] = 86465, + [SMALL_STATE(2315)] = 86472, + [SMALL_STATE(2316)] = 86479, + [SMALL_STATE(2317)] = 86486, + [SMALL_STATE(2318)] = 86493, + [SMALL_STATE(2319)] = 86500, + [SMALL_STATE(2320)] = 86507, + [SMALL_STATE(2321)] = 86514, + [SMALL_STATE(2322)] = 86521, + [SMALL_STATE(2323)] = 86528, + [SMALL_STATE(2324)] = 86535, + [SMALL_STATE(2325)] = 86542, + [SMALL_STATE(2326)] = 86549, + [SMALL_STATE(2327)] = 86556, + [SMALL_STATE(2328)] = 86563, + [SMALL_STATE(2329)] = 86570, + [SMALL_STATE(2330)] = 86577, + [SMALL_STATE(2331)] = 86584, + [SMALL_STATE(2332)] = 86591, + [SMALL_STATE(2333)] = 86598, + [SMALL_STATE(2334)] = 86605, + [SMALL_STATE(2335)] = 86612, + [SMALL_STATE(2336)] = 86619, + [SMALL_STATE(2337)] = 86626, + [SMALL_STATE(2338)] = 86633, + [SMALL_STATE(2339)] = 86640, + [SMALL_STATE(2340)] = 86647, + [SMALL_STATE(2341)] = 86654, + [SMALL_STATE(2342)] = 86661, + [SMALL_STATE(2343)] = 86668, + [SMALL_STATE(2344)] = 86675, + [SMALL_STATE(2345)] = 86682, + [SMALL_STATE(2346)] = 86689, + [SMALL_STATE(2347)] = 86696, + [SMALL_STATE(2348)] = 86703, + [SMALL_STATE(2349)] = 86710, + [SMALL_STATE(2350)] = 86717, + [SMALL_STATE(2351)] = 86724, + [SMALL_STATE(2352)] = 86731, + [SMALL_STATE(2353)] = 86738, + [SMALL_STATE(2354)] = 86745, + [SMALL_STATE(2355)] = 86752, + [SMALL_STATE(2356)] = 86759, + [SMALL_STATE(2357)] = 86766, + [SMALL_STATE(2358)] = 86771, + [SMALL_STATE(2359)] = 86778, + [SMALL_STATE(2360)] = 86785, + [SMALL_STATE(2361)] = 86792, + [SMALL_STATE(2362)] = 86799, + [SMALL_STATE(2363)] = 86806, + [SMALL_STATE(2364)] = 86813, + [SMALL_STATE(2365)] = 86820, + [SMALL_STATE(2366)] = 86827, + [SMALL_STATE(2367)] = 86834, + [SMALL_STATE(2368)] = 86841, + [SMALL_STATE(2369)] = 86848, + [SMALL_STATE(2370)] = 86855, + [SMALL_STATE(2371)] = 86862, + [SMALL_STATE(2372)] = 86869, + [SMALL_STATE(2373)] = 86876, + [SMALL_STATE(2374)] = 86883, + [SMALL_STATE(2375)] = 86890, + [SMALL_STATE(2376)] = 86897, + [SMALL_STATE(2377)] = 86904, + [SMALL_STATE(2378)] = 86911, + [SMALL_STATE(2379)] = 86918, + [SMALL_STATE(2380)] = 86925, + [SMALL_STATE(2381)] = 86932, + [SMALL_STATE(2382)] = 86939, + [SMALL_STATE(2383)] = 86946, + [SMALL_STATE(2384)] = 86953, + [SMALL_STATE(2385)] = 86960, + [SMALL_STATE(2386)] = 86967, + [SMALL_STATE(2387)] = 86974, + [SMALL_STATE(2388)] = 86981, + [SMALL_STATE(2389)] = 86988, + [SMALL_STATE(2390)] = 86995, + [SMALL_STATE(2391)] = 87002, + [SMALL_STATE(2392)] = 87009, + [SMALL_STATE(2393)] = 87016, + [SMALL_STATE(2394)] = 87023, + [SMALL_STATE(2395)] = 87030, + [SMALL_STATE(2396)] = 87037, + [SMALL_STATE(2397)] = 87044, + [SMALL_STATE(2398)] = 87051, + [SMALL_STATE(2399)] = 87058, + [SMALL_STATE(2400)] = 87065, + [SMALL_STATE(2401)] = 87072, + [SMALL_STATE(2402)] = 87079, + [SMALL_STATE(2403)] = 87086, + [SMALL_STATE(2404)] = 87093, + [SMALL_STATE(2405)] = 87100, + [SMALL_STATE(2406)] = 87107, + [SMALL_STATE(2407)] = 87114, + [SMALL_STATE(2408)] = 87121, + [SMALL_STATE(2409)] = 87128, + [SMALL_STATE(2410)] = 87135, + [SMALL_STATE(2411)] = 87142, + [SMALL_STATE(2412)] = 87149, + [SMALL_STATE(2413)] = 87156, + [SMALL_STATE(2414)] = 87163, + [SMALL_STATE(2415)] = 87170, + [SMALL_STATE(2416)] = 87177, + [SMALL_STATE(2417)] = 87181, + [SMALL_STATE(2418)] = 87185, + [SMALL_STATE(2419)] = 87189, + [SMALL_STATE(2420)] = 87193, + [SMALL_STATE(2421)] = 87197, + [SMALL_STATE(2422)] = 87201, + [SMALL_STATE(2423)] = 87205, + [SMALL_STATE(2424)] = 87209, + [SMALL_STATE(2425)] = 87213, + [SMALL_STATE(2426)] = 87217, + [SMALL_STATE(2427)] = 87221, + [SMALL_STATE(2428)] = 87225, + [SMALL_STATE(2429)] = 87229, + [SMALL_STATE(2430)] = 87233, + [SMALL_STATE(2431)] = 87237, + [SMALL_STATE(2432)] = 87241, + [SMALL_STATE(2433)] = 87245, + [SMALL_STATE(2434)] = 87249, + [SMALL_STATE(2435)] = 87253, + [SMALL_STATE(2436)] = 87257, + [SMALL_STATE(2437)] = 87261, + [SMALL_STATE(2438)] = 87265, + [SMALL_STATE(2439)] = 87269, + [SMALL_STATE(2440)] = 87273, + [SMALL_STATE(2441)] = 87277, + [SMALL_STATE(2442)] = 87281, + [SMALL_STATE(2443)] = 87285, + [SMALL_STATE(2444)] = 87289, + [SMALL_STATE(2445)] = 87293, + [SMALL_STATE(2446)] = 87297, + [SMALL_STATE(2447)] = 87301, + [SMALL_STATE(2448)] = 87305, + [SMALL_STATE(2449)] = 87309, + [SMALL_STATE(2450)] = 87313, + [SMALL_STATE(2451)] = 87317, + [SMALL_STATE(2452)] = 87321, + [SMALL_STATE(2453)] = 87325, + [SMALL_STATE(2454)] = 87329, + [SMALL_STATE(2455)] = 87333, + [SMALL_STATE(2456)] = 87337, + [SMALL_STATE(2457)] = 87341, + [SMALL_STATE(2458)] = 87345, + [SMALL_STATE(2459)] = 87349, + [SMALL_STATE(2460)] = 87353, + [SMALL_STATE(2461)] = 87357, + [SMALL_STATE(2462)] = 87361, + [SMALL_STATE(2463)] = 87365, + [SMALL_STATE(2464)] = 87369, + [SMALL_STATE(2465)] = 87373, + [SMALL_STATE(2466)] = 87377, + [SMALL_STATE(2467)] = 87381, + [SMALL_STATE(2468)] = 87385, + [SMALL_STATE(2469)] = 87389, + [SMALL_STATE(2470)] = 87393, + [SMALL_STATE(2471)] = 87397, + [SMALL_STATE(2472)] = 87401, + [SMALL_STATE(2473)] = 87405, + [SMALL_STATE(2474)] = 87409, + [SMALL_STATE(2475)] = 87413, + [SMALL_STATE(2476)] = 87417, + [SMALL_STATE(2477)] = 87421, + [SMALL_STATE(2478)] = 87425, + [SMALL_STATE(2479)] = 87429, + [SMALL_STATE(2480)] = 87433, + [SMALL_STATE(2481)] = 87437, + [SMALL_STATE(2482)] = 87441, + [SMALL_STATE(2483)] = 87445, + [SMALL_STATE(2484)] = 87449, + [SMALL_STATE(2485)] = 87453, + [SMALL_STATE(2486)] = 87457, + [SMALL_STATE(2487)] = 87461, + [SMALL_STATE(2488)] = 87465, + [SMALL_STATE(2489)] = 87469, + [SMALL_STATE(2490)] = 87473, + [SMALL_STATE(2491)] = 87477, + [SMALL_STATE(2492)] = 87481, + [SMALL_STATE(2493)] = 87485, + [SMALL_STATE(2494)] = 87489, + [SMALL_STATE(2495)] = 87493, + [SMALL_STATE(2496)] = 87497, + [SMALL_STATE(2497)] = 87501, + [SMALL_STATE(2498)] = 87505, + [SMALL_STATE(2499)] = 87509, + [SMALL_STATE(2500)] = 87513, + [SMALL_STATE(2501)] = 87517, + [SMALL_STATE(2502)] = 87521, + [SMALL_STATE(2503)] = 87525, + [SMALL_STATE(2504)] = 87529, + [SMALL_STATE(2505)] = 87533, + [SMALL_STATE(2506)] = 87537, + [SMALL_STATE(2507)] = 87541, + [SMALL_STATE(2508)] = 87545, + [SMALL_STATE(2509)] = 87549, + [SMALL_STATE(2510)] = 87553, + [SMALL_STATE(2511)] = 87557, + [SMALL_STATE(2512)] = 87561, + [SMALL_STATE(2513)] = 87565, + [SMALL_STATE(2514)] = 87569, + [SMALL_STATE(2515)] = 87573, + [SMALL_STATE(2516)] = 87577, + [SMALL_STATE(2517)] = 87581, + [SMALL_STATE(2518)] = 87585, + [SMALL_STATE(2519)] = 87589, + [SMALL_STATE(2520)] = 87593, + [SMALL_STATE(2521)] = 87597, + [SMALL_STATE(2522)] = 87601, + [SMALL_STATE(2523)] = 87605, + [SMALL_STATE(2524)] = 87609, + [SMALL_STATE(2525)] = 87613, + [SMALL_STATE(2526)] = 87617, + [SMALL_STATE(2527)] = 87621, + [SMALL_STATE(2528)] = 87625, + [SMALL_STATE(2529)] = 87629, + [SMALL_STATE(2530)] = 87633, + [SMALL_STATE(2531)] = 87637, + [SMALL_STATE(2532)] = 87641, + [SMALL_STATE(2533)] = 87645, + [SMALL_STATE(2534)] = 87649, + [SMALL_STATE(2535)] = 87653, + [SMALL_STATE(2536)] = 87657, + [SMALL_STATE(2537)] = 87661, + [SMALL_STATE(2538)] = 87665, + [SMALL_STATE(2539)] = 87669, + [SMALL_STATE(2540)] = 87673, + [SMALL_STATE(2541)] = 87677, + [SMALL_STATE(2542)] = 87681, + [SMALL_STATE(2543)] = 87685, + [SMALL_STATE(2544)] = 87689, + [SMALL_STATE(2545)] = 87693, + [SMALL_STATE(2546)] = 87697, + [SMALL_STATE(2547)] = 87701, + [SMALL_STATE(2548)] = 87705, + [SMALL_STATE(2549)] = 87709, + [SMALL_STATE(2550)] = 87713, + [SMALL_STATE(2551)] = 87717, + [SMALL_STATE(2552)] = 87721, + [SMALL_STATE(2553)] = 87725, + [SMALL_STATE(2554)] = 87729, + [SMALL_STATE(2555)] = 87733, + [SMALL_STATE(2556)] = 87737, + [SMALL_STATE(2557)] = 87741, + [SMALL_STATE(2558)] = 87745, + [SMALL_STATE(2559)] = 87749, + [SMALL_STATE(2560)] = 87753, + [SMALL_STATE(2561)] = 87757, + [SMALL_STATE(2562)] = 87761, + [SMALL_STATE(2563)] = 87765, + [SMALL_STATE(2564)] = 87769, + [SMALL_STATE(2565)] = 87773, + [SMALL_STATE(2566)] = 87777, + [SMALL_STATE(2567)] = 87781, + [SMALL_STATE(2568)] = 87785, + [SMALL_STATE(2569)] = 87789, + [SMALL_STATE(2570)] = 87793, + [SMALL_STATE(2571)] = 87797, + [SMALL_STATE(2572)] = 87801, + [SMALL_STATE(2573)] = 87805, + [SMALL_STATE(2574)] = 87809, + [SMALL_STATE(2575)] = 87813, + [SMALL_STATE(2576)] = 87817, + [SMALL_STATE(2577)] = 87821, + [SMALL_STATE(2578)] = 87825, + [SMALL_STATE(2579)] = 87829, + [SMALL_STATE(2580)] = 87833, + [SMALL_STATE(2581)] = 87837, + [SMALL_STATE(2582)] = 87841, + [SMALL_STATE(2583)] = 87845, + [SMALL_STATE(2584)] = 87849, + [SMALL_STATE(2585)] = 87853, + [SMALL_STATE(2586)] = 87857, + [SMALL_STATE(2587)] = 87861, + [SMALL_STATE(2588)] = 87865, + [SMALL_STATE(2589)] = 87869, + [SMALL_STATE(2590)] = 87873, + [SMALL_STATE(2591)] = 87877, + [SMALL_STATE(2592)] = 87881, + [SMALL_STATE(2593)] = 87885, + [SMALL_STATE(2594)] = 87889, + [SMALL_STATE(2595)] = 87893, + [SMALL_STATE(2596)] = 87897, + [SMALL_STATE(2597)] = 87901, + [SMALL_STATE(2598)] = 87905, + [SMALL_STATE(2599)] = 87909, + [SMALL_STATE(2600)] = 87913, + [SMALL_STATE(2601)] = 87917, + [SMALL_STATE(2602)] = 87921, + [SMALL_STATE(2603)] = 87925, + [SMALL_STATE(2604)] = 87929, + [SMALL_STATE(2605)] = 87933, + [SMALL_STATE(2606)] = 87937, + [SMALL_STATE(2607)] = 87941, + [SMALL_STATE(2608)] = 87945, + [SMALL_STATE(2609)] = 87949, + [SMALL_STATE(2610)] = 87953, + [SMALL_STATE(2611)] = 87957, + [SMALL_STATE(2612)] = 87961, + [SMALL_STATE(2613)] = 87965, + [SMALL_STATE(2614)] = 87969, + [SMALL_STATE(2615)] = 87973, + [SMALL_STATE(2616)] = 87977, + [SMALL_STATE(2617)] = 87981, + [SMALL_STATE(2618)] = 87985, + [SMALL_STATE(2619)] = 87989, + [SMALL_STATE(2620)] = 87993, + [SMALL_STATE(2621)] = 87997, + [SMALL_STATE(2622)] = 88001, + [SMALL_STATE(2623)] = 88005, + [SMALL_STATE(2624)] = 88009, + [SMALL_STATE(2625)] = 88013, + [SMALL_STATE(2626)] = 88017, + [SMALL_STATE(2627)] = 88021, + [SMALL_STATE(2628)] = 88025, + [SMALL_STATE(2629)] = 88029, + [SMALL_STATE(2630)] = 88033, + [SMALL_STATE(2631)] = 88037, + [SMALL_STATE(2632)] = 88041, + [SMALL_STATE(2633)] = 88045, + [SMALL_STATE(2634)] = 88049, + [SMALL_STATE(2635)] = 88053, + [SMALL_STATE(2636)] = 88057, + [SMALL_STATE(2637)] = 88061, + [SMALL_STATE(2638)] = 88065, + [SMALL_STATE(2639)] = 88069, + [SMALL_STATE(2640)] = 88073, + [SMALL_STATE(2641)] = 88077, + [SMALL_STATE(2642)] = 88081, + [SMALL_STATE(2643)] = 88085, + [SMALL_STATE(2644)] = 88089, + [SMALL_STATE(2645)] = 88093, + [SMALL_STATE(2646)] = 88097, + [SMALL_STATE(2647)] = 88101, + [SMALL_STATE(2648)] = 88105, + [SMALL_STATE(2649)] = 88109, + [SMALL_STATE(2650)] = 88113, + [SMALL_STATE(2651)] = 88117, + [SMALL_STATE(2652)] = 88121, + [SMALL_STATE(2653)] = 88125, + [SMALL_STATE(2654)] = 88129, + [SMALL_STATE(2655)] = 88133, + [SMALL_STATE(2656)] = 88137, + [SMALL_STATE(2657)] = 88141, + [SMALL_STATE(2658)] = 88145, + [SMALL_STATE(2659)] = 88149, + [SMALL_STATE(2660)] = 88153, + [SMALL_STATE(2661)] = 88157, + [SMALL_STATE(2662)] = 88161, }; 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(745), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(745), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(746), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(746), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(696), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(459), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(692), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2610), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(623), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(519), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(688), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(521), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2592), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2590), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2586), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2585), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(889), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(504), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(509), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2109), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(19), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1260), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(355), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2304), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(351), - [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(354), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(362), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(357), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1011), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1012), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2227), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(510), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(281), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(284), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2458), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(625), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(514), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(686), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(527), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2452), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2607), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2533), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2608), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(12), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1306), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(356), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2317), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(994), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(992), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2318), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(739), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(747), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(739), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(708), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(457), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(687), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2615), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(602), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(515), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(690), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(513), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2597), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2595), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2591), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2590), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(923), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(504), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(505), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2118), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(15), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1288), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(354), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2310), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(359), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(362), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(370), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(381), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(382), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1003), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(991), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2232), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(511), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(215), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(105), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2466), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(538), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(529), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(691), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(525), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2450), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2612), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2448), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2613), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(7), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1377), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(376), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2320), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(925), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(927), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2321), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), [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(79), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [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(77), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 3), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 3), - [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(78), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(80), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ignore_matching_tokens, 2), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(75), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 3), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 3), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [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(2522), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 3), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 3), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 1), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 1), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 1), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 1), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(92), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(96), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(703), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(699), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(699), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(685), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(460), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(658), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(553), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(517), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(687), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(516), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(250), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(661), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(698), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2109), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(508), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(99), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(113), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(704), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(709), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(709), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(689), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(462), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(639), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(544), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(513), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(691), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(518), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(208), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(644), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(695), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2109), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(505), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(204), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(98), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), - [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}}, REDUCE(sym__soft_line_break, 4), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 4), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 9), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 9), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 9), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 9), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 8), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 8), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 8), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 8), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 7), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 7), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 7), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 7), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 6), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 6), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(94), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(707), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(709), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(707), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(685), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(460), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(670), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(623), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(526), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(683), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(524), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(132), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(662), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(702), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2118), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(508), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(103), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(117), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(696), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(697), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(696), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(692), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(456), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(644), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(627), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(514), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(688), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(528), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(238), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(641), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(705), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2118), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(506), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(147), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(101), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(707), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(709), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(707), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(685), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(460), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(670), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(623), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(526), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(683), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(524), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(128), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(662), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(702), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2118), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(508), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(103), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(117), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 4), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 4), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 6), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 6), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 6), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 6), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 2), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 2), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 4), [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 4), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 6), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 6), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(161), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 5), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 5), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 5), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 5), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 5), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 5), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 5), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 5), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 5), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 5), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 5), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 5), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 5), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 5), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(183), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(203), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 2), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 2), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(704), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(709), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(709), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(689), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(462), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(639), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(544), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(513), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(691), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(518), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(258), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(644), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(695), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(2109), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(505), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(204), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(98), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(703), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(699), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(699), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(685), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(460), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(658), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(553), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(517), - [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(687), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(516), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(263), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(661), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(698), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2109), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(508), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(99), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(113), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(704), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(709), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(709), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(689), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(462), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(639), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(544), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(513), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(691), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(518), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(109), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(644), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(695), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2109), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(505), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(204), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(98), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(703), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(699), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(699), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(685), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(460), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(658), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(553), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(517), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(687), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(516), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(124), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(661), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(698), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(508), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(99), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(113), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(286), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1306), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2318), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1252), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1253), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1275), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2121), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2121), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1252), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1253), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1275), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2121), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2121), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(362), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(357), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(354), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(351), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(353), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1252), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1253), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1275), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2121), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2121), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1252), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1253), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1275), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2121), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2121), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1252), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1253), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1275), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2121), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2121), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(745), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(746), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(746), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(696), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(463), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(692), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(636), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(591), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(701), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(546), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(889), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(690), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(830), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(2109), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(510), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(281), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(284), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1260), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2227), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(716), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(458), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(681), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(537), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(524), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(684), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(525), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(391), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(638), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(612), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(369), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(395), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(716), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(458), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(681), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(537), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(524), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(684), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(525), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(401), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(638), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 1), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(612), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(369), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(395), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(834), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(461), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(647), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(535), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(529), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(683), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(530), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(396), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(650), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(615), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(390), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(349), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(834), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(461), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(647), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(535), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(529), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(683), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(530), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(385), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(650), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(615), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(390), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(349), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(745), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(746), - [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(746), - [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(696), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(463), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(692), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(636), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(591), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(701), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(546), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(934), - [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(690), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(830), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(586), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(376), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(358), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(834), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(709), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(709), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(689), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(461), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(647), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(535), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(529), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(683), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(530), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(398), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(650), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(695), - [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(615), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(390), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(349), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(716), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(699), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(699), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(685), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(458), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(681), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(537), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(524), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(684), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(525), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(402), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(638), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(698), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(612), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(369), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(395), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_heading, 3, .production_id = 6), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_heading, 3, .production_id = 6), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(164), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 9), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 9), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 9), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 9), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 7), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 7), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 7), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 7), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(205), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 8), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 8), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(696), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(697), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(696), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(692), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(456), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(644), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(627), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(514), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(688), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(528), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(113), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(641), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(705), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(506), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(147), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(101), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 8), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 8), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(234), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 5), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 5), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 5), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 5), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(696), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(697), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(696), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(692), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(456), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(644), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(627), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(514), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(688), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(528), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(262), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(641), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(705), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(2118), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(506), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(147), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(101), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 5), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 5), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(707), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(709), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(707), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(685), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(460), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(670), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(623), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(526), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(683), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(524), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(267), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(662), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(702), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2118), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(508), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(103), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(117), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 5), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 5), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 5), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 5), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 5), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 5), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 5), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 5), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(285), + [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}}, SHIFT(728), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(370), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(382), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(381), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1218), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1202), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1292), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2147), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2147), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1377), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2321), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(362), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1218), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1202), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1292), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2147), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2147), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1218), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1202), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1292), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2147), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2147), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1218), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1202), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1292), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2147), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2147), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(359), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1218), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1202), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1292), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2147), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2147), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(739), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(747), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(739), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(708), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(463), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(687), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(675), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(595), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(706), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(601), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(923), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(686), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(794), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(2118), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(511), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(215), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(105), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1288), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2232), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(724), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(459), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(646), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(565), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(517), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(689), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(516), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(392), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(659), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(592), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(379), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(386), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(724), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(459), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(646), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(565), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(517), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(689), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(516), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(385), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(659), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 1), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(592), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(379), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(386), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(738), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(461), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(673), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(593), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(518), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(684), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(523), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(387), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(638), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(594), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(388), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(349), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(738), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(461), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(673), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(593), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(518), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(684), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(523), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(389), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(638), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(594), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(388), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(349), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(739), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(747), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(739), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(708), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(463), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(687), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(675), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(595), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(706), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(601), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(867), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(686), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(794), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(590), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(368), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(351), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(696), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(738), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(696), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(692), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(461), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(673), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(593), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(518), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(684), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(523), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(395), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(638), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(705), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(594), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(388), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(349), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(707), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(724), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(707), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(685), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(459), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(646), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(565), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(517), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(689), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(516), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(397), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(659), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(702), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(592), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(379), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(386), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_heading, 3, .production_id = 6), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_heading, 3, .production_id = 6), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 2), [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 2), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6), [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 3, .production_id = 3), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 3, .production_id = 3), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(832), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(940), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(940), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(833), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(707), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2352), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(642), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(581), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(837), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(584), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1039), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(690), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(830), - [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(511), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(471), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(470), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(832), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(940), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(940), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(833), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(707), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2352), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(642), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(581), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(837), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(584), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(987), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1039), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(690), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(830), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(697), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(511), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(471), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(470), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(832), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(940), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(940), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(833), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(707), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2352), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(642), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(581), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(837), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(584), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1039), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(690), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(830), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(511), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(471), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(470), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(786), - [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(970), - [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(970), - [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(784), - [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(702), - [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(607), - [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(526), - [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(781), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(528), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(491), - [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(644), - [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(695), - [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2109), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(507), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(492), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(469), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(755), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(913), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(913), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(747), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(694), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(534), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(515), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(742), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(523), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(484), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(661), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(698), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2109), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(506), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(468), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(490), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(755), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(913), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(913), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(747), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 3, .production_id = 3), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 3, .production_id = 3), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(928), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(832), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(928), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(838), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(695), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2357), + [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(643), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(617), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(841), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(615), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1095), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(686), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(794), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(510), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(469), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(470), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(928), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(832), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(928), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(838), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(695), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2357), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(643), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(617), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(841), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(615), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1066), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1095), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(686), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(794), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(704), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(510), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(469), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(470), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(928), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(832), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(928), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(838), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(695), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2357), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(643), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(617), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(841), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(615), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1095), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(686), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(794), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(510), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(469), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(470), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(976), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(775), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(976), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(778), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(694), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(554), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(527), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(780), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(530), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(486), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(662), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(702), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2118), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(507), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(471), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(477), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(875), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(752), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(875), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(754), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(698), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(569), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(521), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(757), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(522), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(472), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(641), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(705), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2118), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(509), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(482), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(468), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(976), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(775), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(976), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(778), [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(694), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(534), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(515), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(742), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(523), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(483), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(661), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(698), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2109), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(506), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(468), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(490), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(786), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(970), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(970), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(784), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(702), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(607), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(526), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(781), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(528), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(493), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(644), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(695), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(507), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(492), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(469), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(786), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(970), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(970), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(784), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(702), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(607), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(526), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(781), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(528), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(473), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(644), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(695), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(2109), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(507), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(492), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(469), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(832), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(940), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(940), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(833), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(707), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(642), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(581), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(837), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(584), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(1039), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(690), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(830), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(2109), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(511), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(471), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(470), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(755), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(913), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(913), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(747), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(694), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(534), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(515), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(742), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(523), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(481), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(661), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(698), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(2109), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(506), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(468), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(490), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(554), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(527), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(780), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(530), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(478), + [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(662), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(702), + [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(507), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(471), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(477), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(875), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(752), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(875), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(754), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(698), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(569), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(521), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(757), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(522), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(491), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(641), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(705), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2118), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(509), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(482), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(468), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(976), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(775), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(976), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(778), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(694), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(554), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(527), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(780), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(530), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(480), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(662), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(702), + [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(2118), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(507), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(471), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(477), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(928), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(832), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(928), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(838), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(695), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(643), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(617), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(841), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(615), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(1095), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(686), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(794), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(2118), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(510), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(469), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(470), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(875), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(752), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(875), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(754), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(698), + [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(569), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(521), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(757), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(522), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(484), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(641), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(705), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(2118), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(509), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(482), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(468), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 1), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1038), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1057), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), - [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__whitespace, 1), SHIFT(2109), + [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__whitespace, 1), SHIFT(2118), [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1780), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1780), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1782), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1782), [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1764), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1764), - [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1244), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1780), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1780), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1767), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1767), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1201), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1782), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1782), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1764), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1764), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1255), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1780), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1780), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1764), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1764), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1244), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1780), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1780), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1764), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1764), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1255), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1780), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1780), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1764), - [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1764), - [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1251), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1780), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1780), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1764), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1764), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1251), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1767), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1767), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1237), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1782), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1782), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1767), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1767), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1237), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1782), + [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1782), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1767), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1767), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1201), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1782), + [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1782), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1767), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1767), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1194), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1782), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1782), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1767), + [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1767), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1194), [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1755), - [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1755), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1788), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1788), - [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1557), - [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1346), - [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1755), - [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1755), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1788), - [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1788), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1486), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1346), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1755), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1755), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1788), - [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1788), - [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1494), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1346), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1781), - [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1781), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1776), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1776), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1497), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1381), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1755), - [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1755), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1788), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1788), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1494), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1346), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1781), - [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1781), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1776), - [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1776), - [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1551), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1381), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1781), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1781), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1776), - [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1776), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1498), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1381), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1781), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1781), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1776), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1776), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1497), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1381), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1755), - [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1755), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1788), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1788), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1557), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1346), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1781), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1781), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1776), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1776), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1551), - [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1381), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1269), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1269), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1845), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1766), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1766), - [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1492), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1282), - [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1293), - [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1293), - [3364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1846), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1766), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1766), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1559), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1269), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1269), - [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1845), - [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1766), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1766), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1492), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1282), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1282), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(562), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1755), - [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1755), - [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1788), - [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1788), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1486), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1346), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1781), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1781), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1776), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1776), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1498), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1381), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1694), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(606), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1293), - [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1293), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1846), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1766), - [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1766), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1559), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1282), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1703), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1702), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1265), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1265), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1847), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1766), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1766), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1481), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1282), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(641), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1265), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1265), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1847), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1766), - [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1766), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1481), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1282), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1795), - [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1795), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1795), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1795), - [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2364), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2024), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1795), - [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1795), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1409), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1409), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2391), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2024), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1409), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1783), + [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1783), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1766), + [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1766), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1618), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1319), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1761), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1761), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1771), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1771), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1576), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1351), + [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1761), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1761), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1771), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1771), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1628), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1351), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1783), + [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1783), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1766), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1766), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1451), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1761), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1761), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1771), + [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1771), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1455), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1761), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1761), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1771), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1771), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1576), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1351), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1783), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1783), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1766), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1766), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1573), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1319), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1783), + [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1783), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1766), + [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1766), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1573), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1319), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1351), + [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1761), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1761), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1771), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1771), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1455), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1351), + [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1319), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1783), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1783), + [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1766), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1766), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1451), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1319), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1369), + [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1369), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1850), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1790), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1790), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1632), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1287), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1274), + [3379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1274), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1851), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1790), + [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1790), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1456), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1287), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1274), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1274), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1851), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1790), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1790), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1456), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1399), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1399), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1852), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1790), + [3445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1790), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1579), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1287), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1705), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1650), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1399), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1399), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1852), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1790), + [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1790), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1579), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1694), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(607), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(613), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1783), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1783), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1766), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1766), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1618), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1319), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1761), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1761), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1771), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1771), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1628), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1351), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1287), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1287), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1369), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1369), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1850), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1790), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1790), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1632), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1287), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(671), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1813), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1813), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1417), + [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1813), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1813), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2376), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2028), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1417), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1813), + [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1813), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1417), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2396), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2028), [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2299), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2024), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(348), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(330), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 4), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 4), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 5), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 5), - [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(325), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1795), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1795), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1409), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(294), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2364), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2024), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 4), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 4), - [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1795), - [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1795), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1409), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2391), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2024), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 2), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 2), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 2), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 2), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2299), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2024), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(327), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1795), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1795), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1409), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(852), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), - [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 1), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 1), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 1), - [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 1), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 2), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 2), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1168), - [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1168), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(969), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1167), - [4193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1167), - [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(882), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 4), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 4), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 4), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 4), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 2), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 2), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), - [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1094), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 1), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 1), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1691), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1671), - [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1671), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1105), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1698), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1156), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(304), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2307), + [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2028), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(294), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 4), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 4), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 4), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 4), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 2), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 2), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(340), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(735), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(302), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(308), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 2), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 2), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2396), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2028), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1813), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1813), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1417), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 5), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 5), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2376), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2028), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1813), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1813), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1417), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2307), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2028), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1813), + [4023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1813), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1417), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 1), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 1), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 4, .dynamic_precedence = 1, .production_id = 4), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1142), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1142), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), + [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(965), + [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1116), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1116), + [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(974), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 2), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 2), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1032), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 4), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 4), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 4), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 4), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 2), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 2), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1703), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1683), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1683), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1113), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 1), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 1), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1707), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1153), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1671), - [4759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1671), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2109), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1742), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1707), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1707), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1186), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1239), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(2107), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1735), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(2098), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(2107), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1735), - [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(2098), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1741), - [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1704), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1704), - [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1237), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1184), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1242), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1691), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), - [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1691), - [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1245), - [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1671), - [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1671), - [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1105), - [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1780), - [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1764), - [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1764), - [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1246), - [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(2109), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1649), - [4972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1649), - [4975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1247), - [4978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1671), - [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1671), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 2), - [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1698), - [4999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1698), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), - [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1250), - [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1671), - [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1671), - [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1105), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1708), - [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1708), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), - [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1281), - [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1671), - [5198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1671), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1105), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1778), - [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1779), - [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1779), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1285), - [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1393), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1752), - [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1752), - [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(2448), - [5322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1732), - [5325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1732), - [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1315), - [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1207), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), - [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1710), - [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1710), - [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(2447), - [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1739), - [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1739), - [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1316), - [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1209), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), - [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1643), - [5362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1643), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(2107), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1317), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1721), - [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1721), - [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(2431), - [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1744), - [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1744), - [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1320), - [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1218), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), - [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1743), - [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1743), - [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(2416), - [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1749), - [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1749), - [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1321), - [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1219), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1325), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1330), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1338), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1342), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1349), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1355), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1370), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1781), - [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1781), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), - [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1776), - [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1776), - [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1407), - [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1381), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1417), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1789), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1795), - [5807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1795), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1468), - [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(2109), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1821), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1795), - [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1795), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1470), - [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(2109), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language, 1), - [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language, 1), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1521), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1700), - [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1700), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1524), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1755), - [5994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1755), - [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1788), - [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1788), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1546), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1346), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1552), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1555), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1786), - [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1779), - [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1779), - [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1570), - [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1226), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1758), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1779), - [6126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1779), - [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1608), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1226), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1772), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1740), - [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1779), - [6150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1779), - [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1612), - [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1393), - [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1619), - [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1763), - [6173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1775), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1766), - [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1766), - [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1621), - [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1282), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), - [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1816), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1795), - [6244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1795), - [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1647), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1409), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 1), - [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 1), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 1), - [6261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 1), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1651), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1703), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1703), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1185), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1683), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1683), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1113), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1712), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1756), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1756), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1186), + [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1205), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), + [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(2032), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1748), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(2036), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1707), + [4827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1707), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1196), + [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1683), + [4838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1683), + [4841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1113), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 2), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1731), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1758), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1758), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1206), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1248), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1782), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1767), + [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1767), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1207), + [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(2118), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1683), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1683), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2118), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat2, 2), SHIFT_REPEAT(1702), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat2, 2), SHIFT_REPEAT(1702), + [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat2, 2), SHIFT_REPEAT(1220), + [4958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat2, 2), SHIFT_REPEAT(1683), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat2, 2), SHIFT_REPEAT(1683), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat2, 2), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 3), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1236), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), + [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(2032), + [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1748), + [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(2036), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1262), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1266), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1285), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1296), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1305), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1774), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1781), + [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1781), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1313), + [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1280), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1320), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1739), + [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1739), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), + [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1326), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1683), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1683), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1113), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1697), + [5378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1697), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(2032), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1349), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1352), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1743), + [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1743), + [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(2463), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1728), + [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1728), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1394), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1254), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1737), + [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1737), + [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(2459), + [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1716), + [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1716), + [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1397), + [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1241), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1752), + [5579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1752), + [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(2455), + [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1721), + [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1721), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1398), + [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1210), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1732), + [5624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1732), + [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(2458), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1714), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1714), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1406), + [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1233), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1802), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1813), + [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1813), + [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1421), + [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(2118), + [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1422), + [5716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1803), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1813), + [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1813), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1423), + [5730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(2118), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1440), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), + [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1644), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1644), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1457), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1783), + [5848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1783), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1766), + [5856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1766), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1473), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1319), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1762), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1781), + [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1781), + [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1513), + [5955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1204), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1531), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language, 1), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language, 1), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1761), + [6042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1761), + [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1771), + [6048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1771), + [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1563), + [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1351), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1763), + [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1781), + [6063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1781), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1564), + [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1204), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1760), + [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1718), + [6080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1781), + [6083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1781), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1565), + [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1280), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1788), + [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1789), + [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [6108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1790), + [6111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1790), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1568), + [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1287), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1585), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1624), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 1), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 1), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 1), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 1), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1647), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), + [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1653), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1782), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1767), + [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1767), + [6283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1661), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [6337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1780), - [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1764), - [6348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1764), - [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1699), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 1), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 1), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), - [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), - [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), REDUCE(aux_sym_link_title_repeat3, 1), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 1), - [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 1), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), - [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 1), - [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 1), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), - [6419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1824), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), - [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1824), - [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1733), - [6442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1827), - [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1827), - [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), - [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 1), - [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 1), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 1), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 1), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [6477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), - [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [6493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 1), - [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 1), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), - [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), - [6526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), - [6550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [6558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), - [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 3), - [6572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 3), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), - [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), - [6578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 3), - [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 3), - [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), - [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), - [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), - [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), - [6714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2120), - [6717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2120), - [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2109), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1934), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1944), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1950), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2120), - [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2120), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2117), - [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2117), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), - [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), - [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), - [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(2025), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2107), - [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), - [6900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2031), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2142), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), - [6992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2152), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), - [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), - [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), - [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), - [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), - [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2176), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), - [7036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), - [7040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 2), SHIFT_REPEAT(2212), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7439] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), + [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [6345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1817), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), + [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1813), + [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1813), + [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1701), + [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1417), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 1), + [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 1), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [6378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 1), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 1), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [6419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1841), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), + [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1841), + [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1720), + [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1842), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1842), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), + [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 1), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 1), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 1), + [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 1), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [6469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 1), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 1), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), + [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), + [6484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [6487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), + [6492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 1), + [6497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 1), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [6508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 1), + [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 1), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), + [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), + [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), + [6573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [6575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [6579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [6585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [6593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 3), + [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 3), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [6613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), + [6615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), + [6629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), + [6717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2119), + [6720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2119), + [6723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2118), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2116), + [6847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2116), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2018), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2022), + [6876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2024), + [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2119), + [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2119), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), + [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), + [6905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(2030), + [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2032), + [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), + [6941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2059), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2139), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), + [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4), + [7021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2165), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2171), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), + [7031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), + [7037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), + [7041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), + [7049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), + [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), + [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), + [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), + [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 2), SHIFT_REPEAT(2229), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [7452] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), }; #ifdef __cplusplus