From 9e533401729fa144c799dbd98c6551a82bbd7352 Mon Sep 17 00:00:00 2001 From: MDeiml Date: Sun, 5 Mar 2023 12:46:11 +0100 Subject: [PATCH 1/3] Deduplicate leaf span delimiter code --- tree-sitter-markdown-inline/src/scanner.c | 40 +++++++++-------------- 1 file changed, 16 insertions(+), 24 deletions(-) diff --git a/tree-sitter-markdown-inline/src/scanner.c b/tree-sitter-markdown-inline/src/scanner.c index c408bee..27feb52 100644 --- a/tree-sitter-markdown-inline/src/scanner.c +++ b/tree-sitter-markdown-inline/src/scanner.c @@ -90,42 +90,34 @@ static void deserialize(Scanner *s, const char *buffer, unsigned length) { } } -static bool parse_backtick(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { +static bool parse_leaf_delimiter(TSLexer *lexer, uint8_t* delimiter_length, const bool *valid_symbols, + const char delimiter, const TokenType open_token, const TokenType close_token) { size_t level = 0; - while (lexer->lookahead == '`') { + while (lexer->lookahead == delimiter) { lexer->advance(lexer, false); level++; } lexer->mark_end(lexer); - if (level == s->code_span_delimiter_length && valid_symbols[CODE_SPAN_CLOSE]) { - s->code_span_delimiter_length = 0; - lexer->result_symbol = CODE_SPAN_CLOSE; + if (level == *delimiter_length && valid_symbols[close_token]) { + *delimiter_length = 0; + lexer->result_symbol = close_token; return true; - } else if (valid_symbols[CODE_SPAN_START]) { - s->code_span_delimiter_length = level; - lexer->result_symbol = CODE_SPAN_START; + } else if (valid_symbols[open_token]) { + *delimiter_length = level; + lexer->result_symbol = open_token; return true; } return false; } +static bool parse_backtick(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { + return parse_leaf_delimiter(lexer, &s->code_span_delimiter_length, valid_symbols, '`', + CODE_SPAN_START, CODE_SPAN_CLOSE); +} + static bool parse_dollar(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { - size_t level = 0; - while (lexer->lookahead == '$') { - lexer->advance(lexer, false); - level++; - } - lexer->mark_end(lexer); - if (level == s->latex_span_delimiter_length && valid_symbols[LATEX_SPAN_CLOSE]) { - s->latex_span_delimiter_length = 0; - lexer->result_symbol = LATEX_SPAN_CLOSE; - return true; - } else if (valid_symbols[LATEX_SPAN_START]) { - s->latex_span_delimiter_length = level; - lexer->result_symbol = LATEX_SPAN_START; - return true; - } - return false; + return parse_leaf_delimiter(lexer, &s->latex_span_delimiter_length, valid_symbols, '$', + LATEX_SPAN_START, LATEX_SPAN_CLOSE); } static bool parse_star(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { From 2b066e9e6701da4696e4f2e9a6e6165ae8860d84 Mon Sep 17 00:00:00 2001 From: MDeiml Date: Sun, 5 Mar 2023 13:05:53 +0100 Subject: [PATCH 2/3] Avoid conflicts for code spans by parsing ahead --- tree-sitter-markdown-inline/grammar.js | 24 +- tree-sitter-markdown-inline/src/grammar.json | 224 +- tree-sitter-markdown-inline/src/parser.c | 46990 ++++++++--------- tree-sitter-markdown-inline/src/scanner.c | 29 +- 4 files changed, 23582 insertions(+), 23685 deletions(-) diff --git a/tree-sitter-markdown-inline/grammar.js b/tree-sitter-markdown-inline/grammar.js index 706db24..72efe63 100644 --- a/tree-sitter-markdown-inline/grammar.js +++ b/tree-sitter-markdown-inline/grammar.js @@ -9,8 +9,6 @@ const common = require('../common/grammar.js'); const PRECEDENCE_LEVEL_EMPHASIS = 1; const PRECEDENCE_LEVEL_LINK = 10; const PRECEDENCE_LEVEL_HTML = 100; -const PRECEDENCE_LEVEL_CODE_SPAN = 100; -const PRECEDENCE_LEVEL_LATEX = 100; // Punctuation characters as specified in // https://github.github.com/gfm/#ascii-punctuation-character @@ -70,6 +68,10 @@ module.exports = grammar(add_inline_rules({ // An opening token does not mean the text after has to be latex if there is no closing token $._latex_span_start, $._latex_span_close, + + // Token emmited when encountering opening delimiters for a leaf span + // e.g. a code span, that does not have a matching closing span + $._unclosed_span ], precedences: $ => [ // [$._strong_emphasis_star, $._inline_element_no_star], @@ -81,8 +83,6 @@ module.exports = grammar(add_inline_rules({ ], // More conflicts are defined in `add_inline_rules` conflicts: $ => [ - [$.code_span, $._inline_base], - [$.latex_block, $._inline_base], [$._closing_tag, $._text_base], [$._open_tag, $._text_base], @@ -121,25 +121,23 @@ module.exports = grammar(add_inline_rules({ // A lot of inlines are defined in `add_inline_rules`, including: // // * collections of inlines - // * code spans - // * latex spans // * emphasis // * textual content // // This is done to reduce code duplication, as some inlines need to be parsed differently // depending on the context. For example inlines in ATX headings may not contain newlines. - code_span: $ => prec.dynamic(PRECEDENCE_LEVEL_CODE_SPAN, seq( + code_span: $ => seq( alias($._code_span_start, $.code_span_delimiter), repeat(choice($._text_base, '[', ']', $._soft_line_break, $._html_tag)), alias($._code_span_close, $.code_span_delimiter) - )), + ), - latex_block: $ => prec.dynamic(PRECEDENCE_LEVEL_LATEX, seq( + latex_block: $ => seq( alias($._latex_span_start, $.latex_span_delimiter), repeat(choice($._text_base, '[', ']', $._soft_line_break, $._html_tag)), alias($._latex_span_close, $.latex_span_delimiter), - )), + ), // Different kinds of links: // * inline links (https://github.github.com/gfm/#inline-link) @@ -346,9 +344,8 @@ module.exports = grammar(add_inline_rules({ $.code_span, alias($._html_tag, $.html_tag), $._text_base, - $._code_span_start, common.EXTENSION_TAGS ? $.tag : choice(), - (common.EXTENSION_LATEX ? $._latex_span_start : choice()), + $._unclosed_span, ))), _text_base: $ => choice( $._word, @@ -361,10 +358,9 @@ module.exports = grammar(add_inline_rules({ ), _text_inline_no_link: $ => choice( $._text_base, - $._code_span_start, - $._latex_span_start, $._emphasis_open_star, $._emphasis_open_underscore, + $._unclosed_span, ), ...(common.EXTENSION_TAGS ? { diff --git a/tree-sitter-markdown-inline/src/grammar.json b/tree-sitter-markdown-inline/src/grammar.json index b25f3bb..3922336 100644 --- a/tree-sitter-markdown-inline/src/grammar.json +++ b/tree-sitter-markdown-inline/src/grammar.json @@ -1458,114 +1458,106 @@ "value": "\\n|\\r\\n?" }, "code_span": { - "type": "PREC_DYNAMIC", - "value": 100, - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_code_span_start" - }, - "named": true, - "value": "code_span_delimiter" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_text_base" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "_soft_line_break" - }, - { - "type": "SYMBOL", - "name": "_html_tag" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_code_span_start" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_code_span_close" - }, - "named": true, - "value": "code_span_delimiter" + "named": true, + "value": "code_span_delimiter" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text_base" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_html_tag" + } + ] } - ] - } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_code_span_close" + }, + "named": true, + "value": "code_span_delimiter" + } + ] }, "latex_block": { - "type": "PREC_DYNAMIC", - "value": 100, - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_latex_span_start" - }, - "named": true, - "value": "latex_span_delimiter" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_text_base" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "_soft_line_break" - }, - { - "type": "SYMBOL", - "name": "_html_tag" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_latex_span_start" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_latex_span_close" - }, - "named": true, - "value": "latex_span_delimiter" + "named": true, + "value": "latex_span_delimiter" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text_base" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_html_tag" + } + ] } - ] - } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_latex_span_close" + }, + "named": true, + "value": "latex_span_delimiter" + } + ] }, "_link_text": { "type": "PREC_DYNAMIC", @@ -4215,17 +4207,13 @@ "type": "SYMBOL", "name": "_text_base" }, - { - "type": "SYMBOL", - "name": "_code_span_start" - }, { "type": "CHOICE", "members": [] }, { "type": "SYMBOL", - "name": "_latex_span_start" + "name": "_unclosed_span" } ] } @@ -4411,19 +4399,15 @@ }, { "type": "SYMBOL", - "name": "_code_span_start" - }, - { - "type": "SYMBOL", - "name": "_latex_span_start" + "name": "_emphasis_open_star" }, { "type": "SYMBOL", - "name": "_emphasis_open_star" + "name": "_emphasis_open_underscore" }, { "type": "SYMBOL", - "name": "_emphasis_open_underscore" + "name": "_unclosed_span" } ] }, @@ -5556,14 +5540,6 @@ }, "extras": [], "conflicts": [ - [ - "code_span", - "_inline_base" - ], - [ - "latex_block", - "_inline_base" - ], [ "_closing_tag", "_text_base" @@ -5888,6 +5864,10 @@ { "type": "SYMBOL", "name": "_latex_span_close" + }, + { + "type": "SYMBOL", + "name": "_unclosed_span" } ], "inline": [], diff --git a/tree-sitter-markdown-inline/src/parser.c b/tree-sitter-markdown-inline/src/parser.c index 050acbe..a22850b 100644 --- a/tree-sitter-markdown-inline/src/parser.c +++ b/tree-sitter-markdown-inline/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1168 -#define LARGE_STATE_COUNT 180 -#define SYMBOL_COUNT 147 +#define STATE_COUNT 1160 +#define LARGE_STATE_COUNT 166 +#define SYMBOL_COUNT 148 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 66 -#define EXTERNAL_TOKEN_COUNT 14 +#define TOKEN_COUNT 67 +#define EXTERNAL_TOKEN_COUNT 15 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 8 +#define PRODUCTION_ID_COUNT 6 enum { sym__backslash_escape = 1, @@ -90,91 +90,92 @@ enum { sym__strikethrough_close = 63, sym__latex_span_start = 64, sym__latex_span_close = 65, - sym_inline = 66, - sym_backslash_escape = 67, - sym_link_label = 68, - sym_link_destination = 69, - sym__link_destination_parenthesis = 70, - sym__text_no_angle = 71, - sym_link_title = 72, - sym_code_span = 73, - sym_latex_block = 74, - sym__link_text = 75, - sym__link_text_non_empty = 76, - sym_shortcut_link = 77, - sym_full_reference_link = 78, - sym_collapsed_reference_link = 79, - sym_inline_link = 80, - sym_image = 81, - sym__image_inline_link = 82, - sym__image_shortcut_link = 83, - sym__image_full_reference_link = 84, - sym__image_collapsed_reference_link = 85, - sym__image_description = 86, - sym__image_description_non_empty = 87, - sym__html_tag = 88, - sym__open_tag = 89, - sym__closing_tag = 90, - sym__tag_name = 91, - sym__attribute = 92, - sym__attribute_value = 93, - sym__html_comment = 94, - sym__processing_instruction = 95, - sym__declaration = 96, - sym__cdata_section = 97, - sym_hard_line_break = 98, - sym__whitespace = 99, - sym__word = 100, - sym__soft_line_break = 101, - sym__inline_base = 102, - sym__text_base = 103, - sym__text_inline_no_link = 104, - sym__inline_element = 105, - aux_sym__inline = 106, - sym__inline_element_no_star = 107, - aux_sym__inline_no_star = 108, - sym__inline_element_no_underscore = 109, - aux_sym__inline_no_underscore = 110, - sym__inline_element_no_tilde = 111, - aux_sym__inline_no_tilde = 112, - sym__strikethrough = 113, - sym__emphasis_star = 114, - sym__strong_emphasis_star = 115, - sym__emphasis_underscore = 116, - sym__strong_emphasis_underscore = 117, - sym__inline_element_no_link = 118, - aux_sym__inline_no_link = 119, - sym__inline_element_no_star_no_link = 120, - aux_sym__inline_no_star_no_link = 121, - sym__inline_element_no_underscore_no_link = 122, - aux_sym__inline_no_underscore_no_link = 123, - sym__inline_element_no_tilde_no_link = 124, - aux_sym__inline_no_tilde_no_link = 125, - sym__strikethrough_no_link = 126, - sym__emphasis_star_no_link = 127, - sym__strong_emphasis_star_no_link = 128, - sym__emphasis_underscore_no_link = 129, - sym__strong_emphasis_underscore_no_link = 130, - aux_sym_link_label_repeat1 = 131, - aux_sym_link_destination_repeat1 = 132, - aux_sym_link_destination_repeat2 = 133, - aux_sym_link_title_repeat1 = 134, - aux_sym_link_title_repeat2 = 135, - aux_sym_link_title_repeat3 = 136, - aux_sym_code_span_repeat1 = 137, - aux_sym_inline_link_repeat1 = 138, - aux_sym__open_tag_repeat1 = 139, - aux_sym__tag_name_repeat1 = 140, - aux_sym__attribute_value_repeat1 = 141, - aux_sym__attribute_value_repeat2 = 142, - aux_sym__html_comment_repeat1 = 143, - aux_sym__processing_instruction_repeat1 = 144, - aux_sym__declaration_repeat1 = 145, - aux_sym__inline_base_repeat1 = 146, - alias_sym_emphasis = 147, - alias_sym_html_tag = 148, - alias_sym_image_description = 149, - alias_sym_link_text = 150, + sym__unclosed_span = 66, + sym_inline = 67, + sym_backslash_escape = 68, + sym_link_label = 69, + sym_link_destination = 70, + sym__link_destination_parenthesis = 71, + sym__text_no_angle = 72, + sym_link_title = 73, + sym_code_span = 74, + sym_latex_block = 75, + sym__link_text = 76, + sym__link_text_non_empty = 77, + sym_shortcut_link = 78, + sym_full_reference_link = 79, + sym_collapsed_reference_link = 80, + sym_inline_link = 81, + sym_image = 82, + sym__image_inline_link = 83, + sym__image_shortcut_link = 84, + sym__image_full_reference_link = 85, + sym__image_collapsed_reference_link = 86, + sym__image_description = 87, + sym__image_description_non_empty = 88, + sym__html_tag = 89, + sym__open_tag = 90, + sym__closing_tag = 91, + sym__tag_name = 92, + sym__attribute = 93, + sym__attribute_value = 94, + sym__html_comment = 95, + sym__processing_instruction = 96, + sym__declaration = 97, + sym__cdata_section = 98, + sym_hard_line_break = 99, + sym__whitespace = 100, + sym__word = 101, + sym__soft_line_break = 102, + sym__inline_base = 103, + sym__text_base = 104, + sym__text_inline_no_link = 105, + sym__inline_element = 106, + aux_sym__inline = 107, + sym__inline_element_no_star = 108, + aux_sym__inline_no_star = 109, + sym__inline_element_no_underscore = 110, + aux_sym__inline_no_underscore = 111, + sym__inline_element_no_tilde = 112, + aux_sym__inline_no_tilde = 113, + sym__strikethrough = 114, + sym__emphasis_star = 115, + sym__strong_emphasis_star = 116, + sym__emphasis_underscore = 117, + sym__strong_emphasis_underscore = 118, + sym__inline_element_no_link = 119, + aux_sym__inline_no_link = 120, + sym__inline_element_no_star_no_link = 121, + aux_sym__inline_no_star_no_link = 122, + sym__inline_element_no_underscore_no_link = 123, + aux_sym__inline_no_underscore_no_link = 124, + sym__inline_element_no_tilde_no_link = 125, + aux_sym__inline_no_tilde_no_link = 126, + sym__strikethrough_no_link = 127, + sym__emphasis_star_no_link = 128, + sym__strong_emphasis_star_no_link = 129, + sym__emphasis_underscore_no_link = 130, + sym__strong_emphasis_underscore_no_link = 131, + aux_sym_link_label_repeat1 = 132, + aux_sym_link_destination_repeat1 = 133, + aux_sym_link_destination_repeat2 = 134, + aux_sym_link_title_repeat1 = 135, + aux_sym_link_title_repeat2 = 136, + aux_sym_link_title_repeat3 = 137, + aux_sym_code_span_repeat1 = 138, + aux_sym_inline_link_repeat1 = 139, + aux_sym__open_tag_repeat1 = 140, + aux_sym__tag_name_repeat1 = 141, + aux_sym__attribute_value_repeat1 = 142, + aux_sym__attribute_value_repeat2 = 143, + aux_sym__html_comment_repeat1 = 144, + aux_sym__processing_instruction_repeat1 = 145, + aux_sym__declaration_repeat1 = 146, + aux_sym__inline_base_repeat1 = 147, + alias_sym_emphasis = 148, + alias_sym_html_tag = 149, + alias_sym_image_description = 150, + alias_sym_link_text = 151, }; static const char * const ts_symbol_names[] = { @@ -232,7 +233,7 @@ static const char * const ts_symbol_names[] = { [sym__digits] = "_digits", [sym__error] = "_error", [sym__trigger_error] = "_trigger_error", - [sym__code_span_start] = "_code_span_start", + [sym__code_span_start] = "code_span_delimiter", [sym__code_span_close] = "code_span_delimiter", [sym__emphasis_open_star] = "_emphasis_open_star", [sym__emphasis_open_underscore] = "_emphasis_open_underscore", @@ -242,8 +243,9 @@ static const char * const ts_symbol_names[] = { [sym__last_token_punctuation] = "_last_token_punctuation", [sym__strikethrough_open] = "_strikethrough_open", [sym__strikethrough_close] = "emphasis_delimiter", - [sym__latex_span_start] = "_latex_span_start", + [sym__latex_span_start] = "latex_span_delimiter", [sym__latex_span_close] = "latex_span_delimiter", + [sym__unclosed_span] = "_unclosed_span", [sym_inline] = "inline", [sym_backslash_escape] = "backslash_escape", [sym_link_label] = "link_label", @@ -387,7 +389,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__error] = sym__error, [sym__trigger_error] = sym__trigger_error, [sym__code_span_start] = sym__code_span_start, - [sym__code_span_close] = sym__code_span_close, + [sym__code_span_close] = sym__code_span_start, [sym__emphasis_open_star] = sym__emphasis_open_star, [sym__emphasis_open_underscore] = sym__emphasis_open_underscore, [sym__emphasis_close_star] = sym__emphasis_close_star, @@ -397,7 +399,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__strikethrough_open] = sym__strikethrough_open, [sym__strikethrough_close] = sym__emphasis_close_star, [sym__latex_span_start] = sym__latex_span_start, - [sym__latex_span_close] = sym__latex_span_close, + [sym__latex_span_close] = sym__latex_span_start, + [sym__unclosed_span] = sym__unclosed_span, [sym_inline] = sym_inline, [sym_backslash_escape] = sym_backslash_escape, [sym_link_label] = sym_link_label, @@ -703,7 +706,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__code_span_start] = { - .visible = false, + .visible = true, .named = true, }, [sym__code_span_close] = { @@ -743,13 +746,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__latex_span_start] = { - .visible = false, + .visible = true, .named = true, }, [sym__latex_span_close] = { .visible = true, .named = true, }, + [sym__unclosed_span] = { + .visible = false, + .named = true, + }, [sym_inline] = { .visible = true, .named = true, @@ -1101,18 +1108,12 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = alias_sym_emphasis, }, [3] = { - [0] = sym__code_span_close, - }, - [4] = { - [0] = sym__latex_span_close, - }, - [5] = { [0] = sym__emphasis_close_star, }, - [6] = { + [4] = { [1] = alias_sym_link_text, }, - [7] = { + [5] = { [2] = alias_sym_image_description, }, }; @@ -10983,51 +10984,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5] = {.lex_state = 2177, .external_lex_state = 5}, [6] = {.lex_state = 2177, .external_lex_state = 4}, [7] = {.lex_state = 2177, .external_lex_state = 3}, - [8] = {.lex_state = 2177, .external_lex_state = 5}, + [8] = {.lex_state = 2177, .external_lex_state = 6}, [9] = {.lex_state = 2177, .external_lex_state = 6}, - [10] = {.lex_state = 2177, .external_lex_state = 6}, + [10] = {.lex_state = 2177, .external_lex_state = 5}, [11] = {.lex_state = 2177, .external_lex_state = 7}, [12] = {.lex_state = 2177, .external_lex_state = 8}, - [13] = {.lex_state = 2177, .external_lex_state = 4}, - [14] = {.lex_state = 2177, .external_lex_state = 8}, - [15] = {.lex_state = 2177, .external_lex_state = 9}, - [16] = {.lex_state = 2177, .external_lex_state = 7}, + [13] = {.lex_state = 2177, .external_lex_state = 9}, + [14] = {.lex_state = 2177, .external_lex_state = 9}, + [15] = {.lex_state = 2177, .external_lex_state = 7}, + [16] = {.lex_state = 2177, .external_lex_state = 9}, [17] = {.lex_state = 2177, .external_lex_state = 8}, - [18] = {.lex_state = 2177, .external_lex_state = 9}, - [19] = {.lex_state = 2177, .external_lex_state = 7}, - [20] = {.lex_state = 2177, .external_lex_state = 7}, - [21] = {.lex_state = 2177, .external_lex_state = 8}, - [22] = {.lex_state = 2177, .external_lex_state = 9}, - [23] = {.lex_state = 2177, .external_lex_state = 9}, - [24] = {.lex_state = 2177, .external_lex_state = 8}, - [25] = {.lex_state = 2177, .external_lex_state = 9}, + [18] = {.lex_state = 2177, .external_lex_state = 7}, + [19] = {.lex_state = 2177, .external_lex_state = 9}, + [20] = {.lex_state = 2177, .external_lex_state = 8}, + [21] = {.lex_state = 2177, .external_lex_state = 7}, + [22] = {.lex_state = 2177, .external_lex_state = 8}, + [23] = {.lex_state = 2177, .external_lex_state = 8}, + [24] = {.lex_state = 2177, .external_lex_state = 7}, + [25] = {.lex_state = 2177, .external_lex_state = 8}, [26] = {.lex_state = 2177, .external_lex_state = 9}, - [27] = {.lex_state = 2177, .external_lex_state = 8}, - [28] = {.lex_state = 2177, .external_lex_state = 9}, - [29] = {.lex_state = 2177, .external_lex_state = 7}, - [30] = {.lex_state = 2177, .external_lex_state = 8}, + [27] = {.lex_state = 2177, .external_lex_state = 9}, + [28] = {.lex_state = 2177, .external_lex_state = 4}, + [29] = {.lex_state = 2177, .external_lex_state = 4}, + [30] = {.lex_state = 2177, .external_lex_state = 4}, [31] = {.lex_state = 2177, .external_lex_state = 10}, - [32] = {.lex_state = 2177, .external_lex_state = 4}, - [33] = {.lex_state = 2177, .external_lex_state = 9}, - [34] = {.lex_state = 2177, .external_lex_state = 7}, - [35] = {.lex_state = 2177, .external_lex_state = 7}, + [32] = {.lex_state = 2177, .external_lex_state = 8}, + [33] = {.lex_state = 2177, .external_lex_state = 7}, + [34] = {.lex_state = 2177, .external_lex_state = 8}, + [35] = {.lex_state = 2177, .external_lex_state = 9}, [36] = {.lex_state = 2177, .external_lex_state = 4}, - [37] = {.lex_state = 2177, .external_lex_state = 9}, - [38] = {.lex_state = 2177, .external_lex_state = 8}, - [39] = {.lex_state = 2177, .external_lex_state = 4}, + [37] = {.lex_state = 2177, .external_lex_state = 7}, + [38] = {.lex_state = 2177, .external_lex_state = 9}, + [39] = {.lex_state = 2177, .external_lex_state = 9}, [40] = {.lex_state = 2177, .external_lex_state = 7}, - [41] = {.lex_state = 2177, .external_lex_state = 7}, - [42] = {.lex_state = 2177, .external_lex_state = 8}, - [43] = {.lex_state = 2177, .external_lex_state = 4}, - [44] = {.lex_state = 2177, .external_lex_state = 7}, - [45] = {.lex_state = 2177, .external_lex_state = 9}, + [41] = {.lex_state = 2177, .external_lex_state = 9}, + [42] = {.lex_state = 2177, .external_lex_state = 7}, + [43] = {.lex_state = 2177, .external_lex_state = 7}, + [44] = {.lex_state = 2177, .external_lex_state = 4}, + [45] = {.lex_state = 2177, .external_lex_state = 7}, [46] = {.lex_state = 2177, .external_lex_state = 4}, [47] = {.lex_state = 2177, .external_lex_state = 8}, [48] = {.lex_state = 2177, .external_lex_state = 10}, - [49] = {.lex_state = 2177, .external_lex_state = 10}, - [50] = {.lex_state = 2177, .external_lex_state = 7}, - [51] = {.lex_state = 2177, .external_lex_state = 9}, - [52] = {.lex_state = 2177, .external_lex_state = 8}, + [49] = {.lex_state = 2177, .external_lex_state = 8}, + [50] = {.lex_state = 2177, .external_lex_state = 9}, + [51] = {.lex_state = 2177, .external_lex_state = 8}, + [52] = {.lex_state = 2177, .external_lex_state = 10}, [53] = {.lex_state = 2177, .external_lex_state = 10}, [54] = {.lex_state = 2177, .external_lex_state = 10}, [55] = {.lex_state = 2177, .external_lex_state = 10}, @@ -11062,55 +11063,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 2177, .external_lex_state = 10}, [85] = {.lex_state = 2177, .external_lex_state = 10}, [86] = {.lex_state = 2177, .external_lex_state = 6}, - [87] = {.lex_state = 2177, .external_lex_state = 4}, - [88] = {.lex_state = 2177, .external_lex_state = 5}, - [89] = {.lex_state = 2177, .external_lex_state = 3}, + [87] = {.lex_state = 2177, .external_lex_state = 5}, + [88] = {.lex_state = 2177, .external_lex_state = 3}, + [89] = {.lex_state = 2177, .external_lex_state = 4}, [90] = {.lex_state = 2177, .external_lex_state = 4}, - [91] = {.lex_state = 2177, .external_lex_state = 6}, - [92] = {.lex_state = 2177, .external_lex_state = 4}, - [93] = {.lex_state = 2177, .external_lex_state = 3}, + [91] = {.lex_state = 2177, .external_lex_state = 5}, + [92] = {.lex_state = 2177, .external_lex_state = 3}, + [93] = {.lex_state = 2177, .external_lex_state = 4}, [94] = {.lex_state = 2177, .external_lex_state = 4}, [95] = {.lex_state = 2177, .external_lex_state = 4}, - [96] = {.lex_state = 2177, .external_lex_state = 6}, - [97] = {.lex_state = 2177, .external_lex_state = 5}, + [96] = {.lex_state = 2177, .external_lex_state = 3}, + [97] = {.lex_state = 2177, .external_lex_state = 6}, [98] = {.lex_state = 2177, .external_lex_state = 5}, - [99] = {.lex_state = 2177, .external_lex_state = 3}, - [100] = {.lex_state = 2177, .external_lex_state = 9}, - [101] = {.lex_state = 2177, .external_lex_state = 7}, - [102] = {.lex_state = 2177, .external_lex_state = 9}, - [103] = {.lex_state = 2177, .external_lex_state = 8}, - [104] = {.lex_state = 2177, .external_lex_state = 7}, - [105] = {.lex_state = 2177, .external_lex_state = 8}, + [99] = {.lex_state = 2177, .external_lex_state = 6}, + [100] = {.lex_state = 2177, .external_lex_state = 10}, + [101] = {.lex_state = 2177, .external_lex_state = 9}, + [102] = {.lex_state = 2177, .external_lex_state = 7}, + [103] = {.lex_state = 2177, .external_lex_state = 7}, + [104] = {.lex_state = 2177, .external_lex_state = 8}, + [105] = {.lex_state = 2177, .external_lex_state = 9}, [106] = {.lex_state = 2177, .external_lex_state = 10}, - [107] = {.lex_state = 2177, .external_lex_state = 9}, - [108] = {.lex_state = 2177, .external_lex_state = 10}, - [109] = {.lex_state = 2177, .external_lex_state = 10}, + [107] = {.lex_state = 2177, .external_lex_state = 7}, + [108] = {.lex_state = 2177, .external_lex_state = 9}, + [109] = {.lex_state = 2177, .external_lex_state = 9}, [110] = {.lex_state = 2177, .external_lex_state = 8}, - [111] = {.lex_state = 2177, .external_lex_state = 9}, + [111] = {.lex_state = 2177, .external_lex_state = 8}, [112] = {.lex_state = 2177, .external_lex_state = 7}, - [113] = {.lex_state = 2177, .external_lex_state = 8}, - [114] = {.lex_state = 2177, .external_lex_state = 9}, - [115] = {.lex_state = 2177, .external_lex_state = 7}, - [116] = {.lex_state = 2177, .external_lex_state = 9}, + [113] = {.lex_state = 2177, .external_lex_state = 9}, + [114] = {.lex_state = 2177, .external_lex_state = 10}, + [115] = {.lex_state = 2177, .external_lex_state = 9}, + [116] = {.lex_state = 2177, .external_lex_state = 8}, [117] = {.lex_state = 2177, .external_lex_state = 8}, - [118] = {.lex_state = 2177, .external_lex_state = 7}, + [118] = {.lex_state = 2177, .external_lex_state = 9}, [119] = {.lex_state = 2177, .external_lex_state = 7}, [120] = {.lex_state = 2177, .external_lex_state = 9}, - [121] = {.lex_state = 2177, .external_lex_state = 8}, - [122] = {.lex_state = 2177, .external_lex_state = 4}, - [123] = {.lex_state = 2177, .external_lex_state = 10}, - [124] = {.lex_state = 2177, .external_lex_state = 8}, - [125] = {.lex_state = 2177, .external_lex_state = 4}, - [126] = {.lex_state = 2177, .external_lex_state = 8}, - [127] = {.lex_state = 2177, .external_lex_state = 9}, - [128] = {.lex_state = 2177, .external_lex_state = 9}, - [129] = {.lex_state = 2177, .external_lex_state = 7}, + [121] = {.lex_state = 2177, .external_lex_state = 4}, + [122] = {.lex_state = 2177, .external_lex_state = 8}, + [123] = {.lex_state = 2177, .external_lex_state = 7}, + [124] = {.lex_state = 2177, .external_lex_state = 9}, + [125] = {.lex_state = 2177, .external_lex_state = 7}, + [126] = {.lex_state = 2177, .external_lex_state = 4}, + [127] = {.lex_state = 2177, .external_lex_state = 7}, + [128] = {.lex_state = 2177, .external_lex_state = 8}, + [129] = {.lex_state = 2177, .external_lex_state = 8}, [130] = {.lex_state = 2177, .external_lex_state = 8}, [131] = {.lex_state = 2177, .external_lex_state = 10}, - [132] = {.lex_state = 2177, .external_lex_state = 7}, + [132] = {.lex_state = 2177, .external_lex_state = 10}, [133] = {.lex_state = 2177, .external_lex_state = 4}, - [134] = {.lex_state = 2177, .external_lex_state = 7}, - [135] = {.lex_state = 2177, .external_lex_state = 10}, + [134] = {.lex_state = 2177, .external_lex_state = 10}, + [135] = {.lex_state = 2177, .external_lex_state = 7}, [136] = {.lex_state = 2177, .external_lex_state = 10}, [137] = {.lex_state = 2177, .external_lex_state = 10}, [138] = {.lex_state = 2177, .external_lex_state = 10}, @@ -11125,409 +11126,409 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [147] = {.lex_state = 2177, .external_lex_state = 10}, [148] = {.lex_state = 2177, .external_lex_state = 10}, [149] = {.lex_state = 2177, .external_lex_state = 7}, - [150] = {.lex_state = 2177, .external_lex_state = 8}, - [151] = {.lex_state = 2177, .external_lex_state = 10}, + [150] = {.lex_state = 2177, .external_lex_state = 9}, + [151] = {.lex_state = 2177, .external_lex_state = 7}, [152] = {.lex_state = 2177, .external_lex_state = 8}, - [153] = {.lex_state = 2177, .external_lex_state = 7}, + [153] = {.lex_state = 2177, .external_lex_state = 8}, [154] = {.lex_state = 2177, .external_lex_state = 9}, - [155] = {.lex_state = 2177, .external_lex_state = 9}, + [155] = {.lex_state = 2177, .external_lex_state = 10}, [156] = {.lex_state = 2177, .external_lex_state = 10}, [157] = {.lex_state = 2177, .external_lex_state = 10}, - [158] = {.lex_state = 2177, .external_lex_state = 8}, + [158] = {.lex_state = 2177, .external_lex_state = 9}, [159] = {.lex_state = 2177, .external_lex_state = 8}, [160] = {.lex_state = 2177, .external_lex_state = 10}, - [161] = {.lex_state = 2177, .external_lex_state = 7}, - [162] = {.lex_state = 2177, .external_lex_state = 9}, - [163] = {.lex_state = 2177, .external_lex_state = 10}, - [164] = {.lex_state = 2177, .external_lex_state = 9}, + [161] = {.lex_state = 2177, .external_lex_state = 9}, + [162] = {.lex_state = 2177, .external_lex_state = 10}, + [163] = {.lex_state = 2177, .external_lex_state = 7}, + [164] = {.lex_state = 2177, .external_lex_state = 8}, [165] = {.lex_state = 2177, .external_lex_state = 7}, - [166] = {.lex_state = 2177, .external_lex_state = 11}, - [167] = {.lex_state = 2177, .external_lex_state = 12}, - [168] = {.lex_state = 2177, .external_lex_state = 11}, - [169] = {.lex_state = 2177, .external_lex_state = 13}, - [170] = {.lex_state = 2177, .external_lex_state = 14}, - [171] = {.lex_state = 2177, .external_lex_state = 12}, - [172] = {.lex_state = 2177, .external_lex_state = 15}, - [173] = {.lex_state = 2177, .external_lex_state = 16}, - [174] = {.lex_state = 2177, .external_lex_state = 17}, - [175] = {.lex_state = 2177, .external_lex_state = 16}, - [176] = {.lex_state = 2177, .external_lex_state = 18}, - [177] = {.lex_state = 2177, .external_lex_state = 14}, - [178] = {.lex_state = 2177, .external_lex_state = 17}, - [179] = {.lex_state = 2177, .external_lex_state = 13}, - [180] = {.lex_state = 2177, .external_lex_state = 18}, - [181] = {.lex_state = 2177, .external_lex_state = 15}, - [182] = {.lex_state = 2177, .external_lex_state = 18}, - [183] = {.lex_state = 2177, .external_lex_state = 15}, - [184] = {.lex_state = 2175, .external_lex_state = 7}, - [185] = {.lex_state = 2176, .external_lex_state = 7}, + [166] = {.lex_state = 2176, .external_lex_state = 8}, + [167] = {.lex_state = 2175, .external_lex_state = 8}, + [168] = {.lex_state = 2175, .external_lex_state = 8}, + [169] = {.lex_state = 2175, .external_lex_state = 9}, + [170] = {.lex_state = 2175, .external_lex_state = 7}, + [171] = {.lex_state = 2176, .external_lex_state = 9}, + [172] = {.lex_state = 2176, .external_lex_state = 7}, + [173] = {.lex_state = 2175, .external_lex_state = 9}, + [174] = {.lex_state = 2176, .external_lex_state = 7}, + [175] = {.lex_state = 2175, .external_lex_state = 10}, + [176] = {.lex_state = 2176, .external_lex_state = 8}, + [177] = {.lex_state = 2176, .external_lex_state = 9}, + [178] = {.lex_state = 2176, .external_lex_state = 10}, + [179] = {.lex_state = 2175, .external_lex_state = 7}, + [180] = {.lex_state = 2174, .external_lex_state = 8}, + [181] = {.lex_state = 2174, .external_lex_state = 7}, + [182] = {.lex_state = 2174, .external_lex_state = 8}, + [183] = {.lex_state = 2174, .external_lex_state = 10}, + [184] = {.lex_state = 2175, .external_lex_state = 10}, + [185] = {.lex_state = 2174, .external_lex_state = 9}, [186] = {.lex_state = 2175, .external_lex_state = 10}, - [187] = {.lex_state = 2175, .external_lex_state = 8}, - [188] = {.lex_state = 2176, .external_lex_state = 8}, - [189] = {.lex_state = 2176, .external_lex_state = 8}, + [187] = {.lex_state = 2174, .external_lex_state = 7}, + [188] = {.lex_state = 2176, .external_lex_state = 10}, + [189] = {.lex_state = 2174, .external_lex_state = 9}, [190] = {.lex_state = 2176, .external_lex_state = 10}, - [191] = {.lex_state = 2175, .external_lex_state = 8}, - [192] = {.lex_state = 2175, .external_lex_state = 7}, - [193] = {.lex_state = 2176, .external_lex_state = 7}, - [194] = {.lex_state = 2176, .external_lex_state = 9}, - [195] = {.lex_state = 2175, .external_lex_state = 9}, - [196] = {.lex_state = 2176, .external_lex_state = 9}, - [197] = {.lex_state = 2175, .external_lex_state = 9}, - [198] = {.lex_state = 2174, .external_lex_state = 9}, - [199] = {.lex_state = 2174, .external_lex_state = 7}, - [200] = {.lex_state = 2174, .external_lex_state = 8}, - [201] = {.lex_state = 2174, .external_lex_state = 7}, - [202] = {.lex_state = 2175, .external_lex_state = 10}, - [203] = {.lex_state = 2176, .external_lex_state = 10}, - [204] = {.lex_state = 2174, .external_lex_state = 9}, - [205] = {.lex_state = 2174, .external_lex_state = 10}, - [206] = {.lex_state = 2174, .external_lex_state = 8}, - [207] = {.lex_state = 2175, .external_lex_state = 10}, - [208] = {.lex_state = 2176, .external_lex_state = 10}, - [209] = {.lex_state = 2174, .external_lex_state = 10}, - [210] = {.lex_state = 2174, .external_lex_state = 10}, - [211] = {.lex_state = 1, .external_lex_state = 19}, - [212] = {.lex_state = 2177, .external_lex_state = 10}, - [213] = {.lex_state = 7, .external_lex_state = 20}, - [214] = {.lex_state = 1, .external_lex_state = 19}, - [215] = {.lex_state = 1, .external_lex_state = 19}, - [216] = {.lex_state = 1, .external_lex_state = 19}, - [217] = {.lex_state = 7, .external_lex_state = 21}, - [218] = {.lex_state = 7, .external_lex_state = 20}, - [219] = {.lex_state = 2177, .external_lex_state = 4}, - [220] = {.lex_state = 7, .external_lex_state = 20}, - [221] = {.lex_state = 1, .external_lex_state = 19}, - [222] = {.lex_state = 1, .external_lex_state = 19}, - [223] = {.lex_state = 1, .external_lex_state = 19}, - [224] = {.lex_state = 7, .external_lex_state = 21}, - [225] = {.lex_state = 2177, .external_lex_state = 22}, + [191] = {.lex_state = 2174, .external_lex_state = 10}, + [192] = {.lex_state = 2174, .external_lex_state = 10}, + [193] = {.lex_state = 2177, .external_lex_state = 11}, + [194] = {.lex_state = 2177, .external_lex_state = 3}, + [195] = {.lex_state = 2177, .external_lex_state = 6}, + [196] = {.lex_state = 2177, .external_lex_state = 12}, + [197] = {.lex_state = 2177, .external_lex_state = 6}, + [198] = {.lex_state = 2177, .external_lex_state = 7}, + [199] = {.lex_state = 2177, .external_lex_state = 4}, + [200] = {.lex_state = 2177, .external_lex_state = 9}, + [201] = {.lex_state = 2177, .external_lex_state = 4}, + [202] = {.lex_state = 2177, .external_lex_state = 5}, + [203] = {.lex_state = 2177, .external_lex_state = 13}, + [204] = {.lex_state = 2177, .external_lex_state = 8}, + [205] = {.lex_state = 2177, .external_lex_state = 10}, + [206] = {.lex_state = 2177, .external_lex_state = 5}, + [207] = {.lex_state = 2177, .external_lex_state = 2}, + [208] = {.lex_state = 2177, .external_lex_state = 3}, + [209] = {.lex_state = 7, .external_lex_state = 14}, + [210] = {.lex_state = 2177, .external_lex_state = 5}, + [211] = {.lex_state = 2177, .external_lex_state = 6}, + [212] = {.lex_state = 2177, .external_lex_state = 6}, + [213] = {.lex_state = 2177, .external_lex_state = 3}, + [214] = {.lex_state = 2177, .external_lex_state = 10}, + [215] = {.lex_state = 7, .external_lex_state = 15}, + [216] = {.lex_state = 2177, .external_lex_state = 12}, + [217] = {.lex_state = 2177, .external_lex_state = 12}, + [218] = {.lex_state = 7, .external_lex_state = 15}, + [219] = {.lex_state = 2177, .external_lex_state = 3}, + [220] = {.lex_state = 7, .external_lex_state = 15}, + [221] = {.lex_state = 7, .external_lex_state = 14}, + [222] = {.lex_state = 7, .external_lex_state = 15}, + [223] = {.lex_state = 2177, .external_lex_state = 3}, + [224] = {.lex_state = 7, .external_lex_state = 14}, + [225] = {.lex_state = 2177, .external_lex_state = 3}, [226] = {.lex_state = 2177, .external_lex_state = 6}, - [227] = {.lex_state = 1, .external_lex_state = 19}, - [228] = {.lex_state = 7, .external_lex_state = 21}, - [229] = {.lex_state = 7, .external_lex_state = 21}, - [230] = {.lex_state = 1, .external_lex_state = 19}, - [231] = {.lex_state = 2177, .external_lex_state = 7}, - [232] = {.lex_state = 2177, .external_lex_state = 2}, - [233] = {.lex_state = 7, .external_lex_state = 20}, - [234] = {.lex_state = 2177, .external_lex_state = 6}, - [235] = {.lex_state = 2177, .external_lex_state = 3}, - [236] = {.lex_state = 1, .external_lex_state = 19}, - [237] = {.lex_state = 2177, .external_lex_state = 5}, - [238] = {.lex_state = 7, .external_lex_state = 21}, - [239] = {.lex_state = 2177, .external_lex_state = 4}, - [240] = {.lex_state = 7, .external_lex_state = 20}, - [241] = {.lex_state = 2177, .external_lex_state = 23}, - [242] = {.lex_state = 1, .external_lex_state = 19}, - [243] = {.lex_state = 2177, .external_lex_state = 9}, - [244] = {.lex_state = 1, .external_lex_state = 19}, - [245] = {.lex_state = 1, .external_lex_state = 19}, - [246] = {.lex_state = 2177, .external_lex_state = 5}, - [247] = {.lex_state = 2177, .external_lex_state = 3}, - [248] = {.lex_state = 7, .external_lex_state = 20}, - [249] = {.lex_state = 1, .external_lex_state = 19}, - [250] = {.lex_state = 1, .external_lex_state = 19}, - [251] = {.lex_state = 1, .external_lex_state = 19}, - [252] = {.lex_state = 2177, .external_lex_state = 24}, - [253] = {.lex_state = 7, .external_lex_state = 21}, - [254] = {.lex_state = 2177, .external_lex_state = 8}, - [255] = {.lex_state = 2177, .external_lex_state = 2}, - [256] = {.lex_state = 2177, .external_lex_state = 5}, - [257] = {.lex_state = 2177, .external_lex_state = 3}, - [258] = {.lex_state = 2177, .external_lex_state = 24}, - [259] = {.lex_state = 2177, .external_lex_state = 5}, - [260] = {.lex_state = 2177, .external_lex_state = 22}, - [261] = {.lex_state = 2177, .external_lex_state = 5}, - [262] = {.lex_state = 2177, .external_lex_state = 3}, - [263] = {.lex_state = 2177, .external_lex_state = 6}, - [264] = {.lex_state = 2177, .external_lex_state = 24}, - [265] = {.lex_state = 2177, .external_lex_state = 2}, - [266] = {.lex_state = 2177, .external_lex_state = 22}, - [267] = {.lex_state = 2177, .external_lex_state = 5}, - [268] = {.lex_state = 2177, .external_lex_state = 3}, - [269] = {.lex_state = 2177, .external_lex_state = 6}, - [270] = {.lex_state = 2177, .external_lex_state = 4}, - [271] = {.lex_state = 2177, .external_lex_state = 23}, - [272] = {.lex_state = 2177, .external_lex_state = 2}, - [273] = {.lex_state = 2177, .external_lex_state = 6}, - [274] = {.lex_state = 2177, .external_lex_state = 23}, - [275] = {.lex_state = 2177, .external_lex_state = 3}, - [276] = {.lex_state = 2177, .external_lex_state = 6}, - [277] = {.lex_state = 2177, .external_lex_state = 4}, - [278] = {.lex_state = 2177, .external_lex_state = 4}, - [279] = {.lex_state = 2177, .external_lex_state = 6}, - [280] = {.lex_state = 2177, .external_lex_state = 4}, + [227] = {.lex_state = 2177, .external_lex_state = 2}, + [228] = {.lex_state = 7, .external_lex_state = 15}, + [229] = {.lex_state = 7, .external_lex_state = 15}, + [230] = {.lex_state = 2177, .external_lex_state = 6}, + [231] = {.lex_state = 7, .external_lex_state = 14}, + [232] = {.lex_state = 2177, .external_lex_state = 5}, + [233] = {.lex_state = 7, .external_lex_state = 14}, + [234] = {.lex_state = 2177, .external_lex_state = 11}, + [235] = {.lex_state = 7, .external_lex_state = 15}, + [236] = {.lex_state = 7, .external_lex_state = 14}, + [237] = {.lex_state = 7, .external_lex_state = 14}, + [238] = {.lex_state = 2177, .external_lex_state = 4}, + [239] = {.lex_state = 7, .external_lex_state = 14}, + [240] = {.lex_state = 2177, .external_lex_state = 6}, + [241] = {.lex_state = 2177, .external_lex_state = 2}, + [242] = {.lex_state = 2177, .external_lex_state = 11}, + [243] = {.lex_state = 2177, .external_lex_state = 5}, + [244] = {.lex_state = 2177, .external_lex_state = 4}, + [245] = {.lex_state = 2177, .external_lex_state = 5}, + [246] = {.lex_state = 2177, .external_lex_state = 4}, + [247] = {.lex_state = 2177, .external_lex_state = 5}, + [248] = {.lex_state = 2177, .external_lex_state = 13}, + [249] = {.lex_state = 2177, .external_lex_state = 3}, + [250] = {.lex_state = 7, .external_lex_state = 14}, + [251] = {.lex_state = 7, .external_lex_state = 14}, + [252] = {.lex_state = 2177, .external_lex_state = 2}, + [253] = {.lex_state = 2177, .external_lex_state = 4}, + [254] = {.lex_state = 2177, .external_lex_state = 4}, + [255] = {.lex_state = 7, .external_lex_state = 15}, + [256] = {.lex_state = 7, .external_lex_state = 15}, + [257] = {.lex_state = 7, .external_lex_state = 14}, + [258] = {.lex_state = 2177, .external_lex_state = 4}, + [259] = {.lex_state = 2177, .external_lex_state = 13}, + [260] = {.lex_state = 7, .external_lex_state = 15}, + [261] = {.lex_state = 7, .external_lex_state = 15}, + [262] = {.lex_state = 2177, .external_lex_state = 8}, + [263] = {.lex_state = 2177, .external_lex_state = 9}, + [264] = {.lex_state = 2177, .external_lex_state = 10}, + [265] = {.lex_state = 2177, .external_lex_state = 10}, + [266] = {.lex_state = 2177, .external_lex_state = 10}, + [267] = {.lex_state = 2177, .external_lex_state = 10}, + [268] = {.lex_state = 2177, .external_lex_state = 8}, + [269] = {.lex_state = 1, .external_lex_state = 16}, + [270] = {.lex_state = 2177, .external_lex_state = 5}, + [271] = {.lex_state = 2177, .external_lex_state = 7}, + [272] = {.lex_state = 2177, .external_lex_state = 10}, + [273] = {.lex_state = 1, .external_lex_state = 16}, + [274] = {.lex_state = 2177, .external_lex_state = 10}, + [275] = {.lex_state = 2177, .external_lex_state = 10}, + [276] = {.lex_state = 2177, .external_lex_state = 10}, + [277] = {.lex_state = 2177, .external_lex_state = 10}, + [278] = {.lex_state = 2177, .external_lex_state = 10}, + [279] = {.lex_state = 2177, .external_lex_state = 2}, + [280] = {.lex_state = 2177, .external_lex_state = 10}, [281] = {.lex_state = 2177, .external_lex_state = 10}, - [282] = {.lex_state = 2177, .external_lex_state = 4}, - [283] = {.lex_state = 2177, .external_lex_state = 3}, - [284] = {.lex_state = 2177, .external_lex_state = 5}, - [285] = {.lex_state = 2177, .external_lex_state = 4}, - [286] = {.lex_state = 2177, .external_lex_state = 7}, + [282] = {.lex_state = 2177, .external_lex_state = 7}, + [283] = {.lex_state = 2177, .external_lex_state = 10}, + [284] = {.lex_state = 2177, .external_lex_state = 7}, + [285] = {.lex_state = 2177, .external_lex_state = 2}, + [286] = {.lex_state = 2177, .external_lex_state = 3}, [287] = {.lex_state = 2177, .external_lex_state = 10}, - [288] = {.lex_state = 2177, .external_lex_state = 10}, - [289] = {.lex_state = 2177, .external_lex_state = 10}, - [290] = {.lex_state = 2177, .external_lex_state = 10}, - [291] = {.lex_state = 2177, .external_lex_state = 10}, - [292] = {.lex_state = 2177, .external_lex_state = 10}, + [288] = {.lex_state = 1, .external_lex_state = 16}, + [289] = {.lex_state = 2177, .external_lex_state = 4}, + [290] = {.lex_state = 2177, .external_lex_state = 8}, + [291] = {.lex_state = 2177, .external_lex_state = 8}, + [292] = {.lex_state = 2177, .external_lex_state = 9}, [293] = {.lex_state = 2177, .external_lex_state = 10}, [294] = {.lex_state = 2177, .external_lex_state = 10}, [295] = {.lex_state = 2177, .external_lex_state = 10}, [296] = {.lex_state = 2177, .external_lex_state = 10}, - [297] = {.lex_state = 2177, .external_lex_state = 8}, - [298] = {.lex_state = 2177, .external_lex_state = 8}, - [299] = {.lex_state = 2177, .external_lex_state = 9}, - [300] = {.lex_state = 2177, .external_lex_state = 10}, - [301] = {.lex_state = 2177, .external_lex_state = 9}, - [302] = {.lex_state = 2177, .external_lex_state = 7}, + [297] = {.lex_state = 2177, .external_lex_state = 10}, + [298] = {.lex_state = 2177, .external_lex_state = 10}, + [299] = {.lex_state = 2177, .external_lex_state = 10}, + [300] = {.lex_state = 1, .external_lex_state = 16}, + [301] = {.lex_state = 2177, .external_lex_state = 10}, + [302] = {.lex_state = 1, .external_lex_state = 16}, [303] = {.lex_state = 2177, .external_lex_state = 10}, - [304] = {.lex_state = 2177, .external_lex_state = 10}, - [305] = {.lex_state = 2177, .external_lex_state = 10}, + [304] = {.lex_state = 2177, .external_lex_state = 4}, + [305] = {.lex_state = 1, .external_lex_state = 16}, [306] = {.lex_state = 2177, .external_lex_state = 10}, [307] = {.lex_state = 2177, .external_lex_state = 10}, [308] = {.lex_state = 2177, .external_lex_state = 10}, [309] = {.lex_state = 2177, .external_lex_state = 10}, [310] = {.lex_state = 2177, .external_lex_state = 10}, [311] = {.lex_state = 2177, .external_lex_state = 10}, - [312] = {.lex_state = 2177, .external_lex_state = 10}, - [313] = {.lex_state = 2177, .external_lex_state = 10}, - [314] = {.lex_state = 2177, .external_lex_state = 10}, - [315] = {.lex_state = 2177, .external_lex_state = 9}, + [312] = {.lex_state = 2177, .external_lex_state = 8}, + [313] = {.lex_state = 1, .external_lex_state = 16}, + [314] = {.lex_state = 2177, .external_lex_state = 7}, + [315] = {.lex_state = 2177, .external_lex_state = 10}, [316] = {.lex_state = 2177, .external_lex_state = 10}, - [317] = {.lex_state = 2177, .external_lex_state = 10}, - [318] = {.lex_state = 2177, .external_lex_state = 8}, - [319] = {.lex_state = 2177, .external_lex_state = 10}, - [320] = {.lex_state = 2177, .external_lex_state = 10}, - [321] = {.lex_state = 2177, .external_lex_state = 8}, - [322] = {.lex_state = 2177, .external_lex_state = 10}, - [323] = {.lex_state = 2177, .external_lex_state = 10}, + [317] = {.lex_state = 2177, .external_lex_state = 7}, + [318] = {.lex_state = 2177, .external_lex_state = 10}, + [319] = {.lex_state = 2177, .external_lex_state = 6}, + [320] = {.lex_state = 2177, .external_lex_state = 8}, + [321] = {.lex_state = 2177, .external_lex_state = 9}, + [322] = {.lex_state = 2177, .external_lex_state = 9}, + [323] = {.lex_state = 2177, .external_lex_state = 9}, [324] = {.lex_state = 2177, .external_lex_state = 9}, - [325] = {.lex_state = 2177, .external_lex_state = 10}, + [325] = {.lex_state = 2177, .external_lex_state = 9}, [326] = {.lex_state = 2177, .external_lex_state = 10}, - [327] = {.lex_state = 2177, .external_lex_state = 7}, - [328] = {.lex_state = 2177, .external_lex_state = 10}, - [329] = {.lex_state = 2177, .external_lex_state = 10}, - [330] = {.lex_state = 2177, .external_lex_state = 10}, - [331] = {.lex_state = 2177, .external_lex_state = 10}, - [332] = {.lex_state = 2177, .external_lex_state = 10}, - [333] = {.lex_state = 2177, .external_lex_state = 9}, - [334] = {.lex_state = 2177, .external_lex_state = 8}, - [335] = {.lex_state = 2177, .external_lex_state = 4}, - [336] = {.lex_state = 2177, .external_lex_state = 10}, - [337] = {.lex_state = 2177, .external_lex_state = 10}, - [338] = {.lex_state = 2177, .external_lex_state = 10}, - [339] = {.lex_state = 2177, .external_lex_state = 10}, - [340] = {.lex_state = 2177, .external_lex_state = 10}, - [341] = {.lex_state = 2177, .external_lex_state = 8}, - [342] = {.lex_state = 2177, .external_lex_state = 4}, + [327] = {.lex_state = 2177, .external_lex_state = 10}, + [328] = {.lex_state = 1, .external_lex_state = 16}, + [329] = {.lex_state = 2177, .external_lex_state = 9}, + [330] = {.lex_state = 2177, .external_lex_state = 9}, + [331] = {.lex_state = 2177, .external_lex_state = 7}, + [332] = {.lex_state = 2177, .external_lex_state = 4}, + [333] = {.lex_state = 2177, .external_lex_state = 4}, + [334] = {.lex_state = 2177, .external_lex_state = 9}, + [335] = {.lex_state = 2177, .external_lex_state = 9}, + [336] = {.lex_state = 1, .external_lex_state = 16}, + [337] = {.lex_state = 1, .external_lex_state = 16}, + [338] = {.lex_state = 2177, .external_lex_state = 9}, + [339] = {.lex_state = 2177, .external_lex_state = 9}, + [340] = {.lex_state = 2177, .external_lex_state = 9}, + [341] = {.lex_state = 2177, .external_lex_state = 9}, + [342] = {.lex_state = 2177, .external_lex_state = 9}, [343] = {.lex_state = 2177, .external_lex_state = 10}, - [344] = {.lex_state = 2177, .external_lex_state = 10}, - [345] = {.lex_state = 2177, .external_lex_state = 10}, - [346] = {.lex_state = 2177, .external_lex_state = 9}, - [347] = {.lex_state = 2177, .external_lex_state = 8}, - [348] = {.lex_state = 2177, .external_lex_state = 10}, - [349] = {.lex_state = 2177, .external_lex_state = 10}, - [350] = {.lex_state = 2177, .external_lex_state = 10}, - [351] = {.lex_state = 2177, .external_lex_state = 8}, - [352] = {.lex_state = 2177, .external_lex_state = 8}, - [353] = {.lex_state = 2177, .external_lex_state = 8}, - [354] = {.lex_state = 2177, .external_lex_state = 8}, - [355] = {.lex_state = 2177, .external_lex_state = 10}, - [356] = {.lex_state = 2177, .external_lex_state = 10}, - [357] = {.lex_state = 2177, .external_lex_state = 10}, - [358] = {.lex_state = 2177, .external_lex_state = 8}, - [359] = {.lex_state = 2177, .external_lex_state = 8}, - [360] = {.lex_state = 2177, .external_lex_state = 9}, - [361] = {.lex_state = 2177, .external_lex_state = 8}, - [362] = {.lex_state = 2177, .external_lex_state = 8}, + [344] = {.lex_state = 2177, .external_lex_state = 9}, + [345] = {.lex_state = 2177, .external_lex_state = 7}, + [346] = {.lex_state = 2177, .external_lex_state = 7}, + [347] = {.lex_state = 2177, .external_lex_state = 7}, + [348] = {.lex_state = 2177, .external_lex_state = 7}, + [349] = {.lex_state = 1, .external_lex_state = 16}, + [350] = {.lex_state = 2177, .external_lex_state = 9}, + [351] = {.lex_state = 2177, .external_lex_state = 9}, + [352] = {.lex_state = 2177, .external_lex_state = 9}, + [353] = {.lex_state = 2177, .external_lex_state = 7}, + [354] = {.lex_state = 2177, .external_lex_state = 7}, + [355] = {.lex_state = 2177, .external_lex_state = 9}, + [356] = {.lex_state = 2177, .external_lex_state = 9}, + [357] = {.lex_state = 2177, .external_lex_state = 7}, + [358] = {.lex_state = 2177, .external_lex_state = 10}, + [359] = {.lex_state = 2177, .external_lex_state = 9}, + [360] = {.lex_state = 2177, .external_lex_state = 10}, + [361] = {.lex_state = 1, .external_lex_state = 16}, + [362] = {.lex_state = 2177, .external_lex_state = 10}, [363] = {.lex_state = 2177, .external_lex_state = 10}, - [364] = {.lex_state = 2177, .external_lex_state = 10}, - [365] = {.lex_state = 2177, .external_lex_state = 10}, - [366] = {.lex_state = 2177, .external_lex_state = 4}, + [364] = {.lex_state = 2177, .external_lex_state = 7}, + [365] = {.lex_state = 2177, .external_lex_state = 7}, + [366] = {.lex_state = 2177, .external_lex_state = 7}, [367] = {.lex_state = 2177, .external_lex_state = 10}, - [368] = {.lex_state = 2177, .external_lex_state = 5}, - [369] = {.lex_state = 2177, .external_lex_state = 8}, - [370] = {.lex_state = 2177, .external_lex_state = 8}, - [371] = {.lex_state = 2177, .external_lex_state = 8}, - [372] = {.lex_state = 2177, .external_lex_state = 8}, - [373] = {.lex_state = 2177, .external_lex_state = 8}, - [374] = {.lex_state = 2177, .external_lex_state = 8}, - [375] = {.lex_state = 2177, .external_lex_state = 8}, - [376] = {.lex_state = 2177, .external_lex_state = 8}, + [368] = {.lex_state = 2177, .external_lex_state = 7}, + [369] = {.lex_state = 2177, .external_lex_state = 10}, + [370] = {.lex_state = 2177, .external_lex_state = 7}, + [371] = {.lex_state = 2177, .external_lex_state = 7}, + [372] = {.lex_state = 2177, .external_lex_state = 7}, + [373] = {.lex_state = 2177, .external_lex_state = 7}, + [374] = {.lex_state = 2177, .external_lex_state = 7}, + [375] = {.lex_state = 2177, .external_lex_state = 7}, + [376] = {.lex_state = 2177, .external_lex_state = 7}, [377] = {.lex_state = 2177, .external_lex_state = 8}, - [378] = {.lex_state = 2177, .external_lex_state = 8}, + [378] = {.lex_state = 2177, .external_lex_state = 10}, [379] = {.lex_state = 2177, .external_lex_state = 10}, - [380] = {.lex_state = 2177, .external_lex_state = 2}, - [381] = {.lex_state = 2177, .external_lex_state = 2}, - [382] = {.lex_state = 2177, .external_lex_state = 3}, - [383] = {.lex_state = 2177, .external_lex_state = 4}, - [384] = {.lex_state = 2177, .external_lex_state = 6}, + [380] = {.lex_state = 2177, .external_lex_state = 10}, + [381] = {.lex_state = 1, .external_lex_state = 16}, + [382] = {.lex_state = 2177, .external_lex_state = 4}, + [383] = {.lex_state = 1, .external_lex_state = 16}, + [384] = {.lex_state = 2177, .external_lex_state = 7}, [385] = {.lex_state = 2177, .external_lex_state = 7}, - [386] = {.lex_state = 2177, .external_lex_state = 8}, - [387] = {.lex_state = 2177, .external_lex_state = 8}, - [388] = {.lex_state = 2177, .external_lex_state = 8}, - [389] = {.lex_state = 2177, .external_lex_state = 8}, - [390] = {.lex_state = 2177, .external_lex_state = 8}, - [391] = {.lex_state = 2177, .external_lex_state = 8}, - [392] = {.lex_state = 2177, .external_lex_state = 8}, - [393] = {.lex_state = 2177, .external_lex_state = 7}, - [394] = {.lex_state = 2177, .external_lex_state = 7}, - [395] = {.lex_state = 2177, .external_lex_state = 7}, - [396] = {.lex_state = 2177, .external_lex_state = 7}, - [397] = {.lex_state = 2177, .external_lex_state = 7}, - [398] = {.lex_state = 2177, .external_lex_state = 7}, - [399] = {.lex_state = 2177, .external_lex_state = 4}, - [400] = {.lex_state = 2177, .external_lex_state = 7}, - [401] = {.lex_state = 2177, .external_lex_state = 7}, + [386] = {.lex_state = 2177, .external_lex_state = 7}, + [387] = {.lex_state = 2177, .external_lex_state = 7}, + [388] = {.lex_state = 2177, .external_lex_state = 7}, + [389] = {.lex_state = 2177, .external_lex_state = 7}, + [390] = {.lex_state = 2177, .external_lex_state = 7}, + [391] = {.lex_state = 2177, .external_lex_state = 9}, + [392] = {.lex_state = 2177, .external_lex_state = 10}, + [393] = {.lex_state = 2177, .external_lex_state = 9}, + [394] = {.lex_state = 2177, .external_lex_state = 9}, + [395] = {.lex_state = 2177, .external_lex_state = 9}, + [396] = {.lex_state = 2177, .external_lex_state = 9}, + [397] = {.lex_state = 2177, .external_lex_state = 10}, + [398] = {.lex_state = 2177, .external_lex_state = 9}, + [399] = {.lex_state = 2177, .external_lex_state = 9}, + [400] = {.lex_state = 2177, .external_lex_state = 8}, + [401] = {.lex_state = 2177, .external_lex_state = 8}, [402] = {.lex_state = 2177, .external_lex_state = 7}, [403] = {.lex_state = 2177, .external_lex_state = 7}, - [404] = {.lex_state = 2177, .external_lex_state = 8}, - [405] = {.lex_state = 2177, .external_lex_state = 8}, - [406] = {.lex_state = 2177, .external_lex_state = 8}, - [407] = {.lex_state = 2177, .external_lex_state = 7}, - [408] = {.lex_state = 2177, .external_lex_state = 7}, - [409] = {.lex_state = 2177, .external_lex_state = 7}, + [404] = {.lex_state = 2177, .external_lex_state = 7}, + [405] = {.lex_state = 2177, .external_lex_state = 9}, + [406] = {.lex_state = 2177, .external_lex_state = 9}, + [407] = {.lex_state = 2177, .external_lex_state = 8}, + [408] = {.lex_state = 2177, .external_lex_state = 8}, + [409] = {.lex_state = 2177, .external_lex_state = 8}, [410] = {.lex_state = 2177, .external_lex_state = 7}, [411] = {.lex_state = 2177, .external_lex_state = 7}, [412] = {.lex_state = 2177, .external_lex_state = 7}, [413] = {.lex_state = 2177, .external_lex_state = 8}, - [414] = {.lex_state = 2177, .external_lex_state = 8}, + [414] = {.lex_state = 2177, .external_lex_state = 10}, [415] = {.lex_state = 2177, .external_lex_state = 7}, [416] = {.lex_state = 2177, .external_lex_state = 7}, - [417] = {.lex_state = 2177, .external_lex_state = 8}, - [418] = {.lex_state = 2177, .external_lex_state = 8}, - [419] = {.lex_state = 2177, .external_lex_state = 8}, - [420] = {.lex_state = 2177, .external_lex_state = 8}, + [417] = {.lex_state = 2177, .external_lex_state = 7}, + [418] = {.lex_state = 2177, .external_lex_state = 7}, + [419] = {.lex_state = 2177, .external_lex_state = 7}, + [420] = {.lex_state = 2177, .external_lex_state = 7}, [421] = {.lex_state = 2177, .external_lex_state = 8}, - [422] = {.lex_state = 2177, .external_lex_state = 8}, - [423] = {.lex_state = 2177, .external_lex_state = 7}, - [424] = {.lex_state = 2177, .external_lex_state = 7}, + [422] = {.lex_state = 2177, .external_lex_state = 10}, + [423] = {.lex_state = 2177, .external_lex_state = 10}, + [424] = {.lex_state = 2177, .external_lex_state = 9}, [425] = {.lex_state = 2177, .external_lex_state = 9}, - [426] = {.lex_state = 2177, .external_lex_state = 4}, + [426] = {.lex_state = 2177, .external_lex_state = 10}, [427] = {.lex_state = 2177, .external_lex_state = 10}, - [428] = {.lex_state = 2177, .external_lex_state = 7}, - [429] = {.lex_state = 2177, .external_lex_state = 7}, - [430] = {.lex_state = 2177, .external_lex_state = 7}, - [431] = {.lex_state = 2177, .external_lex_state = 7}, - [432] = {.lex_state = 2177, .external_lex_state = 7}, - [433] = {.lex_state = 2177, .external_lex_state = 9}, - [434] = {.lex_state = 2177, .external_lex_state = 9}, - [435] = {.lex_state = 2177, .external_lex_state = 7}, - [436] = {.lex_state = 2177, .external_lex_state = 7}, - [437] = {.lex_state = 2177, .external_lex_state = 9}, - [438] = {.lex_state = 2177, .external_lex_state = 9}, - [439] = {.lex_state = 2177, .external_lex_state = 9}, - [440] = {.lex_state = 2177, .external_lex_state = 9}, - [441] = {.lex_state = 2177, .external_lex_state = 8}, - [442] = {.lex_state = 2177, .external_lex_state = 9}, - [443] = {.lex_state = 2177, .external_lex_state = 9}, - [444] = {.lex_state = 2177, .external_lex_state = 9}, - [445] = {.lex_state = 2177, .external_lex_state = 8}, - [446] = {.lex_state = 2177, .external_lex_state = 9}, - [447] = {.lex_state = 2177, .external_lex_state = 8}, + [428] = {.lex_state = 2177, .external_lex_state = 9}, + [429] = {.lex_state = 2177, .external_lex_state = 10}, + [430] = {.lex_state = 2177, .external_lex_state = 8}, + [431] = {.lex_state = 2177, .external_lex_state = 8}, + [432] = {.lex_state = 2177, .external_lex_state = 10}, + [433] = {.lex_state = 2177, .external_lex_state = 8}, + [434] = {.lex_state = 2177, .external_lex_state = 8}, + [435] = {.lex_state = 2177, .external_lex_state = 8}, + [436] = {.lex_state = 2177, .external_lex_state = 8}, + [437] = {.lex_state = 2177, .external_lex_state = 7}, + [438] = {.lex_state = 2177, .external_lex_state = 8}, + [439] = {.lex_state = 2177, .external_lex_state = 8}, + [440] = {.lex_state = 2177, .external_lex_state = 8}, + [441] = {.lex_state = 2177, .external_lex_state = 7}, + [442] = {.lex_state = 2177, .external_lex_state = 8}, + [443] = {.lex_state = 2177, .external_lex_state = 7}, + [444] = {.lex_state = 2177, .external_lex_state = 7}, + [445] = {.lex_state = 2177, .external_lex_state = 7}, + [446] = {.lex_state = 2177, .external_lex_state = 7}, + [447] = {.lex_state = 2177, .external_lex_state = 7}, [448] = {.lex_state = 2177, .external_lex_state = 8}, [449] = {.lex_state = 2177, .external_lex_state = 8}, [450] = {.lex_state = 2177, .external_lex_state = 8}, [451] = {.lex_state = 2177, .external_lex_state = 8}, - [452] = {.lex_state = 2177, .external_lex_state = 9}, - [453] = {.lex_state = 2177, .external_lex_state = 9}, - [454] = {.lex_state = 2177, .external_lex_state = 9}, - [455] = {.lex_state = 2177, .external_lex_state = 9}, - [456] = {.lex_state = 2177, .external_lex_state = 9}, - [457] = {.lex_state = 2177, .external_lex_state = 9}, - [458] = {.lex_state = 2177, .external_lex_state = 9}, - [459] = {.lex_state = 2177, .external_lex_state = 9}, - [460] = {.lex_state = 2177, .external_lex_state = 9}, - [461] = {.lex_state = 2177, .external_lex_state = 9}, - [462] = {.lex_state = 2177, .external_lex_state = 9}, - [463] = {.lex_state = 2177, .external_lex_state = 8}, + [452] = {.lex_state = 2177, .external_lex_state = 8}, + [453] = {.lex_state = 2177, .external_lex_state = 8}, + [454] = {.lex_state = 2177, .external_lex_state = 8}, + [455] = {.lex_state = 2177, .external_lex_state = 8}, + [456] = {.lex_state = 2177, .external_lex_state = 8}, + [457] = {.lex_state = 2177, .external_lex_state = 8}, + [458] = {.lex_state = 2177, .external_lex_state = 8}, + [459] = {.lex_state = 2177, .external_lex_state = 7}, + [460] = {.lex_state = 2177, .external_lex_state = 7}, + [461] = {.lex_state = 2177, .external_lex_state = 7}, + [462] = {.lex_state = 2177, .external_lex_state = 7}, + [463] = {.lex_state = 2177, .external_lex_state = 7}, [464] = {.lex_state = 2177, .external_lex_state = 8}, [465] = {.lex_state = 2177, .external_lex_state = 8}, [466] = {.lex_state = 2177, .external_lex_state = 8}, [467] = {.lex_state = 2177, .external_lex_state = 8}, - [468] = {.lex_state = 2177, .external_lex_state = 9}, - [469] = {.lex_state = 2177, .external_lex_state = 9}, - [470] = {.lex_state = 2177, .external_lex_state = 9}, - [471] = {.lex_state = 2177, .external_lex_state = 9}, - [472] = {.lex_state = 2177, .external_lex_state = 9}, - [473] = {.lex_state = 2177, .external_lex_state = 9}, - [474] = {.lex_state = 2177, .external_lex_state = 9}, - [475] = {.lex_state = 2177, .external_lex_state = 9}, + [468] = {.lex_state = 2177, .external_lex_state = 8}, + [469] = {.lex_state = 2177, .external_lex_state = 8}, + [470] = {.lex_state = 2177, .external_lex_state = 8}, + [471] = {.lex_state = 2177, .external_lex_state = 7}, + [472] = {.lex_state = 2177, .external_lex_state = 7}, + [473] = {.lex_state = 2177, .external_lex_state = 10}, + [474] = {.lex_state = 1, .external_lex_state = 16}, + [475] = {.lex_state = 2177, .external_lex_state = 7}, [476] = {.lex_state = 2177, .external_lex_state = 7}, - [477] = {.lex_state = 2177, .external_lex_state = 7}, - [478] = {.lex_state = 2177, .external_lex_state = 7}, - [479] = {.lex_state = 2177, .external_lex_state = 9}, - [480] = {.lex_state = 2177, .external_lex_state = 8}, - [481] = {.lex_state = 2177, .external_lex_state = 8}, - [482] = {.lex_state = 2177, .external_lex_state = 9}, - [483] = {.lex_state = 2177, .external_lex_state = 10}, + [477] = {.lex_state = 2177, .external_lex_state = 8}, + [478] = {.lex_state = 2177, .external_lex_state = 8}, + [479] = {.lex_state = 2177, .external_lex_state = 8}, + [480] = {.lex_state = 2177, .external_lex_state = 7}, + [481] = {.lex_state = 2177, .external_lex_state = 7}, + [482] = {.lex_state = 2177, .external_lex_state = 7}, + [483] = {.lex_state = 2177, .external_lex_state = 8}, [484] = {.lex_state = 2177, .external_lex_state = 8}, - [485] = {.lex_state = 2177, .external_lex_state = 8}, - [486] = {.lex_state = 2177, .external_lex_state = 9}, - [487] = {.lex_state = 2177, .external_lex_state = 9}, - [488] = {.lex_state = 2177, .external_lex_state = 9}, - [489] = {.lex_state = 2177, .external_lex_state = 9}, - [490] = {.lex_state = 2177, .external_lex_state = 9}, - [491] = {.lex_state = 2177, .external_lex_state = 7}, + [485] = {.lex_state = 2177, .external_lex_state = 7}, + [486] = {.lex_state = 2177, .external_lex_state = 7}, + [487] = {.lex_state = 2177, .external_lex_state = 8}, + [488] = {.lex_state = 2177, .external_lex_state = 8}, + [489] = {.lex_state = 2177, .external_lex_state = 8}, + [490] = {.lex_state = 2177, .external_lex_state = 8}, + [491] = {.lex_state = 2177, .external_lex_state = 8}, [492] = {.lex_state = 2177, .external_lex_state = 8}, - [493] = {.lex_state = 2177, .external_lex_state = 8}, - [494] = {.lex_state = 2177, .external_lex_state = 8}, - [495] = {.lex_state = 2177, .external_lex_state = 9}, - [496] = {.lex_state = 2177, .external_lex_state = 9}, - [497] = {.lex_state = 2177, .external_lex_state = 8}, - [498] = {.lex_state = 2177, .external_lex_state = 8}, - [499] = {.lex_state = 2177, .external_lex_state = 9}, - [500] = {.lex_state = 2177, .external_lex_state = 9}, - [501] = {.lex_state = 2177, .external_lex_state = 9}, + [493] = {.lex_state = 2177, .external_lex_state = 9}, + [494] = {.lex_state = 2177, .external_lex_state = 10}, + [495] = {.lex_state = 2177, .external_lex_state = 10}, + [496] = {.lex_state = 2177, .external_lex_state = 10}, + [497] = {.lex_state = 2177, .external_lex_state = 10}, + [498] = {.lex_state = 2177, .external_lex_state = 10}, + [499] = {.lex_state = 2177, .external_lex_state = 4}, + [500] = {.lex_state = 2177, .external_lex_state = 10}, + [501] = {.lex_state = 1, .external_lex_state = 16}, [502] = {.lex_state = 2177, .external_lex_state = 9}, [503] = {.lex_state = 2177, .external_lex_state = 9}, [504] = {.lex_state = 2177, .external_lex_state = 9}, - [505] = {.lex_state = 2177, .external_lex_state = 7}, - [506] = {.lex_state = 2177, .external_lex_state = 10}, - [507] = {.lex_state = 2177, .external_lex_state = 7}, - [508] = {.lex_state = 2177, .external_lex_state = 7}, - [509] = {.lex_state = 2177, .external_lex_state = 7}, - [510] = {.lex_state = 2177, .external_lex_state = 7}, - [511] = {.lex_state = 2177, .external_lex_state = 7}, - [512] = {.lex_state = 2177, .external_lex_state = 10}, - [513] = {.lex_state = 2177, .external_lex_state = 10}, - [514] = {.lex_state = 2177, .external_lex_state = 7}, - [515] = {.lex_state = 2177, .external_lex_state = 9}, + [505] = {.lex_state = 2177, .external_lex_state = 9}, + [506] = {.lex_state = 2177, .external_lex_state = 8}, + [507] = {.lex_state = 2177, .external_lex_state = 9}, + [508] = {.lex_state = 2177, .external_lex_state = 9}, + [509] = {.lex_state = 2177, .external_lex_state = 8}, + [510] = {.lex_state = 2177, .external_lex_state = 9}, + [511] = {.lex_state = 2177, .external_lex_state = 8}, + [512] = {.lex_state = 2177, .external_lex_state = 8}, + [513] = {.lex_state = 2177, .external_lex_state = 8}, + [514] = {.lex_state = 2177, .external_lex_state = 8}, + [515] = {.lex_state = 2177, .external_lex_state = 8}, [516] = {.lex_state = 2177, .external_lex_state = 9}, [517] = {.lex_state = 2177, .external_lex_state = 9}, [518] = {.lex_state = 2177, .external_lex_state = 9}, - [519] = {.lex_state = 2177, .external_lex_state = 7}, - [520] = {.lex_state = 2177, .external_lex_state = 7}, - [521] = {.lex_state = 2177, .external_lex_state = 7}, - [522] = {.lex_state = 2177, .external_lex_state = 7}, + [519] = {.lex_state = 2177, .external_lex_state = 9}, + [520] = {.lex_state = 2177, .external_lex_state = 9}, + [521] = {.lex_state = 2177, .external_lex_state = 9}, + [522] = {.lex_state = 2177, .external_lex_state = 9}, [523] = {.lex_state = 2177, .external_lex_state = 9}, [524] = {.lex_state = 2177, .external_lex_state = 9}, - [525] = {.lex_state = 2177, .external_lex_state = 7}, - [526] = {.lex_state = 2177, .external_lex_state = 7}, - [527] = {.lex_state = 2177, .external_lex_state = 9}, - [528] = {.lex_state = 2177, .external_lex_state = 7}, - [529] = {.lex_state = 2177, .external_lex_state = 9}, + [525] = {.lex_state = 2177, .external_lex_state = 9}, + [526] = {.lex_state = 2177, .external_lex_state = 8}, + [527] = {.lex_state = 2177, .external_lex_state = 8}, + [528] = {.lex_state = 2177, .external_lex_state = 8}, + [529] = {.lex_state = 2177, .external_lex_state = 8}, [530] = {.lex_state = 2177, .external_lex_state = 9}, [531] = {.lex_state = 2177, .external_lex_state = 9}, [532] = {.lex_state = 2177, .external_lex_state = 9}, [533] = {.lex_state = 2177, .external_lex_state = 9}, - [534] = {.lex_state = 2177, .external_lex_state = 7}, - [535] = {.lex_state = 2177, .external_lex_state = 7}, - [536] = {.lex_state = 2177, .external_lex_state = 7}, - [537] = {.lex_state = 2177, .external_lex_state = 7}, - [538] = {.lex_state = 2177, .external_lex_state = 7}, - [539] = {.lex_state = 2177, .external_lex_state = 7}, - [540] = {.lex_state = 2177, .external_lex_state = 7}, + [534] = {.lex_state = 2177, .external_lex_state = 9}, + [535] = {.lex_state = 2177, .external_lex_state = 9}, + [536] = {.lex_state = 2177, .external_lex_state = 10}, + [537] = {.lex_state = 2177, .external_lex_state = 10}, + [538] = {.lex_state = 2177, .external_lex_state = 8}, + [539] = {.lex_state = 2177, .external_lex_state = 10}, + [540] = {.lex_state = 2177, .external_lex_state = 9}, [541] = {.lex_state = 2177, .external_lex_state = 7}, - [542] = {.lex_state = 2177, .external_lex_state = 7}, - [543] = {.lex_state = 2177, .external_lex_state = 7}, + [542] = {.lex_state = 2177, .external_lex_state = 10}, + [543] = {.lex_state = 2177, .external_lex_state = 10}, [544] = {.lex_state = 2177, .external_lex_state = 10}, [545] = {.lex_state = 2177, .external_lex_state = 10}, [546] = {.lex_state = 2177, .external_lex_state = 10}, [547] = {.lex_state = 2177, .external_lex_state = 10}, [548] = {.lex_state = 2177, .external_lex_state = 10}, [549] = {.lex_state = 2177, .external_lex_state = 10}, - [550] = {.lex_state = 2177, .external_lex_state = 7}, + [550] = {.lex_state = 2177, .external_lex_state = 10}, [551] = {.lex_state = 2177, .external_lex_state = 10}, - [552] = {.lex_state = 2177, .external_lex_state = 8}, + [552] = {.lex_state = 2177, .external_lex_state = 10}, [553] = {.lex_state = 2177, .external_lex_state = 10}, [554] = {.lex_state = 2177, .external_lex_state = 10}, [555] = {.lex_state = 2177, .external_lex_state = 10}, @@ -11552,7 +11553,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [574] = {.lex_state = 2177, .external_lex_state = 10}, [575] = {.lex_state = 2177, .external_lex_state = 10}, [576] = {.lex_state = 2177, .external_lex_state = 10}, - [577] = {.lex_state = 2177, .external_lex_state = 9}, + [577] = {.lex_state = 2177, .external_lex_state = 10}, [578] = {.lex_state = 2177, .external_lex_state = 10}, [579] = {.lex_state = 2177, .external_lex_state = 10}, [580] = {.lex_state = 2177, .external_lex_state = 10}, @@ -11575,61 +11576,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [597] = {.lex_state = 2177, .external_lex_state = 10}, [598] = {.lex_state = 2177, .external_lex_state = 10}, [599] = {.lex_state = 2177, .external_lex_state = 10}, - [600] = {.lex_state = 2177, .external_lex_state = 10}, + [600] = {.lex_state = 2177, .external_lex_state = 9}, [601] = {.lex_state = 2177, .external_lex_state = 10}, - [602] = {.lex_state = 2177, .external_lex_state = 10}, - [603] = {.lex_state = 2177, .external_lex_state = 10}, + [602] = {.lex_state = 2177, .external_lex_state = 7}, + [603] = {.lex_state = 2177, .external_lex_state = 8}, [604] = {.lex_state = 2177, .external_lex_state = 10}, [605] = {.lex_state = 2177, .external_lex_state = 10}, [606] = {.lex_state = 2177, .external_lex_state = 10}, - [607] = {.lex_state = 2177, .external_lex_state = 10}, + [607] = {.lex_state = 2177, .external_lex_state = 8}, [608] = {.lex_state = 2177, .external_lex_state = 7}, - [609] = {.lex_state = 2177, .external_lex_state = 8}, - [610] = {.lex_state = 2177, .external_lex_state = 10}, - [611] = {.lex_state = 2177, .external_lex_state = 10}, + [609] = {.lex_state = 2177, .external_lex_state = 7}, + [610] = {.lex_state = 2177, .external_lex_state = 7}, + [611] = {.lex_state = 2177, .external_lex_state = 7}, [612] = {.lex_state = 2177, .external_lex_state = 10}, - [613] = {.lex_state = 2177, .external_lex_state = 9}, - [614] = {.lex_state = 2177, .external_lex_state = 10}, - [615] = {.lex_state = 2177, .external_lex_state = 10}, - [616] = {.lex_state = 2177, .external_lex_state = 10}, - [617] = {.lex_state = 2177, .external_lex_state = 10}, + [613] = {.lex_state = 2177, .external_lex_state = 7}, + [614] = {.lex_state = 2177, .external_lex_state = 7}, + [615] = {.lex_state = 2177, .external_lex_state = 7}, + [616] = {.lex_state = 2177, .external_lex_state = 7}, + [617] = {.lex_state = 2177, .external_lex_state = 7}, [618] = {.lex_state = 2177, .external_lex_state = 8}, - [619] = {.lex_state = 2177, .external_lex_state = 9}, + [619] = {.lex_state = 2177, .external_lex_state = 10}, [620] = {.lex_state = 2177, .external_lex_state = 10}, - [621] = {.lex_state = 2177, .external_lex_state = 8}, - [622] = {.lex_state = 2177, .external_lex_state = 8}, - [623] = {.lex_state = 2177, .external_lex_state = 10}, - [624] = {.lex_state = 2177, .external_lex_state = 8}, - [625] = {.lex_state = 2177, .external_lex_state = 9}, + [621] = {.lex_state = 2177, .external_lex_state = 10}, + [622] = {.lex_state = 2177, .external_lex_state = 9}, + [623] = {.lex_state = 2177, .external_lex_state = 9}, + [624] = {.lex_state = 2177, .external_lex_state = 9}, + [625] = {.lex_state = 2177, .external_lex_state = 10}, [626] = {.lex_state = 2177, .external_lex_state = 8}, [627] = {.lex_state = 2177, .external_lex_state = 8}, - [628] = {.lex_state = 2177, .external_lex_state = 8}, - [629] = {.lex_state = 2177, .external_lex_state = 10}, + [628] = {.lex_state = 2177, .external_lex_state = 7}, + [629] = {.lex_state = 2177, .external_lex_state = 9}, [630] = {.lex_state = 2177, .external_lex_state = 9}, [631] = {.lex_state = 2177, .external_lex_state = 9}, - [632] = {.lex_state = 2177, .external_lex_state = 9}, - [633] = {.lex_state = 2177, .external_lex_state = 7}, - [634] = {.lex_state = 2177, .external_lex_state = 7}, - [635] = {.lex_state = 2177, .external_lex_state = 7}, - [636] = {.lex_state = 2177, .external_lex_state = 9}, - [637] = {.lex_state = 2177, .external_lex_state = 9}, - [638] = {.lex_state = 2177, .external_lex_state = 7}, + [632] = {.lex_state = 2177, .external_lex_state = 10}, + [633] = {.lex_state = 2177, .external_lex_state = 8}, + [634] = {.lex_state = 2177, .external_lex_state = 8}, + [635] = {.lex_state = 2177, .external_lex_state = 9}, + [636] = {.lex_state = 2177, .external_lex_state = 8}, + [637] = {.lex_state = 2177, .external_lex_state = 8}, + [638] = {.lex_state = 2177, .external_lex_state = 9}, [639] = {.lex_state = 2177, .external_lex_state = 8}, - [640] = {.lex_state = 2177, .external_lex_state = 7}, - [641] = {.lex_state = 2177, .external_lex_state = 7}, + [640] = {.lex_state = 2177, .external_lex_state = 8}, + [641] = {.lex_state = 2177, .external_lex_state = 8}, [642] = {.lex_state = 2177, .external_lex_state = 8}, - [643] = {.lex_state = 2177, .external_lex_state = 9}, - [644] = {.lex_state = 2177, .external_lex_state = 9}, - [645] = {.lex_state = 2177, .external_lex_state = 7}, - [646] = {.lex_state = 2177, .external_lex_state = 8}, - [647] = {.lex_state = 2177, .external_lex_state = 7}, - [648] = {.lex_state = 2177, .external_lex_state = 8}, - [649] = {.lex_state = 2177, .external_lex_state = 9}, - [650] = {.lex_state = 2177, .external_lex_state = 9}, - [651] = {.lex_state = 2177, .external_lex_state = 8}, - [652] = {.lex_state = 2177, .external_lex_state = 9}, - [653] = {.lex_state = 2}, - [654] = {.lex_state = 1, .external_lex_state = 25}, + [643] = {.lex_state = 2177, .external_lex_state = 7}, + [644] = {.lex_state = 2177, .external_lex_state = 7}, + [645] = {.lex_state = 2}, + [646] = {.lex_state = 2}, + [647] = {.lex_state = 2}, + [648] = {.lex_state = 2}, + [649] = {.lex_state = 2}, + [650] = {.lex_state = 2}, + [651] = {.lex_state = 2}, + [652] = {.lex_state = 2}, + [653] = {.lex_state = 2, .external_lex_state = 17}, + [654] = {.lex_state = 2}, [655] = {.lex_state = 2}, [656] = {.lex_state = 2}, [657] = {.lex_state = 2}, @@ -11638,217 +11639,217 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [660] = {.lex_state = 2}, [661] = {.lex_state = 2}, [662] = {.lex_state = 2}, - [663] = {.lex_state = 2, .external_lex_state = 26}, + [663] = {.lex_state = 2}, [664] = {.lex_state = 2}, - [665] = {.lex_state = 2, .external_lex_state = 26}, - [666] = {.lex_state = 2}, - [667] = {.lex_state = 2}, - [668] = {.lex_state = 2}, - [669] = {.lex_state = 2}, + [665] = {.lex_state = 2}, + [666] = {.lex_state = 2, .external_lex_state = 17}, + [667] = {.lex_state = 1, .external_lex_state = 18}, + [668] = {.lex_state = 6, .external_lex_state = 15}, + [669] = {.lex_state = 1, .external_lex_state = 19}, [670] = {.lex_state = 2}, - [671] = {.lex_state = 2}, - [672] = {.lex_state = 2}, - [673] = {.lex_state = 1, .external_lex_state = 27}, - [674] = {.lex_state = 1, .external_lex_state = 27}, - [675] = {.lex_state = 2}, - [676] = {.lex_state = 2}, - [677] = {.lex_state = 2}, - [678] = {.lex_state = 1, .external_lex_state = 19}, - [679] = {.lex_state = 1, .external_lex_state = 19}, - [680] = {.lex_state = 2}, - [681] = {.lex_state = 6, .external_lex_state = 21}, - [682] = {.lex_state = 6, .external_lex_state = 20}, - [683] = {.lex_state = 5, .external_lex_state = 20}, - [684] = {.lex_state = 5, .external_lex_state = 21}, - [685] = {.lex_state = 1, .external_lex_state = 19}, - [686] = {.lex_state = 1, .external_lex_state = 19}, - [687] = {.lex_state = 3, .external_lex_state = 20}, - [688] = {.lex_state = 3, .external_lex_state = 21}, + [671] = {.lex_state = 6, .external_lex_state = 14}, + [672] = {.lex_state = 5, .external_lex_state = 14}, + [673] = {.lex_state = 5, .external_lex_state = 15}, + [674] = {.lex_state = 1, .external_lex_state = 18}, + [675] = {.lex_state = 1, .external_lex_state = 16}, + [676] = {.lex_state = 1, .external_lex_state = 16}, + [677] = {.lex_state = 3, .external_lex_state = 14}, + [678] = {.lex_state = 1, .external_lex_state = 16}, + [679] = {.lex_state = 1, .external_lex_state = 16}, + [680] = {.lex_state = 3, .external_lex_state = 15}, + [681] = {.lex_state = 2}, + [682] = {.lex_state = 2, .external_lex_state = 17}, + [683] = {.lex_state = 2}, + [684] = {.lex_state = 2}, + [685] = {.lex_state = 2, .external_lex_state = 17}, + [686] = {.lex_state = 2, .external_lex_state = 17}, + [687] = {.lex_state = 2}, + [688] = {.lex_state = 2}, [689] = {.lex_state = 2}, - [690] = {.lex_state = 2}, + [690] = {.lex_state = 7, .external_lex_state = 20}, [691] = {.lex_state = 2}, [692] = {.lex_state = 2}, - [693] = {.lex_state = 2}, + [693] = {.lex_state = 7, .external_lex_state = 15}, [694] = {.lex_state = 2}, - [695] = {.lex_state = 2, .external_lex_state = 26}, - [696] = {.lex_state = 2, .external_lex_state = 26}, - [697] = {.lex_state = 2, .external_lex_state = 26}, - [698] = {.lex_state = 7, .external_lex_state = 21}, - [699] = {.lex_state = 7, .external_lex_state = 28}, - [700] = {.lex_state = 2}, - [701] = {.lex_state = 7, .external_lex_state = 29}, - [702] = {.lex_state = 2}, - [703] = {.lex_state = 2}, - [704] = {.lex_state = 2}, - [705] = {.lex_state = 2}, - [706] = {.lex_state = 2}, - [707] = {.lex_state = 2}, - [708] = {.lex_state = 7, .external_lex_state = 20}, - [709] = {.lex_state = 2}, - [710] = {.lex_state = 7, .external_lex_state = 29}, - [711] = {.lex_state = 4, .external_lex_state = 26}, - [712] = {.lex_state = 4, .external_lex_state = 26}, - [713] = {.lex_state = 4, .external_lex_state = 26}, - [714] = {.lex_state = 2177}, - [715] = {.lex_state = 4, .external_lex_state = 26}, - [716] = {.lex_state = 4, .external_lex_state = 26}, - [717] = {.lex_state = 4, .external_lex_state = 26}, - [718] = {.lex_state = 4, .external_lex_state = 26}, - [719] = {.lex_state = 4, .external_lex_state = 26}, - [720] = {.lex_state = 7, .external_lex_state = 30}, + [695] = {.lex_state = 2}, + [696] = {.lex_state = 2}, + [697] = {.lex_state = 2}, + [698] = {.lex_state = 2}, + [699] = {.lex_state = 2}, + [700] = {.lex_state = 7, .external_lex_state = 21}, + [701] = {.lex_state = 7, .external_lex_state = 14}, + [702] = {.lex_state = 4, .external_lex_state = 17}, + [703] = {.lex_state = 4, .external_lex_state = 17}, + [704] = {.lex_state = 7, .external_lex_state = 20}, + [705] = {.lex_state = 7, .external_lex_state = 22}, + [706] = {.lex_state = 7, .external_lex_state = 21}, + [707] = {.lex_state = 7, .external_lex_state = 22}, + [708] = {.lex_state = 4, .external_lex_state = 17}, + [709] = {.lex_state = 4, .external_lex_state = 17}, + [710] = {.lex_state = 2177}, + [711] = {.lex_state = 4, .external_lex_state = 17}, + [712] = {.lex_state = 4, .external_lex_state = 17}, + [713] = {.lex_state = 4, .external_lex_state = 17}, + [714] = {.lex_state = 4, .external_lex_state = 17}, + [715] = {.lex_state = 4, .external_lex_state = 17}, + [716] = {.lex_state = 4, .external_lex_state = 17}, + [717] = {.lex_state = 2}, + [718] = {.lex_state = 4, .external_lex_state = 17}, + [719] = {.lex_state = 4, .external_lex_state = 17}, + [720] = {.lex_state = 2177}, [721] = {.lex_state = 2177}, - [722] = {.lex_state = 4, .external_lex_state = 26}, - [723] = {.lex_state = 4, .external_lex_state = 26}, - [724] = {.lex_state = 4, .external_lex_state = 26}, - [725] = {.lex_state = 4, .external_lex_state = 26}, - [726] = {.lex_state = 2177}, - [727] = {.lex_state = 7, .external_lex_state = 28}, - [728] = {.lex_state = 7, .external_lex_state = 30}, - [729] = {.lex_state = 2}, - [730] = {.lex_state = 7, .external_lex_state = 31}, - [731] = {.lex_state = 7, .external_lex_state = 31}, - [732] = {.lex_state = 4, .external_lex_state = 26}, - [733] = {.lex_state = 4, .external_lex_state = 26}, - [734] = {.lex_state = 4}, - [735] = {.lex_state = 4}, - [736] = {.lex_state = 4}, - [737] = {.lex_state = 4}, - [738] = {.lex_state = 7, .external_lex_state = 21}, - [739] = {.lex_state = 4}, - [740] = {.lex_state = 7, .external_lex_state = 20}, - [741] = {.lex_state = 7, .external_lex_state = 20}, - [742] = {.lex_state = 8}, - [743] = {.lex_state = 7, .external_lex_state = 21}, - [744] = {.lex_state = 7, .external_lex_state = 20}, - [745] = {.lex_state = 7, .external_lex_state = 21}, - [746] = {.lex_state = 9}, - [747] = {.lex_state = 8}, - [748] = {.lex_state = 7, .external_lex_state = 21}, - [749] = {.lex_state = 7, .external_lex_state = 20}, + [722] = {.lex_state = 4, .external_lex_state = 17}, + [723] = {.lex_state = 4, .external_lex_state = 17}, + [724] = {.lex_state = 7, .external_lex_state = 23}, + [725] = {.lex_state = 7, .external_lex_state = 23}, + [726] = {.lex_state = 8}, + [727] = {.lex_state = 4}, + [728] = {.lex_state = 7, .external_lex_state = 15}, + [729] = {.lex_state = 7, .external_lex_state = 15}, + [730] = {.lex_state = 7, .external_lex_state = 15}, + [731] = {.lex_state = 7, .external_lex_state = 15}, + [732] = {.lex_state = 7, .external_lex_state = 15}, + [733] = {.lex_state = 7, .external_lex_state = 15}, + [734] = {.lex_state = 7, .external_lex_state = 15}, + [735] = {.lex_state = 7, .external_lex_state = 15}, + [736] = {.lex_state = 7, .external_lex_state = 15}, + [737] = {.lex_state = 7, .external_lex_state = 15}, + [738] = {.lex_state = 7, .external_lex_state = 15}, + [739] = {.lex_state = 7, .external_lex_state = 15}, + [740] = {.lex_state = 7, .external_lex_state = 15}, + [741] = {.lex_state = 7, .external_lex_state = 15}, + [742] = {.lex_state = 7, .external_lex_state = 15}, + [743] = {.lex_state = 7, .external_lex_state = 15}, + [744] = {.lex_state = 7, .external_lex_state = 15}, + [745] = {.lex_state = 7, .external_lex_state = 15}, + [746] = {.lex_state = 7, .external_lex_state = 15}, + [747] = {.lex_state = 4}, + [748] = {.lex_state = 4}, + [749] = {.lex_state = 4}, [750] = {.lex_state = 4}, - [751] = {.lex_state = 7, .external_lex_state = 20}, + [751] = {.lex_state = 4}, [752] = {.lex_state = 4}, - [753] = {.lex_state = 7, .external_lex_state = 20}, - [754] = {.lex_state = 4}, + [753] = {.lex_state = 9}, + [754] = {.lex_state = 8}, [755] = {.lex_state = 4}, - [756] = {.lex_state = 4}, - [757] = {.lex_state = 9}, - [758] = {.lex_state = 7, .external_lex_state = 21}, + [756] = {.lex_state = 7, .external_lex_state = 15}, + [757] = {.lex_state = 4}, + [758] = {.lex_state = 4}, [759] = {.lex_state = 4}, - [760] = {.lex_state = 7, .external_lex_state = 21}, + [760] = {.lex_state = 4}, [761] = {.lex_state = 4}, - [762] = {.lex_state = 8}, + [762] = {.lex_state = 4}, [763] = {.lex_state = 4}, - [764] = {.lex_state = 4}, + [764] = {.lex_state = 8}, [765] = {.lex_state = 9}, - [766] = {.lex_state = 7, .external_lex_state = 20}, - [767] = {.lex_state = 8}, - [768] = {.lex_state = 9}, + [766] = {.lex_state = 4}, + [767] = {.lex_state = 9}, + [768] = {.lex_state = 4}, [769] = {.lex_state = 4}, - [770] = {.lex_state = 7, .external_lex_state = 20}, - [771] = {.lex_state = 8}, - [772] = {.lex_state = 7, .external_lex_state = 20}, - [773] = {.lex_state = 7, .external_lex_state = 21}, - [774] = {.lex_state = 4}, - [775] = {.lex_state = 7, .external_lex_state = 20}, - [776] = {.lex_state = 7, .external_lex_state = 20}, + [770] = {.lex_state = 4}, + [771] = {.lex_state = 4}, + [772] = {.lex_state = 4}, + [773] = {.lex_state = 4}, + [774] = {.lex_state = 8}, + [775] = {.lex_state = 4}, + [776] = {.lex_state = 4}, [777] = {.lex_state = 9}, - [778] = {.lex_state = 4}, - [779] = {.lex_state = 7, .external_lex_state = 20}, - [780] = {.lex_state = 7, .external_lex_state = 21}, + [778] = {.lex_state = 7, .external_lex_state = 15}, + [779] = {.lex_state = 7, .external_lex_state = 14}, + [780] = {.lex_state = 4}, [781] = {.lex_state = 4}, [782] = {.lex_state = 4}, - [783] = {.lex_state = 7, .external_lex_state = 20}, - [784] = {.lex_state = 9}, - [785] = {.lex_state = 4}, - [786] = {.lex_state = 4}, + [783] = {.lex_state = 7, .external_lex_state = 14}, + [784] = {.lex_state = 7, .external_lex_state = 14}, + [785] = {.lex_state = 7, .external_lex_state = 14}, + [786] = {.lex_state = 7, .external_lex_state = 14}, [787] = {.lex_state = 8}, - [788] = {.lex_state = 4}, - [789] = {.lex_state = 7, .external_lex_state = 20}, - [790] = {.lex_state = 7, .external_lex_state = 20}, - [791] = {.lex_state = 7, .external_lex_state = 20}, - [792] = {.lex_state = 7, .external_lex_state = 20}, - [793] = {.lex_state = 4}, + [788] = {.lex_state = 7, .external_lex_state = 14}, + [789] = {.lex_state = 7, .external_lex_state = 14}, + [790] = {.lex_state = 9}, + [791] = {.lex_state = 7, .external_lex_state = 14}, + [792] = {.lex_state = 4}, + [793] = {.lex_state = 8}, [794] = {.lex_state = 4}, - [795] = {.lex_state = 4}, - [796] = {.lex_state = 4}, - [797] = {.lex_state = 4}, - [798] = {.lex_state = 4}, - [799] = {.lex_state = 4}, - [800] = {.lex_state = 4}, + [795] = {.lex_state = 9}, + [796] = {.lex_state = 7, .external_lex_state = 14}, + [797] = {.lex_state = 7, .external_lex_state = 14}, + [798] = {.lex_state = 7, .external_lex_state = 14}, + [799] = {.lex_state = 9}, + [800] = {.lex_state = 7, .external_lex_state = 14}, [801] = {.lex_state = 4}, - [802] = {.lex_state = 7, .external_lex_state = 20}, - [803] = {.lex_state = 4}, - [804] = {.lex_state = 4}, - [805] = {.lex_state = 7, .external_lex_state = 20}, - [806] = {.lex_state = 7, .external_lex_state = 21}, - [807] = {.lex_state = 7, .external_lex_state = 21}, - [808] = {.lex_state = 7, .external_lex_state = 20}, - [809] = {.lex_state = 7, .external_lex_state = 21}, - [810] = {.lex_state = 8}, + [802] = {.lex_state = 7, .external_lex_state = 14}, + [803] = {.lex_state = 7, .external_lex_state = 14}, + [804] = {.lex_state = 7, .external_lex_state = 14}, + [805] = {.lex_state = 7, .external_lex_state = 14}, + [806] = {.lex_state = 7, .external_lex_state = 14}, + [807] = {.lex_state = 4}, + [808] = {.lex_state = 4}, + [809] = {.lex_state = 8}, + [810] = {.lex_state = 9}, [811] = {.lex_state = 4}, - [812] = {.lex_state = 4}, - [813] = {.lex_state = 7, .external_lex_state = 21}, - [814] = {.lex_state = 9}, - [815] = {.lex_state = 7, .external_lex_state = 21}, - [816] = {.lex_state = 7, .external_lex_state = 21}, - [817] = {.lex_state = 7, .external_lex_state = 21}, + [812] = {.lex_state = 7, .external_lex_state = 14}, + [813] = {.lex_state = 4}, + [814] = {.lex_state = 4}, + [815] = {.lex_state = 7, .external_lex_state = 14}, + [816] = {.lex_state = 4}, + [817] = {.lex_state = 7, .external_lex_state = 14}, [818] = {.lex_state = 4}, - [819] = {.lex_state = 7, .external_lex_state = 21}, - [820] = {.lex_state = 7, .external_lex_state = 21}, - [821] = {.lex_state = 7, .external_lex_state = 21}, + [819] = {.lex_state = 4}, + [820] = {.lex_state = 7, .external_lex_state = 14}, + [821] = {.lex_state = 4}, [822] = {.lex_state = 4}, [823] = {.lex_state = 4}, - [824] = {.lex_state = 4}, - [825] = {.lex_state = 7, .external_lex_state = 20}, - [826] = {.lex_state = 7, .external_lex_state = 21}, - [827] = {.lex_state = 4}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 4}, - [830] = {.lex_state = 4}, - [831] = {.lex_state = 7, .external_lex_state = 21}, - [832] = {.lex_state = 9}, - [833] = {.lex_state = 8}, - [834] = {.lex_state = 7, .external_lex_state = 21}, + [824] = {.lex_state = 8}, + [825] = {.lex_state = 4}, + [826] = {.lex_state = 4}, + [827] = {.lex_state = 10}, + [828] = {.lex_state = 10}, + [829] = {.lex_state = 2, .external_lex_state = 17}, + [830] = {.lex_state = 2}, + [831] = {.lex_state = 10}, + [832] = {.lex_state = 10}, + [833] = {.lex_state = 10}, + [834] = {.lex_state = 10}, [835] = {.lex_state = 10}, [836] = {.lex_state = 10}, [837] = {.lex_state = 10}, - [838] = {.lex_state = 10}, - [839] = {.lex_state = 2}, + [838] = {.lex_state = 2}, + [839] = {.lex_state = 2, .external_lex_state = 17}, [840] = {.lex_state = 10}, - [841] = {.lex_state = 10}, + [841] = {.lex_state = 2, .external_lex_state = 17}, [842] = {.lex_state = 10}, - [843] = {.lex_state = 2, .external_lex_state = 26}, - [844] = {.lex_state = 2, .external_lex_state = 26}, - [845] = {.lex_state = 2, .external_lex_state = 26}, - [846] = {.lex_state = 2, .external_lex_state = 32}, - [847] = {.lex_state = 2}, - [848] = {.lex_state = 2, .external_lex_state = 32}, - [849] = {.lex_state = 2, .external_lex_state = 26}, - [850] = {.lex_state = 10}, + [843] = {.lex_state = 2}, + [844] = {.lex_state = 2, .external_lex_state = 17}, + [845] = {.lex_state = 2, .external_lex_state = 17}, + [846] = {.lex_state = 10}, + [847] = {.lex_state = 10}, + [848] = {.lex_state = 10}, + [849] = {.lex_state = 2, .external_lex_state = 17}, + [850] = {.lex_state = 2, .external_lex_state = 24}, [851] = {.lex_state = 10}, - [852] = {.lex_state = 10}, + [852] = {.lex_state = 2}, [853] = {.lex_state = 10}, - [854] = {.lex_state = 2}, - [855] = {.lex_state = 2}, - [856] = {.lex_state = 10}, - [857] = {.lex_state = 2, .external_lex_state = 26}, + [854] = {.lex_state = 10}, + [855] = {.lex_state = 10}, + [856] = {.lex_state = 2, .external_lex_state = 17}, + [857] = {.lex_state = 10}, [858] = {.lex_state = 10}, - [859] = {.lex_state = 10}, + [859] = {.lex_state = 2, .external_lex_state = 24}, [860] = {.lex_state = 10}, - [861] = {.lex_state = 10}, - [862] = {.lex_state = 10}, - [863] = {.lex_state = 10}, - [864] = {.lex_state = 10}, - [865] = {.lex_state = 10}, - [866] = {.lex_state = 2, .external_lex_state = 26}, - [867] = {.lex_state = 10}, - [868] = {.lex_state = 2, .external_lex_state = 26}, + [861] = {.lex_state = 2}, + [862] = {.lex_state = 2}, + [863] = {.lex_state = 2}, + [864] = {.lex_state = 2}, + [865] = {.lex_state = 2}, + [866] = {.lex_state = 2}, + [867] = {.lex_state = 2}, + [868] = {.lex_state = 2}, [869] = {.lex_state = 2}, [870] = {.lex_state = 2}, [871] = {.lex_state = 2}, [872] = {.lex_state = 2}, - [873] = {.lex_state = 2, .external_lex_state = 26}, + [873] = {.lex_state = 2, .external_lex_state = 17}, [874] = {.lex_state = 2}, [875] = {.lex_state = 2}, [876] = {.lex_state = 2}, @@ -11857,54 +11858,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [879] = {.lex_state = 2}, [880] = {.lex_state = 2}, [881] = {.lex_state = 2}, - [882] = {.lex_state = 2}, - [883] = {.lex_state = 2}, - [884] = {.lex_state = 2}, - [885] = {.lex_state = 2}, - [886] = {.lex_state = 2}, - [887] = {.lex_state = 2}, - [888] = {.lex_state = 9, .external_lex_state = 32}, - [889] = {.lex_state = 9, .external_lex_state = 26}, - [890] = {.lex_state = 2177, .external_lex_state = 26}, - [891] = {.lex_state = 2}, - [892] = {.lex_state = 9, .external_lex_state = 32}, - [893] = {.lex_state = 4, .external_lex_state = 32}, - [894] = {.lex_state = 2}, - [895] = {.lex_state = 8, .external_lex_state = 26}, - [896] = {.lex_state = 8, .external_lex_state = 32}, - [897] = {.lex_state = 8, .external_lex_state = 32}, - [898] = {.lex_state = 4, .external_lex_state = 26}, - [899] = {.lex_state = 4, .external_lex_state = 32}, - [900] = {.lex_state = 4, .external_lex_state = 26}, - [901] = {.lex_state = 4}, - [902] = {.lex_state = 10, .external_lex_state = 32}, - [903] = {.lex_state = 4}, - [904] = {.lex_state = 8}, - [905] = {.lex_state = 4}, - [906] = {.lex_state = 9}, + [882] = {.lex_state = 8, .external_lex_state = 17}, + [883] = {.lex_state = 4, .external_lex_state = 17}, + [884] = {.lex_state = 2177, .external_lex_state = 17}, + [885] = {.lex_state = 9, .external_lex_state = 17}, + [886] = {.lex_state = 8, .external_lex_state = 24}, + [887] = {.lex_state = 9, .external_lex_state = 24}, + [888] = {.lex_state = 8, .external_lex_state = 24}, + [889] = {.lex_state = 4, .external_lex_state = 17}, + [890] = {.lex_state = 9, .external_lex_state = 24}, + [891] = {.lex_state = 4, .external_lex_state = 24}, + [892] = {.lex_state = 4, .external_lex_state = 24}, + [893] = {.lex_state = 4}, + [894] = {.lex_state = 8}, + [895] = {.lex_state = 8}, + [896] = {.lex_state = 10, .external_lex_state = 17}, + [897] = {.lex_state = 4}, + [898] = {.lex_state = 9}, + [899] = {.lex_state = 2177}, + [900] = {.lex_state = 4}, + [901] = {.lex_state = 10, .external_lex_state = 17}, + [902] = {.lex_state = 9}, + [903] = {.lex_state = 9}, + [904] = {.lex_state = 4}, + [905] = {.lex_state = 8}, + [906] = {.lex_state = 10, .external_lex_state = 17}, [907] = {.lex_state = 4}, - [908] = {.lex_state = 10, .external_lex_state = 26}, - [909] = {.lex_state = 9}, - [910] = {.lex_state = 4}, - [911] = {.lex_state = 10, .external_lex_state = 26}, - [912] = {.lex_state = 8}, - [913] = {.lex_state = 10, .external_lex_state = 26}, - [914] = {.lex_state = 9}, - [915] = {.lex_state = 2177}, - [916] = {.lex_state = 8}, - [917] = {.lex_state = 10, .external_lex_state = 32}, + [908] = {.lex_state = 10, .external_lex_state = 24}, + [909] = {.lex_state = 10, .external_lex_state = 24}, + [910] = {.lex_state = 10}, + [911] = {.lex_state = 10}, + [912] = {.lex_state = 10}, + [913] = {.lex_state = 10}, + [914] = {.lex_state = 10}, + [915] = {.lex_state = 10}, + [916] = {.lex_state = 10}, + [917] = {.lex_state = 10}, [918] = {.lex_state = 10}, [919] = {.lex_state = 10}, [920] = {.lex_state = 10}, [921] = {.lex_state = 10}, - [922] = {.lex_state = 10}, - [923] = {.lex_state = 10}, - [924] = {.lex_state = 10}, - [925] = {.lex_state = 10}, - [926] = {.lex_state = 10}, - [927] = {.lex_state = 10}, - [928] = {.lex_state = 10}, - [929] = {.lex_state = 10}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, [932] = {.lex_state = 0}, @@ -11923,52 +11924,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [945] = {.lex_state = 0}, [946] = {.lex_state = 0}, [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, + [948] = {.lex_state = 11}, [949] = {.lex_state = 0}, [950] = {.lex_state = 0}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 11}, - [953] = {.lex_state = 0}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 0}, + [953] = {.lex_state = 11}, [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, + [957] = {.lex_state = 11}, [958] = {.lex_state = 0}, - [959] = {.lex_state = 11}, - [960] = {.lex_state = 11}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 11}, - [969] = {.lex_state = 0}, + [962] = {.lex_state = 12}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 2177}, + [965] = {.lex_state = 12}, + [966] = {.lex_state = 12}, + [967] = {.lex_state = 12}, + [968] = {.lex_state = 12}, + [969] = {.lex_state = 12}, [970] = {.lex_state = 12}, - [971] = {.lex_state = 12}, + [971] = {.lex_state = 2177}, [972] = {.lex_state = 12}, [973] = {.lex_state = 12}, [974] = {.lex_state = 12}, - [975] = {.lex_state = 2177}, + [975] = {.lex_state = 11}, [976] = {.lex_state = 12}, - [977] = {.lex_state = 11}, + [977] = {.lex_state = 12}, [978] = {.lex_state = 12}, - [979] = {.lex_state = 12}, + [979] = {.lex_state = 2177}, [980] = {.lex_state = 12}, - [981] = {.lex_state = 12}, - [982] = {.lex_state = 12}, - [983] = {.lex_state = 12}, - [984] = {.lex_state = 12}, - [985] = {.lex_state = 2177}, - [986] = {.lex_state = 12}, - [987] = {.lex_state = 12}, - [988] = {.lex_state = 2177}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 0}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 12, .external_lex_state = 24}, + [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, + [991] = {.lex_state = 11, .external_lex_state = 24}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, + [993] = {.lex_state = 11, .external_lex_state = 24}, [994] = {.lex_state = 0}, [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, @@ -11976,7 +11977,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [998] = {.lex_state = 0}, [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 12}, + [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, @@ -12004,13 +12005,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, + [1029] = {.lex_state = 12}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, [1033] = {.lex_state = 0}, [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, + [1035] = {.lex_state = 12, .external_lex_state = 24}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, @@ -12030,9 +12031,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 12, .external_lex_state = 32}, + [1055] = {.lex_state = 0}, [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 12, .external_lex_state = 32}, + [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, @@ -12044,8 +12045,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 11, .external_lex_state = 32}, - [1070] = {.lex_state = 11, .external_lex_state = 32}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, @@ -12077,18 +12078,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, + [1102] = {.lex_state = 12}, + [1103] = {.lex_state = 11}, + [1104] = {.lex_state = 12}, + [1105] = {.lex_state = 11}, [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 11}, - [1111] = {.lex_state = 12}, - [1112] = {.lex_state = 11}, - [1113] = {.lex_state = 12}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, @@ -12104,28 +12105,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1126] = {.lex_state = 0}, [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, + [1129] = {.lex_state = 0, .external_lex_state = 25}, [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0, .external_lex_state = 33}, + [1136] = {.lex_state = 0, .external_lex_state = 26}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0, .external_lex_state = 34}, + [1143] = {.lex_state = 0, .external_lex_state = 26}, [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, + [1145] = {.lex_state = 0, .external_lex_state = 26}, [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 0, .external_lex_state = 34}, + [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, @@ -12133,16 +12134,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0, .external_lex_state = 34}, - [1159] = {.lex_state = 0, .external_lex_state = 34}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, + [1158] = {.lex_state = 0, .external_lex_state = 26}, + [1159] = {.lex_state = 0}, }; enum { @@ -12160,6 +12153,7 @@ enum { ts_external_token__strikethrough_close = 11, ts_external_token__latex_span_start = 12, ts_external_token__latex_span_close = 13, + ts_external_token__unclosed_span = 14, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -12177,9 +12171,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikethrough_close] = sym__strikethrough_close, [ts_external_token__latex_span_start] = sym__latex_span_start, [ts_external_token__latex_span_close] = sym__latex_span_close, + [ts_external_token__unclosed_span] = sym__unclosed_span, }; -static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__error] = true, [ts_external_token__trigger_error] = true, @@ -12195,6 +12190,7 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikethrough_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__latex_span_close] = true, + [ts_external_token__unclosed_span] = true, }, [2] = { [ts_external_token__code_span_start] = true, @@ -12203,6 +12199,7 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [3] = { [ts_external_token__code_span_start] = true, @@ -12212,6 +12209,7 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [4] = { [ts_external_token__code_span_start] = true, @@ -12220,6 +12218,7 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [5] = { [ts_external_token__code_span_start] = true, @@ -12229,6 +12228,7 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikethrough_open] = true, [ts_external_token__strikethrough_close] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [6] = { [ts_external_token__code_span_start] = true, @@ -12238,30 +12238,34 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [7] = { [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__strikethrough_open] = true, - [ts_external_token__strikethrough_close] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [8] = { [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__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [9] = { [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__strikethrough_open] = true, + [ts_external_token__strikethrough_close] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [10] = { [ts_external_token__code_span_start] = true, @@ -12269,157 +12273,88 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [11] = { [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_whitespace] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__latex_span_start] = true, - [ts_external_token__latex_span_close] = true, + [ts_external_token__unclosed_span] = true, }, [12] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikethrough_open] = true, - [ts_external_token__strikethrough_close] = true, [ts_external_token__latex_span_start] = true, - [ts_external_token__latex_span_close] = true, + [ts_external_token__unclosed_span] = true, }, [13] = { [ts_external_token__code_span_start] = true, - [ts_external_token__code_span_close] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikethrough_open] = true, [ts_external_token__strikethrough_close] = true, [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [14] = { - [ts_external_token__code_span_start] = true, [ts_external_token__code_span_close] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__latex_span_start] = true, }, [15] = { - [ts_external_token__code_span_start] = true, - [ts_external_token__code_span_close] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__latex_span_start] = true, + [ts_external_token__latex_span_close] = true, }, [16] = { - [ts_external_token__code_span_start] = true, - [ts_external_token__code_span_close] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__latex_span_start] = true, + [ts_external_token__unclosed_span] = true, }, [17] = { - [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__strikethrough_open] = true, - [ts_external_token__latex_span_start] = true, - [ts_external_token__latex_span_close] = true, + [ts_external_token__last_token_punctuation] = true, }, [18] = { - [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__latex_span_start] = true, - [ts_external_token__latex_span_close] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__unclosed_span] = true, }, [19] = { - [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__latex_span_start] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__unclosed_span] = true, }, [20] = { + [ts_external_token__last_token_punctuation] = true, [ts_external_token__latex_span_close] = true, }, [21] = { [ts_external_token__code_span_close] = 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_star] = true, + [ts_external_token__code_span_close] = true, [ts_external_token__last_token_whitespace] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__latex_span_start] = 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_whitespace] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__strikethrough_close] = true, - [ts_external_token__latex_span_start] = true, + [ts_external_token__latex_span_close] = 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_underscore] = true, [ts_external_token__last_token_whitespace] = true, - [ts_external_token__strikethrough_open] = true, - [ts_external_token__latex_span_start] = 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__latex_span_start] = true, - }, - [26] = { - [ts_external_token__last_token_punctuation] = true, - }, - [27] = { - [ts_external_token__code_span_start] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, - [ts_external_token__latex_span_start] = true, - }, - [28] = { - [ts_external_token__last_token_punctuation] = true, - [ts_external_token__latex_span_close] = true, - }, - [29] = { - [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_punctuation] = true, - }, - [30] = { - [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_whitespace] = true, - }, - [31] = { - [ts_external_token__last_token_whitespace] = true, - [ts_external_token__latex_span_close] = true, - }, - [32] = { - [ts_external_token__last_token_whitespace] = true, - }, - [33] = { [ts_external_token__trigger_error] = true, [ts_external_token__last_token_whitespace] = true, }, - [34] = { + [26] = { [ts_external_token__trigger_error] = true, }, }; @@ -12490,46 +12425,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikethrough_close] = ACTIONS(1), [sym__latex_span_start] = ACTIONS(1), [sym__latex_span_close] = ACTIONS(1), + [sym__unclosed_span] = ACTIONS(1), }, [1] = { - [sym_inline] = STATE(1156), - [sym_backslash_escape] = STATE(151), - [sym_code_span] = STATE(151), - [sym_latex_block] = STATE(151), - [sym__link_text] = STATE(1127), - [sym__link_text_non_empty] = STATE(288), - [sym_shortcut_link] = STATE(293), - [sym_full_reference_link] = STATE(293), - [sym_collapsed_reference_link] = STATE(293), - [sym_inline_link] = STATE(293), - [sym_image] = STATE(151), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), - [sym_hard_line_break] = STATE(151), - [sym__whitespace] = STATE(151), - [sym__word] = STATE(151), - [sym__soft_line_break] = STATE(151), - [sym__inline_base] = STATE(293), - [sym__text_base] = STATE(151), - [sym__inline_element] = STATE(293), + [sym_inline] = STATE(1140), + [sym_backslash_escape] = STATE(155), + [sym_code_span] = STATE(155), + [sym_latex_block] = STATE(155), + [sym__link_text] = STATE(1120), + [sym__link_text_non_empty] = STATE(265), + [sym_shortcut_link] = STATE(275), + [sym_full_reference_link] = STATE(275), + [sym_collapsed_reference_link] = STATE(275), + [sym_inline_link] = STATE(275), + [sym_image] = STATE(155), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), + [sym_hard_line_break] = STATE(155), + [sym__whitespace] = STATE(155), + [sym__word] = STATE(155), + [sym__soft_line_break] = STATE(155), + [sym__inline_base] = STATE(275), + [sym__text_base] = STATE(155), + [sym__inline_element] = STATE(275), [aux_sym__inline] = STATE(31), - [sym__strikethrough] = STATE(293), - [sym__emphasis_star] = STATE(294), - [sym__strong_emphasis_star] = STATE(293), - [sym__emphasis_underscore] = STATE(294), - [sym__strong_emphasis_underscore] = STATE(293), - [aux_sym__inline_base_repeat1] = STATE(151), + [sym__strikethrough] = STATE(275), + [sym__emphasis_star] = STATE(280), + [sym__strong_emphasis_star] = STATE(275), + [sym__emphasis_underscore] = STATE(280), + [sym__strong_emphasis_underscore] = STATE(275), + [aux_sym__inline_base_repeat1] = STATE(155), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -12582,45 +12518,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(41), [sym__strikethrough_open] = ACTIONS(43), [sym__latex_span_start] = ACTIONS(45), + [sym__unclosed_span] = ACTIONS(5), }, [2] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(29), - [sym_full_reference_link] = STATE(29), - [sym_collapsed_reference_link] = STATE(29), - [sym_inline_link] = STATE(29), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(29), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(29), - [aux_sym__inline_no_tilde] = STATE(29), - [sym__strikethrough] = STATE(29), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(29), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(29), - [aux_sym__inline_base_repeat1] = STATE(153), + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(19), + [sym_full_reference_link] = STATE(19), + [sym_collapsed_reference_link] = STATE(19), + [sym_inline_link] = STATE(19), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(19), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(19), + [aux_sym__inline_no_tilde] = STATE(19), + [sym__strikethrough] = STATE(19), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(19), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(19), + [aux_sym__inline_base_repeat1] = STATE(154), [sym__backslash_escape] = ACTIONS(47), [sym_entity_reference] = ACTIONS(50), [sym_numeric_character_reference] = ACTIONS(50), @@ -12674,45 +12611,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(106), [sym__strikethrough_open] = ACTIONS(108), [sym__latex_span_start] = ACTIONS(111), + [sym__unclosed_span] = ACTIONS(50), }, [3] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), [sym_shortcut_link] = STATE(42), [sym_full_reference_link] = STATE(42), [sym_collapsed_reference_link] = STATE(42), [sym_inline_link] = STATE(42), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(152), + [sym__text_base] = STATE(149), [sym__inline_element_no_star] = STATE(42), [aux_sym__inline_no_star] = STATE(42), [sym__strikethrough] = STATE(42), - [sym__emphasis_star] = STATE(297), + [sym__emphasis_star] = STATE(282), [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(298), + [sym__emphasis_underscore] = STATE(284), [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(152), + [aux_sym__inline_base_repeat1] = STATE(149), [ts_builtin_sym_end] = ACTIONS(114), [sym__backslash_escape] = ACTIONS(116), [sym_entity_reference] = ACTIONS(119), @@ -12766,45 +12704,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(173), [sym__strikethrough_open] = ACTIONS(175), [sym__latex_span_start] = ACTIONS(178), + [sym__unclosed_span] = ACTIONS(119), }, [4] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(51), - [sym_full_reference_link] = STATE(51), - [sym_collapsed_reference_link] = STATE(51), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(51), - [aux_sym__inline_no_underscore] = STATE(51), - [sym__strikethrough] = STATE(51), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(51), - [sym__emphasis_underscore] = STATE(301), - [sym__strong_emphasis_underscore] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(155), + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(49), + [sym_full_reference_link] = STATE(49), + [sym_collapsed_reference_link] = STATE(49), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(49), + [aux_sym__inline_no_underscore] = STATE(49), + [sym__strikethrough] = STATE(49), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(291), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(153), [ts_builtin_sym_end] = ACTIONS(114), [sym__backslash_escape] = ACTIONS(181), [sym_entity_reference] = ACTIONS(184), @@ -12858,45 +12797,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(238), [sym__strikethrough_open] = ACTIONS(240), [sym__latex_span_start] = ACTIONS(243), + [sym__unclosed_span] = ACTIONS(184), }, [5] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(52), - [sym_full_reference_link] = STATE(52), - [sym_collapsed_reference_link] = STATE(52), - [sym_inline_link] = STATE(52), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(52), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(52), - [aux_sym__inline_no_star] = STATE(52), - [sym__strikethrough] = STATE(52), - [sym__emphasis_star] = STATE(334), - [sym__strong_emphasis_star] = STATE(52), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(52), - [aux_sym__inline_base_repeat1] = STATE(152), + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(47), + [sym_full_reference_link] = STATE(47), + [sym_collapsed_reference_link] = STATE(47), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__strikethrough] = STATE(47), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(268), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(246), [sym_entity_reference] = ACTIONS(249), [sym_numeric_character_reference] = ACTIONS(249), @@ -12950,45 +12890,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikethrough_open] = ACTIONS(305), [sym__strikethrough_close] = ACTIONS(308), [sym__latex_span_start] = ACTIONS(310), + [sym__unclosed_span] = ACTIONS(249), }, [6] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(40), - [sym_full_reference_link] = STATE(40), - [sym_collapsed_reference_link] = STATE(40), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(40), - [aux_sym__inline_no_tilde] = STATE(40), - [sym__strikethrough] = STATE(40), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(153), + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(41), + [sym_full_reference_link] = STATE(41), + [sym_collapsed_reference_link] = STATE(41), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(41), + [aux_sym__inline_no_tilde] = STATE(41), + [sym__strikethrough] = STATE(41), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(154), [ts_builtin_sym_end] = ACTIONS(114), [sym__backslash_escape] = ACTIONS(313), [sym_entity_reference] = ACTIONS(316), @@ -13042,45 +12983,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(370), [sym__strikethrough_open] = ACTIONS(372), [sym__latex_span_start] = ACTIONS(375), + [sym__unclosed_span] = ACTIONS(316), }, [7] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(21), - [sym_full_reference_link] = STATE(21), - [sym_collapsed_reference_link] = STATE(21), - [sym_inline_link] = STATE(21), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(21), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(21), - [aux_sym__inline_no_star] = STATE(21), - [sym__strikethrough] = STATE(21), - [sym__emphasis_star] = STATE(347), - [sym__strong_emphasis_star] = STATE(21), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(21), - [aux_sym__inline_base_repeat1] = STATE(152), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(24), + [sym_full_reference_link] = STATE(24), + [sym_collapsed_reference_link] = STATE(24), + [sym_inline_link] = STATE(24), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(24), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(24), + [aux_sym__inline_no_star] = STATE(24), + [sym__strikethrough] = STATE(24), + [sym__emphasis_star] = STATE(314), + [sym__strong_emphasis_star] = STATE(24), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(24), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(378), [sym_entity_reference] = ACTIONS(381), [sym_numeric_character_reference] = ACTIONS(381), @@ -13134,45 +13076,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(435), [sym__strikethrough_open] = ACTIONS(437), [sym__latex_span_start] = ACTIONS(440), + [sym__unclosed_span] = ACTIONS(381), }, [8] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(26), - [sym_full_reference_link] = STATE(26), - [sym_collapsed_reference_link] = STATE(26), - [sym_inline_link] = STATE(26), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(26), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(26), - [aux_sym__inline_no_underscore] = STATE(26), - [sym__strikethrough] = STATE(26), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(26), - [sym__emphasis_underscore] = STATE(333), - [sym__strong_emphasis_underscore] = STATE(26), - [aux_sym__inline_base_repeat1] = STATE(155), + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(38), + [sym_full_reference_link] = STATE(38), + [sym_collapsed_reference_link] = STATE(38), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(38), + [aux_sym__inline_no_tilde] = STATE(38), + [sym__strikethrough] = STATE(38), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(154), [sym__backslash_escape] = ACTIONS(443), [sym_entity_reference] = ACTIONS(446), [sym_numeric_character_reference] = ACTIONS(446), @@ -13222,141 +13165,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(491), [sym__emphasis_open_star] = ACTIONS(494), [sym__emphasis_open_underscore] = ACTIONS(497), - [sym__last_token_punctuation] = ACTIONS(500), - [sym__strikethrough_open] = ACTIONS(502), - [sym__strikethrough_close] = ACTIONS(308), - [sym__latex_span_start] = ACTIONS(505), + [sym__emphasis_close_star] = ACTIONS(500), + [sym__last_token_punctuation] = ACTIONS(502), + [sym__strikethrough_open] = ACTIONS(504), + [sym__latex_span_start] = ACTIONS(507), + [sym__unclosed_span] = ACTIONS(446), }, [9] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(16), - [sym_full_reference_link] = STATE(16), - [sym_collapsed_reference_link] = STATE(16), - [sym_inline_link] = STATE(16), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(12), + [sym_full_reference_link] = STATE(12), + [sym_collapsed_reference_link] = STATE(12), + [sym_inline_link] = STATE(12), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(16), + [sym__inline_base] = STATE(12), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(16), - [aux_sym__inline_no_tilde] = STATE(16), - [sym__strikethrough] = STATE(16), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(16), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(16), + [sym__inline_element_no_underscore] = STATE(12), + [aux_sym__inline_no_underscore] = STATE(12), + [sym__strikethrough] = STATE(12), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(12), + [sym__emphasis_underscore] = STATE(408), + [sym__strong_emphasis_underscore] = STATE(12), [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(508), - [sym_entity_reference] = ACTIONS(511), - [sym_numeric_character_reference] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(523), - [anon_sym_QMARK] = ACTIONS(523), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_BSLASH] = ACTIONS(532), - [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), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_RPAREN] = ACTIONS(523), - [sym__newline_token] = ACTIONS(535), - [sym_uri_autolink] = ACTIONS(511), - [sym_email_autolink] = ACTIONS(511), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(538), - [anon_sym_LT_QMARK] = ACTIONS(541), - [aux_sym__declaration_token1] = ACTIONS(544), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(547), - [sym__whitespace_ge_2] = ACTIONS(550), - [aux_sym__whitespace_token1] = ACTIONS(553), - [sym__word_no_digit] = ACTIONS(511), - [sym__digits] = ACTIONS(511), - [sym__code_span_start] = ACTIONS(556), - [sym__emphasis_open_star] = ACTIONS(559), - [sym__emphasis_open_underscore] = ACTIONS(562), - [sym__emphasis_close_star] = ACTIONS(565), + [sym__backslash_escape] = ACTIONS(510), + [sym_entity_reference] = ACTIONS(513), + [sym_numeric_character_reference] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_RBRACK] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(525), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_PERCENT] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_SQUOTE] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_DOT] = ACTIONS(525), + [anon_sym_SLASH] = ACTIONS(525), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_AT] = ACTIONS(525), + [anon_sym_BSLASH] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(525), + [anon_sym__] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_PIPE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [sym__newline_token] = ACTIONS(537), + [sym_uri_autolink] = ACTIONS(513), + [sym_email_autolink] = ACTIONS(513), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(540), + [anon_sym_LT_QMARK] = ACTIONS(543), + [aux_sym__declaration_token1] = ACTIONS(546), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(549), + [sym__whitespace_ge_2] = ACTIONS(552), + [aux_sym__whitespace_token1] = ACTIONS(555), + [sym__word_no_digit] = ACTIONS(513), + [sym__digits] = ACTIONS(513), + [sym__code_span_start] = ACTIONS(558), + [sym__emphasis_open_star] = ACTIONS(561), + [sym__emphasis_open_underscore] = ACTIONS(564), + [sym__emphasis_close_star] = ACTIONS(500), [sym__last_token_punctuation] = ACTIONS(567), [sym__strikethrough_open] = ACTIONS(569), [sym__latex_span_start] = ACTIONS(572), + [sym__unclosed_span] = ACTIONS(513), }, [10] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(15), - [sym_full_reference_link] = STATE(15), - [sym_collapsed_reference_link] = STATE(15), - [sym_inline_link] = STATE(15), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(15), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(15), - [aux_sym__inline_no_underscore] = STATE(15), - [sym__strikethrough] = STATE(15), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(15), - [sym__emphasis_underscore] = STATE(360), - [sym__strong_emphasis_underscore] = STATE(15), - [aux_sym__inline_base_repeat1] = STATE(155), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(45), + [sym_full_reference_link] = STATE(45), + [sym_collapsed_reference_link] = STATE(45), + [sym_inline_link] = STATE(45), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(45), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(45), + [aux_sym__inline_no_star] = STATE(45), + [sym__strikethrough] = STATE(45), + [sym__emphasis_star] = STATE(271), + [sym__strong_emphasis_star] = STATE(45), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(45), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(575), [sym_entity_reference] = ACTIONS(578), [sym_numeric_character_reference] = ACTIONS(578), @@ -13406,49 +13351,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(623), [sym__emphasis_open_star] = ACTIONS(626), [sym__emphasis_open_underscore] = ACTIONS(629), - [sym__emphasis_close_star] = ACTIONS(565), [sym__last_token_punctuation] = ACTIONS(632), [sym__strikethrough_open] = ACTIONS(634), + [sym__strikethrough_close] = ACTIONS(308), [sym__latex_span_start] = ACTIONS(637), + [sym__unclosed_span] = ACTIONS(578), }, [11] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(153), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -13498,48 +13444,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(680), + [sym__emphasis_close_star] = ACTIONS(678), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, [12] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -13589,321 +13536,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(722), + [sym__emphasis_close_underscore] = ACTIONS(722), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, [13] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(47), - [sym_full_reference_link] = STATE(47), - [sym_collapsed_reference_link] = STATE(47), - [sym_inline_link] = STATE(47), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(47), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(47), - [aux_sym__inline_no_star] = STATE(47), - [sym__strikethrough] = STATE(47), - [sym__emphasis_star] = STATE(318), - [sym__strong_emphasis_star] = STATE(47), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(47), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(116), - [sym_entity_reference] = ACTIONS(119), - [sym_numeric_character_reference] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(125), - [anon_sym_LT] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(134), - [anon_sym_DQUOTE] = ACTIONS(131), - [anon_sym_POUND] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_PERCENT] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_EQ] = ACTIONS(131), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_AT] = ACTIONS(131), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_BQUOTE] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [sym__newline_token] = ACTIONS(143), - [sym_uri_autolink] = ACTIONS(119), - [sym_email_autolink] = ACTIONS(119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(146), - [anon_sym_LT_QMARK] = ACTIONS(149), - [aux_sym__declaration_token1] = ACTIONS(152), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(155), - [sym__whitespace_ge_2] = ACTIONS(158), - [aux_sym__whitespace_token1] = ACTIONS(161), - [sym__word_no_digit] = ACTIONS(119), - [sym__digits] = ACTIONS(119), - [sym__code_span_start] = ACTIONS(164), - [sym__emphasis_open_star] = ACTIONS(167), - [sym__emphasis_open_underscore] = ACTIONS(170), - [sym__last_token_punctuation] = ACTIONS(728), - [sym__strikethrough_open] = ACTIONS(175), - [sym__latex_span_start] = ACTIONS(178), + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(768), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, [14] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(686), - [sym_numeric_character_reference] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(686), - [sym_email_autolink] = ACTIONS(686), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(686), - [sym__digits] = ACTIONS(686), - [sym__code_span_start] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(730), - [sym__strikethrough_open] = ACTIONS(724), - [sym__latex_span_start] = ACTIONS(726), + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(772), + [sym_entity_reference] = ACTIONS(775), + [sym_numeric_character_reference] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_RBRACK] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_QMARK] = ACTIONS(787), + [anon_sym_AT] = ACTIONS(787), + [anon_sym_BSLASH] = ACTIONS(796), + [anon_sym_CARET] = ACTIONS(787), + [anon_sym__] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_TILDE] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [sym__newline_token] = ACTIONS(799), + [sym_uri_autolink] = ACTIONS(775), + [sym_email_autolink] = ACTIONS(775), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(802), + [anon_sym_LT_QMARK] = ACTIONS(805), + [aux_sym__declaration_token1] = ACTIONS(808), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(811), + [sym__whitespace_ge_2] = ACTIONS(814), + [aux_sym__whitespace_token1] = ACTIONS(817), + [sym__word_no_digit] = ACTIONS(775), + [sym__digits] = ACTIONS(775), + [sym__code_span_start] = ACTIONS(820), + [sym__emphasis_open_star] = ACTIONS(823), + [sym__emphasis_open_underscore] = ACTIONS(826), + [sym__strikethrough_open] = ACTIONS(829), + [sym__strikethrough_close] = ACTIONS(832), + [sym__latex_span_start] = ACTIONS(834), + [sym__unclosed_span] = ACTIONS(775), }, [15] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(770), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [16] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(153), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -13953,48 +13812,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(776), + [sym__emphasis_close_star] = ACTIONS(837), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), + }, + [16] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, [17] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -14044,139 +13996,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(778), + [sym__emphasis_close_underscore] = ACTIONS(841), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, [18] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(780), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [19] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(153), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -14226,139 +14088,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(782), + [sym__emphasis_close_star] = ACTIONS(843), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), + }, + [19] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(845), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, [20] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), + [sym__inline_base] = STATE(23), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(642), - [sym_numeric_character_reference] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(642), - [sym_email_autolink] = ACTIONS(642), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), - [anon_sym_LT_QMARK] = ACTIONS(662), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(642), - [sym__digits] = ACTIONS(642), - [sym__code_span_start] = ACTIONS(672), - [sym__emphasis_open_star] = ACTIONS(674), - [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(784), - [sym__latex_span_start] = ACTIONS(682), - }, - [21] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -14408,230 +14272,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(786), + [sym__emphasis_close_underscore] = ACTIONS(847), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [22] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(788), - [sym_entity_reference] = ACTIONS(791), - [sym_numeric_character_reference] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_RBRACK] = ACTIONS(797), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_BANG] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_PERCENT] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(803), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_COMMA] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(803), - [anon_sym_QMARK] = ACTIONS(803), - [anon_sym_AT] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym__] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [sym__newline_token] = ACTIONS(815), - [sym_uri_autolink] = ACTIONS(791), - [sym_email_autolink] = ACTIONS(791), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(818), - [anon_sym_LT_QMARK] = ACTIONS(821), - [aux_sym__declaration_token1] = ACTIONS(824), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(827), - [sym__whitespace_ge_2] = ACTIONS(830), - [aux_sym__whitespace_token1] = ACTIONS(833), - [sym__word_no_digit] = ACTIONS(791), - [sym__digits] = ACTIONS(791), - [sym__code_span_start] = ACTIONS(836), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(842), - [sym__emphasis_close_underscore] = ACTIONS(845), - [sym__strikethrough_open] = ACTIONS(847), - [sym__latex_span_start] = ACTIONS(850), - }, - [23] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(853), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [21] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(642), + [sym_numeric_character_reference] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(642), + [sym_email_autolink] = ACTIONS(642), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), + [anon_sym_LT_QMARK] = ACTIONS(662), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(642), + [sym__digits] = ACTIONS(642), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(674), + [sym__emphasis_open_underscore] = ACTIONS(676), + [sym__emphasis_close_star] = ACTIONS(849), + [sym__strikethrough_open] = ACTIONS(680), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [24] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), + [22] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -14681,412 +14456,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(855), + [sym__emphasis_close_underscore] = ACTIONS(851), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [25] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(857), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [26] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(859), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [27] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(861), - [sym_entity_reference] = ACTIONS(864), - [sym_numeric_character_reference] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_RBRACK] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [anon_sym_QMARK] = ACTIONS(876), - [anon_sym_AT] = ACTIONS(876), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym__] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym__newline_token] = ACTIONS(888), - [sym_uri_autolink] = ACTIONS(864), - [sym_email_autolink] = ACTIONS(864), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(891), - [anon_sym_LT_QMARK] = ACTIONS(894), - [aux_sym__declaration_token1] = ACTIONS(897), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(900), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(906), - [sym__word_no_digit] = ACTIONS(864), - [sym__digits] = ACTIONS(864), - [sym__code_span_start] = ACTIONS(909), - [sym__emphasis_open_star] = ACTIONS(912), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__emphasis_close_star] = ACTIONS(918), - [sym__strikethrough_open] = ACTIONS(920), - [sym__latex_span_start] = ACTIONS(923), - }, - [28] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(926), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [29] = { + [23] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), + [sym__inline_base] = STATE(23), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(853), + [sym_entity_reference] = ACTIONS(856), + [sym_numeric_character_reference] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(868), + [anon_sym_PERCENT] = ACTIONS(868), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_DOT] = ACTIONS(868), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_COLON] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(868), + [anon_sym_QMARK] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(868), + [anon_sym_BSLASH] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(868), + [anon_sym__] = ACTIONS(868), + [anon_sym_BQUOTE] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_TILDE] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [sym__newline_token] = ACTIONS(880), + [sym_uri_autolink] = ACTIONS(856), + [sym_email_autolink] = ACTIONS(856), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(883), + [anon_sym_LT_QMARK] = ACTIONS(886), + [aux_sym__declaration_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(892), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(898), + [sym__word_no_digit] = ACTIONS(856), + [sym__digits] = ACTIONS(856), + [sym__code_span_start] = ACTIONS(901), + [sym__emphasis_open_star] = ACTIONS(904), + [sym__emphasis_open_underscore] = ACTIONS(907), + [sym__emphasis_close_underscore] = ACTIONS(910), + [sym__strikethrough_open] = ACTIONS(912), + [sym__latex_span_start] = ACTIONS(915), + [sym__unclosed_span] = ACTIONS(856), + }, + [24] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -15136,48 +14640,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(928), + [sym__emphasis_close_star] = ACTIONS(918), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [30] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), + [25] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -15227,139 +14732,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(930), + [sym__emphasis_close_underscore] = ACTIONS(920), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [31] = { - [sym_backslash_escape] = STATE(151), - [sym_code_span] = STATE(151), - [sym_latex_block] = STATE(151), - [sym__link_text] = STATE(1127), - [sym__link_text_non_empty] = STATE(288), - [sym_shortcut_link] = STATE(293), - [sym_full_reference_link] = STATE(293), - [sym_collapsed_reference_link] = STATE(293), - [sym_inline_link] = STATE(293), - [sym_image] = STATE(151), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), - [sym_hard_line_break] = STATE(151), - [sym__whitespace] = STATE(151), - [sym__word] = STATE(151), - [sym__soft_line_break] = STATE(151), - [sym__inline_base] = STATE(293), - [sym__text_base] = STATE(151), - [sym__inline_element] = STATE(293), - [aux_sym__inline] = STATE(48), - [sym__strikethrough] = STATE(293), - [sym__emphasis_star] = STATE(294), - [sym__strong_emphasis_star] = STATE(293), - [sym__emphasis_underscore] = STATE(294), - [sym__strong_emphasis_underscore] = STATE(293), - [aux_sym__inline_base_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(932), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(7), - [anon_sym_RBRACK] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_GT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(13), - [anon_sym_COLON] = ACTIONS(13), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(13), - [anon_sym_QMARK] = ACTIONS(13), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_BSLASH] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(13), - [anon_sym__] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(13), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(13), - [sym__newline_token] = ACTIONS(21), - [sym_uri_autolink] = ACTIONS(5), - [sym_email_autolink] = ACTIONS(5), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), - [anon_sym_LT_QMARK] = ACTIONS(25), - [aux_sym__declaration_token1] = ACTIONS(27), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), - [sym__whitespace_ge_2] = ACTIONS(31), - [aux_sym__whitespace_token1] = ACTIONS(33), - [sym__word_no_digit] = ACTIONS(5), - [sym__digits] = ACTIONS(5), - [sym__code_span_start] = ACTIONS(35), - [sym__emphasis_open_star] = ACTIONS(37), - [sym__emphasis_open_underscore] = ACTIONS(39), - [sym__strikethrough_open] = ACTIONS(43), - [sym__latex_span_start] = ACTIONS(45), - }, - [32] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(45), - [sym_full_reference_link] = STATE(45), - [sym_collapsed_reference_link] = STATE(45), - [sym_inline_link] = STATE(45), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(45), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(45), - [aux_sym__inline_no_underscore] = STATE(45), - [sym__strikethrough] = STATE(45), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(45), - [sym__emphasis_underscore] = STATE(315), - [sym__strong_emphasis_underscore] = STATE(45), - [aux_sym__inline_base_repeat1] = STATE(155), + [26] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(922), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [27] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(924), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [28] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(21), + [sym_full_reference_link] = STATE(21), + [sym_collapsed_reference_link] = STATE(21), + [sym_inline_link] = STATE(21), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(21), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(21), + [aux_sym__inline_no_star] = STATE(21), + [sym__strikethrough] = STATE(21), + [sym__emphasis_star] = STATE(317), + [sym__strong_emphasis_star] = STATE(21), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(21), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(116), + [sym_entity_reference] = ACTIONS(119), + [sym_numeric_character_reference] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_DQUOTE] = ACTIONS(131), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PERCENT] = ACTIONS(131), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_SQUOTE] = ACTIONS(131), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_DOT] = ACTIONS(131), + [anon_sym_SLASH] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_AT] = ACTIONS(131), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_CARET] = ACTIONS(131), + [anon_sym__] = ACTIONS(131), + [anon_sym_BQUOTE] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_TILDE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [sym__newline_token] = ACTIONS(143), + [sym_uri_autolink] = ACTIONS(119), + [sym_email_autolink] = ACTIONS(119), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(146), + [anon_sym_LT_QMARK] = ACTIONS(149), + [aux_sym__declaration_token1] = ACTIONS(152), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(155), + [sym__whitespace_ge_2] = ACTIONS(158), + [aux_sym__whitespace_token1] = ACTIONS(161), + [sym__word_no_digit] = ACTIONS(119), + [sym__digits] = ACTIONS(119), + [sym__code_span_start] = ACTIONS(164), + [sym__emphasis_open_star] = ACTIONS(167), + [sym__emphasis_open_underscore] = ACTIONS(170), + [sym__last_token_punctuation] = ACTIONS(926), + [sym__strikethrough_open] = ACTIONS(175), + [sym__latex_span_start] = ACTIONS(178), + [sym__unclosed_span] = ACTIONS(119), + }, + [29] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(25), + [sym_full_reference_link] = STATE(25), + [sym_collapsed_reference_link] = STATE(25), + [sym_inline_link] = STATE(25), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(25), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(25), + [aux_sym__inline_no_underscore] = STATE(25), + [sym__strikethrough] = STATE(25), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(25), + [sym__emphasis_underscore] = STATE(320), + [sym__strong_emphasis_underscore] = STATE(25), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(181), [sym_entity_reference] = ACTIONS(184), [sym_numeric_character_reference] = ACTIONS(184), @@ -15409,139 +15100,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(229), [sym__emphasis_open_star] = ACTIONS(232), [sym__emphasis_open_underscore] = ACTIONS(235), - [sym__last_token_punctuation] = ACTIONS(934), + [sym__last_token_punctuation] = ACTIONS(928), [sym__strikethrough_open] = ACTIONS(240), [sym__latex_span_start] = ACTIONS(243), + [sym__unclosed_span] = ACTIONS(184), }, - [33] = { + [30] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(27), + [sym_full_reference_link] = STATE(27), + [sym_collapsed_reference_link] = STATE(27), + [sym_inline_link] = STATE(27), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(27), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(27), + [aux_sym__inline_no_tilde] = STATE(27), + [sym__strikethrough] = STATE(27), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(27), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(27), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(313), + [sym_entity_reference] = ACTIONS(316), + [sym_numeric_character_reference] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_RBRACK] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(328), + [anon_sym_POUND] = ACTIONS(328), + [anon_sym_DOLLAR] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(334), + [anon_sym_SQUOTE] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_DOT] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_COLON] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_AT] = ACTIONS(328), + [anon_sym_BSLASH] = ACTIONS(337), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym__] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(328), + [sym__newline_token] = ACTIONS(340), + [sym_uri_autolink] = ACTIONS(316), + [sym_email_autolink] = ACTIONS(316), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(343), + [anon_sym_LT_QMARK] = ACTIONS(346), + [aux_sym__declaration_token1] = ACTIONS(349), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(352), + [sym__whitespace_ge_2] = ACTIONS(355), + [aux_sym__whitespace_token1] = ACTIONS(358), + [sym__word_no_digit] = ACTIONS(316), + [sym__digits] = ACTIONS(316), + [sym__code_span_start] = ACTIONS(361), + [sym__emphasis_open_star] = ACTIONS(364), + [sym__emphasis_open_underscore] = ACTIONS(367), + [sym__last_token_punctuation] = ACTIONS(930), + [sym__strikethrough_open] = ACTIONS(372), + [sym__latex_span_start] = ACTIONS(375), + [sym__unclosed_span] = ACTIONS(316), + }, + [31] = { [sym_backslash_escape] = STATE(155), [sym_code_span] = STATE(155), [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), + [sym__link_text] = STATE(1120), + [sym__link_text_non_empty] = STATE(265), + [sym_shortcut_link] = STATE(275), + [sym_full_reference_link] = STATE(275), + [sym_collapsed_reference_link] = STATE(275), + [sym_inline_link] = STATE(275), [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), [sym_hard_line_break] = STATE(155), [sym__whitespace] = STATE(155), [sym__word] = STATE(155), [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), + [sym__inline_base] = STATE(275), [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), + [sym__inline_element] = STATE(275), + [aux_sym__inline] = STATE(48), + [sym__strikethrough] = STATE(275), + [sym__emphasis_star] = STATE(280), + [sym__strong_emphasis_star] = STATE(275), + [sym__emphasis_underscore] = STATE(280), + [sym__strong_emphasis_underscore] = STATE(275), [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(936), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [ts_builtin_sym_end] = ACTIONS(932), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(5), + [sym__digits] = ACTIONS(5), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(37), + [sym__emphasis_open_underscore] = ACTIONS(39), + [sym__strikethrough_open] = ACTIONS(43), + [sym__latex_span_start] = ACTIONS(45), + [sym__unclosed_span] = ACTIONS(5), }, - [34] = { + [32] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), + [sym__inline_base] = STATE(23), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(686), + [sym_numeric_character_reference] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(686), + [sym_email_autolink] = ACTIONS(686), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(706), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(686), + [sym__digits] = ACTIONS(686), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(718), + [sym__emphasis_open_underscore] = ACTIONS(720), + [sym__emphasis_close_underscore] = ACTIONS(934), + [sym__strikethrough_open] = ACTIONS(724), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), + }, + [33] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -15591,139 +15468,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(938), + [sym__emphasis_close_star] = ACTIONS(936), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [35] = { + [34] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), + [sym__inline_base] = STATE(23), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(642), - [sym_numeric_character_reference] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(642), - [sym_email_autolink] = ACTIONS(642), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), - [anon_sym_LT_QMARK] = ACTIONS(662), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(642), - [sym__digits] = ACTIONS(642), - [sym__code_span_start] = ACTIONS(672), - [sym__emphasis_open_star] = ACTIONS(674), - [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(940), - [sym__latex_span_start] = ACTIONS(682), - }, - [36] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(14), - [sym_full_reference_link] = STATE(14), - [sym_collapsed_reference_link] = STATE(14), - [sym_inline_link] = STATE(14), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(14), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(14), - [aux_sym__inline_no_star] = STATE(14), - [sym__strikethrough] = STATE(14), - [sym__emphasis_star] = STATE(361), - [sym__strong_emphasis_star] = STATE(14), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(14), - [aux_sym__inline_base_repeat1] = STATE(152), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -15773,321 +15560,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__last_token_punctuation] = ACTIONS(942), + [sym__emphasis_close_underscore] = ACTIONS(938), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [37] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(944), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [35] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(940), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, - [38] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(686), - [sym_numeric_character_reference] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(686), - [sym_email_autolink] = ACTIONS(686), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(686), - [sym__digits] = ACTIONS(686), - [sym__code_span_start] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(946), - [sym__strikethrough_open] = ACTIONS(724), - [sym__latex_span_start] = ACTIONS(726), - }, - [39] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(20), - [sym_full_reference_link] = STATE(20), - [sym_collapsed_reference_link] = STATE(20), - [sym_inline_link] = STATE(20), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(20), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(20), - [aux_sym__inline_no_tilde] = STATE(20), - [sym__strikethrough] = STATE(20), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(20), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(20), - [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(313), - [sym_entity_reference] = ACTIONS(316), - [sym_numeric_character_reference] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_RBRACK] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(328), - [anon_sym_POUND] = ACTIONS(328), - [anon_sym_DOLLAR] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_SQUOTE] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_DOT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_EQ] = ACTIONS(328), - [anon_sym_QMARK] = ACTIONS(328), - [anon_sym_AT] = ACTIONS(328), - [anon_sym_BSLASH] = ACTIONS(337), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym__] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_RPAREN] = ACTIONS(328), - [sym__newline_token] = ACTIONS(340), - [sym_uri_autolink] = ACTIONS(316), - [sym_email_autolink] = ACTIONS(316), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(343), - [anon_sym_LT_QMARK] = ACTIONS(346), - [aux_sym__declaration_token1] = ACTIONS(349), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(352), - [sym__whitespace_ge_2] = ACTIONS(355), - [aux_sym__whitespace_token1] = ACTIONS(358), - [sym__word_no_digit] = ACTIONS(316), - [sym__digits] = ACTIONS(316), - [sym__code_span_start] = ACTIONS(361), - [sym__emphasis_open_star] = ACTIONS(364), - [sym__emphasis_open_underscore] = ACTIONS(367), - [sym__last_token_punctuation] = ACTIONS(948), - [sym__strikethrough_open] = ACTIONS(372), - [sym__latex_span_start] = ACTIONS(375), - }, - [40] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(153), + [36] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(11), + [sym_full_reference_link] = STATE(11), + [sym_collapsed_reference_link] = STATE(11), + [sym_inline_link] = STATE(11), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(11), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(11), + [aux_sym__inline_no_star] = STATE(11), + [sym__strikethrough] = STATE(11), + [sym__emphasis_star] = STATE(410), + [sym__strong_emphasis_star] = STATE(11), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(11), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -16137,48 +15744,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(950), + [sym__last_token_punctuation] = ACTIONS(942), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [41] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(153), + [37] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -16228,139 +15836,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(952), + [sym__emphasis_close_star] = ACTIONS(944), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [42] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(686), - [sym_numeric_character_reference] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(686), - [sym_email_autolink] = ACTIONS(686), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(686), - [sym__digits] = ACTIONS(686), - [sym__code_span_start] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(954), - [sym__strikethrough_open] = ACTIONS(724), - [sym__latex_span_start] = ACTIONS(726), + [38] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(946), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, - [43] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(41), - [sym_full_reference_link] = STATE(41), - [sym_collapsed_reference_link] = STATE(41), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(41), - [aux_sym__inline_no_tilde] = STATE(41), - [sym__strikethrough] = STATE(41), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(41), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(153), + [39] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(948), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [40] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -16410,48 +16112,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__last_token_punctuation] = ACTIONS(956), - [sym__strikethrough_open] = ACTIONS(678), + [sym__emphasis_close_star] = ACTIONS(950), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [44] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(153), + [41] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(952), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [42] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -16501,259 +16296,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__strikethrough_close] = ACTIONS(958), + [sym__emphasis_close_star] = ACTIONS(954), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [45] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(960), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [43] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(956), + [sym_entity_reference] = ACTIONS(959), + [sym_numeric_character_reference] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PERCENT] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym_BSLASH] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(971), + [anon_sym__] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym__newline_token] = ACTIONS(983), + [sym_uri_autolink] = ACTIONS(959), + [sym_email_autolink] = ACTIONS(959), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(986), + [anon_sym_LT_QMARK] = ACTIONS(989), + [aux_sym__declaration_token1] = ACTIONS(992), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(995), + [sym__whitespace_ge_2] = ACTIONS(998), + [aux_sym__whitespace_token1] = ACTIONS(1001), + [sym__word_no_digit] = ACTIONS(959), + [sym__digits] = ACTIONS(959), + [sym__code_span_start] = ACTIONS(1004), + [sym__emphasis_open_star] = ACTIONS(1007), + [sym__emphasis_open_underscore] = ACTIONS(1010), + [sym__emphasis_close_star] = ACTIONS(1013), + [sym__strikethrough_open] = ACTIONS(1015), + [sym__latex_span_start] = ACTIONS(1018), + [sym__unclosed_span] = ACTIONS(959), }, - [46] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(28), - [sym_full_reference_link] = STATE(28), - [sym_collapsed_reference_link] = STATE(28), - [sym_inline_link] = STATE(28), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(28), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(28), - [aux_sym__inline_no_underscore] = STATE(28), - [sym__strikethrough] = STATE(28), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(28), - [sym__emphasis_underscore] = STATE(346), - [sym__strong_emphasis_underscore] = STATE(28), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__last_token_punctuation] = ACTIONS(962), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [44] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(26), + [sym_full_reference_link] = STATE(26), + [sym_collapsed_reference_link] = STATE(26), + [sym_inline_link] = STATE(26), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(26), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(26), + [aux_sym__inline_no_tilde] = STATE(26), + [sym__strikethrough] = STATE(26), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(26), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(26), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__last_token_punctuation] = ACTIONS(1021), + [sym__strikethrough_open] = ACTIONS(766), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, - [47] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(686), - [sym_numeric_character_reference] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), + [45] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(642), + [sym_numeric_character_reference] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(642), + [sym_email_autolink] = ACTIONS(642), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), + [anon_sym_LT_QMARK] = ACTIONS(662), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(642), + [sym__digits] = ACTIONS(642), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(674), + [sym__emphasis_open_underscore] = ACTIONS(676), + [sym__emphasis_close_star] = ACTIONS(1023), + [sym__strikethrough_open] = ACTIONS(680), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), + }, + [46] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(20), + [sym_full_reference_link] = STATE(20), + [sym_collapsed_reference_link] = STATE(20), + [sym_inline_link] = STATE(20), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(20), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(20), + [aux_sym__inline_no_underscore] = STATE(20), + [sym__strikethrough] = STATE(20), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(20), + [sym__emphasis_underscore] = STATE(312), + [sym__strong_emphasis_underscore] = STATE(20), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(686), + [sym_numeric_character_reference] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), [anon_sym_LBRACE] = ACTIONS(694), [anon_sym_PIPE] = ACTIONS(694), [anon_sym_RBRACE] = ACTIONS(694), @@ -16774,412 +16664,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(964), + [sym__last_token_punctuation] = ACTIONS(1025), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [48] = { - [sym_backslash_escape] = STATE(151), - [sym_code_span] = STATE(151), - [sym_latex_block] = STATE(151), - [sym__link_text] = STATE(1127), - [sym__link_text_non_empty] = STATE(288), - [sym_shortcut_link] = STATE(293), - [sym_full_reference_link] = STATE(293), - [sym_collapsed_reference_link] = STATE(293), - [sym_inline_link] = STATE(293), - [sym_image] = STATE(151), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), - [sym_hard_line_break] = STATE(151), - [sym__whitespace] = STATE(151), - [sym__word] = STATE(151), - [sym__soft_line_break] = STATE(151), - [sym__inline_base] = STATE(293), - [sym__text_base] = STATE(151), - [sym__inline_element] = STATE(293), - [aux_sym__inline] = STATE(48), - [sym__strikethrough] = STATE(293), - [sym__emphasis_star] = STATE(294), - [sym__strong_emphasis_star] = STATE(293), - [sym__emphasis_underscore] = STATE(294), - [sym__strong_emphasis_underscore] = STATE(293), - [aux_sym__inline_base_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(966), - [sym__backslash_escape] = ACTIONS(968), - [sym_entity_reference] = ACTIONS(971), - [sym_numeric_character_reference] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_COLON] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_BSLASH] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym__] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [sym__newline_token] = ACTIONS(995), - [sym_uri_autolink] = ACTIONS(971), - [sym_email_autolink] = ACTIONS(971), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(998), - [anon_sym_LT_QMARK] = ACTIONS(1001), - [aux_sym__declaration_token1] = ACTIONS(1004), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1007), - [sym__whitespace_ge_2] = ACTIONS(1010), - [aux_sym__whitespace_token1] = ACTIONS(1013), - [sym__word_no_digit] = ACTIONS(971), - [sym__digits] = ACTIONS(971), - [sym__code_span_start] = ACTIONS(1016), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1022), - [sym__strikethrough_open] = ACTIONS(1025), - [sym__latex_span_start] = ACTIONS(1028), - }, - [49] = { - [sym_backslash_escape] = STATE(151), - [sym_code_span] = STATE(151), - [sym_latex_block] = STATE(151), - [sym__link_text] = STATE(1127), - [sym__link_text_non_empty] = STATE(288), - [sym_shortcut_link] = STATE(293), - [sym_full_reference_link] = STATE(293), - [sym_collapsed_reference_link] = STATE(293), - [sym_inline_link] = STATE(293), - [sym_image] = STATE(151), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), - [sym_hard_line_break] = STATE(151), - [sym__whitespace] = STATE(151), - [sym__word] = STATE(151), - [sym__soft_line_break] = STATE(151), - [sym__inline_base] = STATE(293), - [sym__text_base] = STATE(151), - [sym__inline_element] = STATE(293), - [aux_sym__inline] = STATE(48), - [sym__strikethrough] = STATE(293), - [sym__emphasis_star] = STATE(294), - [sym__strong_emphasis_star] = STATE(293), - [sym__emphasis_underscore] = STATE(294), - [sym__strong_emphasis_underscore] = STATE(293), - [aux_sym__inline_base_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1031), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(7), - [anon_sym_RBRACK] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_GT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(13), - [anon_sym_COLON] = ACTIONS(13), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(13), - [anon_sym_QMARK] = ACTIONS(13), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_BSLASH] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(13), - [anon_sym__] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(13), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(13), - [sym__newline_token] = ACTIONS(21), - [sym_uri_autolink] = ACTIONS(5), - [sym_email_autolink] = ACTIONS(5), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), - [anon_sym_LT_QMARK] = ACTIONS(25), - [aux_sym__declaration_token1] = ACTIONS(27), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), - [sym__whitespace_ge_2] = ACTIONS(31), - [aux_sym__whitespace_token1] = ACTIONS(33), - [sym__word_no_digit] = ACTIONS(5), - [sym__digits] = ACTIONS(5), - [sym__code_span_start] = ACTIONS(35), - [sym__emphasis_open_star] = ACTIONS(37), - [sym__emphasis_open_underscore] = ACTIONS(39), - [sym__strikethrough_open] = ACTIONS(43), - [sym__latex_span_start] = ACTIONS(45), - }, - [50] = { + [47] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(50), - [sym_full_reference_link] = STATE(50), - [sym_collapsed_reference_link] = STATE(50), - [sym_inline_link] = STATE(50), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(50), + [sym__inline_base] = STATE(23), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(50), - [aux_sym__inline_no_tilde] = STATE(50), - [sym__strikethrough] = STATE(50), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(50), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(50), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(1033), - [sym_entity_reference] = ACTIONS(1036), - [sym_numeric_character_reference] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_PERCENT] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_BQUOTE] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [sym__newline_token] = ACTIONS(1060), - [sym_uri_autolink] = ACTIONS(1036), - [sym_email_autolink] = ACTIONS(1036), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1063), - [anon_sym_LT_QMARK] = ACTIONS(1066), - [aux_sym__declaration_token1] = ACTIONS(1069), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1072), - [sym__whitespace_ge_2] = ACTIONS(1075), - [aux_sym__whitespace_token1] = ACTIONS(1078), - [sym__word_no_digit] = ACTIONS(1036), - [sym__digits] = ACTIONS(1036), - [sym__code_span_start] = ACTIONS(1081), - [sym__emphasis_open_star] = ACTIONS(1084), - [sym__emphasis_open_underscore] = ACTIONS(1087), - [sym__strikethrough_open] = ACTIONS(1090), - [sym__strikethrough_close] = ACTIONS(1093), - [sym__latex_span_start] = ACTIONS(1095), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(686), + [sym_numeric_character_reference] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(686), + [sym_email_autolink] = ACTIONS(686), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(706), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(686), + [sym__digits] = ACTIONS(686), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(718), + [sym__emphasis_open_underscore] = ACTIONS(720), + [sym__emphasis_close_underscore] = ACTIONS(1027), + [sym__strikethrough_open] = ACTIONS(724), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [51] = { + [48] = { [sym_backslash_escape] = STATE(155), [sym_code_span] = STATE(155), [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(22), - [sym_full_reference_link] = STATE(22), - [sym_collapsed_reference_link] = STATE(22), - [sym_inline_link] = STATE(22), + [sym__link_text] = STATE(1120), + [sym__link_text_non_empty] = STATE(265), + [sym_shortcut_link] = STATE(275), + [sym_full_reference_link] = STATE(275), + [sym_collapsed_reference_link] = STATE(275), + [sym_inline_link] = STATE(275), [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), [sym_hard_line_break] = STATE(155), [sym__whitespace] = STATE(155), [sym__word] = STATE(155), [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(22), + [sym__inline_base] = STATE(275), [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(22), - [aux_sym__inline_no_underscore] = STATE(22), - [sym__strikethrough] = STATE(22), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(22), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(22), + [sym__inline_element] = STATE(275), + [aux_sym__inline] = STATE(48), + [sym__strikethrough] = STATE(275), + [sym__emphasis_star] = STATE(280), + [sym__strong_emphasis_star] = STATE(275), + [sym__emphasis_underscore] = STATE(280), + [sym__strong_emphasis_underscore] = STATE(275), [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__emphasis_close_underscore] = ACTIONS(1098), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [ts_builtin_sym_end] = ACTIONS(1029), + [sym__backslash_escape] = ACTIONS(1031), + [sym_entity_reference] = ACTIONS(1034), + [sym_numeric_character_reference] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1046), + [anon_sym_BSLASH] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [sym__newline_token] = ACTIONS(1058), + [sym_uri_autolink] = ACTIONS(1034), + [sym_email_autolink] = ACTIONS(1034), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1061), + [anon_sym_LT_QMARK] = ACTIONS(1064), + [aux_sym__declaration_token1] = ACTIONS(1067), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1070), + [sym__whitespace_ge_2] = ACTIONS(1073), + [aux_sym__whitespace_token1] = ACTIONS(1076), + [sym__word_no_digit] = ACTIONS(1034), + [sym__digits] = ACTIONS(1034), + [sym__code_span_start] = ACTIONS(1079), + [sym__emphasis_open_star] = ACTIONS(1082), + [sym__emphasis_open_underscore] = ACTIONS(1085), + [sym__strikethrough_open] = ACTIONS(1088), + [sym__latex_span_start] = ACTIONS(1091), + [sym__unclosed_span] = ACTIONS(1034), }, - [52] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(27), - [sym_full_reference_link] = STATE(27), - [sym_collapsed_reference_link] = STATE(27), - [sym_inline_link] = STATE(27), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(27), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(27), - [aux_sym__inline_no_star] = STATE(27), - [sym__strikethrough] = STATE(27), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym__inline_base_repeat1] = STATE(152), + [49] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(686), + [sym_numeric_character_reference] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(686), + [sym_email_autolink] = ACTIONS(686), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(706), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(686), + [sym__digits] = ACTIONS(686), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(718), + [sym__emphasis_open_underscore] = ACTIONS(720), + [sym__emphasis_close_underscore] = ACTIONS(1094), + [sym__strikethrough_open] = ACTIONS(724), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), + }, + [50] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(14), + [aux_sym__inline_no_tilde] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__strikethrough_close] = ACTIONS(1096), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [51] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -17229,47 +17124,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(716), [sym__emphasis_open_star] = ACTIONS(718), [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__emphasis_close_star] = ACTIONS(1100), + [sym__emphasis_close_underscore] = ACTIONS(1098), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), + }, + [52] = { + [sym_backslash_escape] = STATE(155), + [sym_code_span] = STATE(155), + [sym_latex_block] = STATE(155), + [sym__link_text] = STATE(1120), + [sym__link_text_non_empty] = STATE(265), + [sym_shortcut_link] = STATE(275), + [sym_full_reference_link] = STATE(275), + [sym_collapsed_reference_link] = STATE(275), + [sym_inline_link] = STATE(275), + [sym_image] = STATE(155), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), + [sym_hard_line_break] = STATE(155), + [sym__whitespace] = STATE(155), + [sym__word] = STATE(155), + [sym__soft_line_break] = STATE(155), + [sym__inline_base] = STATE(275), + [sym__text_base] = STATE(155), + [sym__inline_element] = STATE(275), + [aux_sym__inline] = STATE(48), + [sym__strikethrough] = STATE(275), + [sym__emphasis_star] = STATE(280), + [sym__strong_emphasis_star] = STATE(275), + [sym__emphasis_underscore] = STATE(280), + [sym__strong_emphasis_underscore] = STATE(275), + [aux_sym__inline_base_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(5), + [sym__digits] = ACTIONS(5), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(37), + [sym__emphasis_open_underscore] = ACTIONS(39), + [sym__strikethrough_open] = ACTIONS(43), + [sym__latex_span_start] = ACTIONS(45), + [sym__unclosed_span] = ACTIONS(5), }, [53] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), @@ -17322,45 +17310,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, [54] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(11), - [sym_full_reference_link] = STATE(11), - [sym_collapsed_reference_link] = STATE(11), - [sym_inline_link] = STATE(11), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(11), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(11), - [aux_sym__inline_no_tilde] = STATE(11), - [sym__strikethrough] = STATE(11), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(11), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(11), - [aux_sym__inline_base_repeat1] = STATE(153), + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(37), + [sym_full_reference_link] = STATE(37), + [sym_collapsed_reference_link] = STATE(37), + [sym_inline_link] = STATE(37), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(37), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(37), + [aux_sym__inline_no_star] = STATE(37), + [sym__strikethrough] = STATE(37), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(37), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(37), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -17410,47 +17399,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, [55] = { - [sym_backslash_escape] = STATE(151), - [sym_code_span] = STATE(151), - [sym_latex_block] = STATE(151), - [sym__link_text] = STATE(1127), - [sym__link_text_non_empty] = STATE(288), - [sym_shortcut_link] = STATE(293), - [sym_full_reference_link] = STATE(293), - [sym_collapsed_reference_link] = STATE(293), - [sym_inline_link] = STATE(293), - [sym_image] = STATE(151), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), - [sym_hard_line_break] = STATE(151), - [sym__whitespace] = STATE(151), - [sym__word] = STATE(151), - [sym__soft_line_break] = STATE(151), - [sym__inline_base] = STATE(293), - [sym__text_base] = STATE(151), - [sym__inline_element] = STATE(293), - [aux_sym__inline] = STATE(49), - [sym__strikethrough] = STATE(293), - [sym__emphasis_star] = STATE(294), - [sym__strong_emphasis_star] = STATE(293), - [sym__emphasis_underscore] = STATE(294), - [sym__strong_emphasis_underscore] = STATE(293), - [aux_sym__inline_base_repeat1] = STATE(151), + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(32), + [sym_full_reference_link] = STATE(32), + [sym_collapsed_reference_link] = STATE(32), + [sym_inline_link] = STATE(32), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(32), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(32), + [aux_sym__inline_no_underscore] = STATE(32), + [sym__strikethrough] = STATE(32), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(32), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(32), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(686), + [sym_numeric_character_reference] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(686), + [sym_email_autolink] = ACTIONS(686), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(706), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(686), + [sym__digits] = ACTIONS(686), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(718), + [sym__emphasis_open_underscore] = ACTIONS(720), + [sym__strikethrough_open] = ACTIONS(724), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), + }, + [56] = { + [sym_backslash_escape] = STATE(155), + [sym_code_span] = STATE(155), + [sym_latex_block] = STATE(155), + [sym__link_text] = STATE(1120), + [sym__link_text_non_empty] = STATE(265), + [sym_shortcut_link] = STATE(275), + [sym_full_reference_link] = STATE(275), + [sym_collapsed_reference_link] = STATE(275), + [sym_inline_link] = STATE(275), + [sym_image] = STATE(155), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), + [sym_hard_line_break] = STATE(155), + [sym__whitespace] = STATE(155), + [sym__word] = STATE(155), + [sym__soft_line_break] = STATE(155), + [sym__inline_base] = STATE(275), + [sym__text_base] = STATE(155), + [sym__inline_element] = STATE(275), + [aux_sym__inline] = STATE(52), + [sym__strikethrough] = STATE(275), + [sym__emphasis_star] = STATE(280), + [sym__strong_emphasis_star] = STATE(275), + [sym__emphasis_underscore] = STATE(280), + [sym__strong_emphasis_underscore] = STATE(275), + [aux_sym__inline_base_repeat1] = STATE(155), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -17502,225 +17583,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(39), [sym__strikethrough_open] = ACTIONS(43), [sym__latex_span_start] = ACTIONS(45), - }, - [56] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(23), - [sym_full_reference_link] = STATE(23), - [sym_collapsed_reference_link] = STATE(23), - [sym_inline_link] = STATE(23), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(23), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(23), - [aux_sym__inline_no_underscore] = STATE(23), - [sym__strikethrough] = STATE(23), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(23), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(23), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [sym__unclosed_span] = ACTIONS(5), }, [57] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(39), + [sym_full_reference_link] = STATE(39), + [sym_collapsed_reference_link] = STATE(39), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(39), + [aux_sym__inline_no_tilde] = STATE(39), + [sym__strikethrough] = STATE(39), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [58] = { [sym_backslash_escape] = STATE(153), [sym_code_span] = STATE(153), [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(44), - [sym_full_reference_link] = STATE(44), - [sym_collapsed_reference_link] = STATE(44), - [sym_inline_link] = STATE(44), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(22), + [sym_full_reference_link] = STATE(22), + [sym_collapsed_reference_link] = STATE(22), + [sym_inline_link] = STATE(22), [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(153), [sym__whitespace] = STATE(153), [sym__word] = STATE(153), [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(44), + [sym__inline_base] = STATE(22), [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(44), - [aux_sym__inline_no_tilde] = STATE(44), - [sym__strikethrough] = STATE(44), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(44), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(44), + [sym__inline_element_no_underscore] = STATE(22), + [aux_sym__inline_no_underscore] = STATE(22), + [sym__strikethrough] = STATE(22), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(22), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(22), [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(642), - [sym_numeric_character_reference] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(642), - [sym_email_autolink] = ACTIONS(642), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), - [anon_sym_LT_QMARK] = ACTIONS(662), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(642), - [sym__digits] = ACTIONS(642), - [sym__code_span_start] = ACTIONS(672), - [sym__emphasis_open_star] = ACTIONS(674), - [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__latex_span_start] = ACTIONS(682), - }, - [58] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(12), - [sym_full_reference_link] = STATE(12), - [sym_collapsed_reference_link] = STATE(12), - [sym_inline_link] = STATE(12), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(12), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(12), - [aux_sym__inline_no_star] = STATE(12), - [sym__strikethrough] = STATE(12), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(12), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(12), - [aux_sym__inline_base_repeat1] = STATE(152), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -17772,44 +17765,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(720), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, [59] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(80), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), @@ -17862,134 +17856,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, [60] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(37), - [sym_full_reference_link] = STATE(37), - [sym_collapsed_reference_link] = STATE(37), - [sym_inline_link] = STATE(37), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(37), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(37), - [aux_sym__inline_no_underscore] = STATE(37), - [sym__strikethrough] = STATE(37), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(37), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(37), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [61] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), @@ -18042,50 +17947,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), + }, + [61] = { + [sym_backslash_escape] = STATE(157), + [sym_code_span] = STATE(157), + [sym_latex_block] = STATE(157), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), + [sym_image] = STATE(157), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(157), + [sym__whitespace] = STATE(157), + [sym__word] = STATE(157), + [sym__soft_line_break] = STATE(157), + [sym__inline_base] = STATE(585), + [sym__text_base] = STATE(157), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), + [aux_sym__inline_base_repeat1] = STATE(157), + [sym__backslash_escape] = ACTIONS(1148), + [sym_entity_reference] = ACTIONS(1151), + [sym_numeric_character_reference] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_RBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1163), + [anon_sym_BSLASH] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1163), + [anon_sym__] = ACTIONS(1163), + [anon_sym_BQUOTE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1163), + [sym__newline_token] = ACTIONS(1175), + [sym_uri_autolink] = ACTIONS(1151), + [sym_email_autolink] = ACTIONS(1151), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1178), + [anon_sym_LT_QMARK] = ACTIONS(1181), + [aux_sym__declaration_token1] = ACTIONS(1184), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1187), + [sym__whitespace_ge_2] = ACTIONS(1190), + [aux_sym__whitespace_token1] = ACTIONS(1193), + [sym__word_no_digit] = ACTIONS(1151), + [sym__digits] = ACTIONS(1151), + [sym__code_span_start] = ACTIONS(1196), + [sym__emphasis_open_star] = ACTIONS(1199), + [sym__emphasis_open_underscore] = ACTIONS(1202), + [sym__strikethrough_open] = ACTIONS(1205), + [sym__latex_span_start] = ACTIONS(1208), + [sym__unclosed_span] = ACTIONS(1151), }, [62] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1148), + [anon_sym_RBRACK] = ACTIONS(1211), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -18132,50 +18129,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, [63] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(13), + [sym_full_reference_link] = STATE(13), + [sym_collapsed_reference_link] = STATE(13), + [sym_inline_link] = STATE(13), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(13), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(13), + [aux_sym__inline_no_tilde] = STATE(13), + [sym__strikethrough] = STATE(13), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(13), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(13), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [64] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(15), + [sym_full_reference_link] = STATE(15), + [sym_collapsed_reference_link] = STATE(15), + [sym_inline_link] = STATE(15), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(15), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(15), + [aux_sym__inline_no_star] = STATE(15), + [sym__strikethrough] = STATE(15), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(15), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(15), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(642), + [sym_numeric_character_reference] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(642), + [sym_email_autolink] = ACTIONS(642), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), + [anon_sym_LT_QMARK] = ACTIONS(662), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(642), + [sym__digits] = ACTIONS(642), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(674), + [sym__emphasis_open_underscore] = ACTIONS(676), + [sym__strikethrough_open] = ACTIONS(680), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), + }, + [65] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(61), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(85), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -18222,50 +18402,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [64] = { + [66] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(81), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1215), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -18312,50 +18493,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [65] = { + [67] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(40), + [sym_full_reference_link] = STATE(40), + [sym_collapsed_reference_link] = STATE(40), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(40), + [aux_sym__inline_no_star] = STATE(40), + [sym__strikethrough] = STATE(40), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(40), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(40), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(642), + [sym_numeric_character_reference] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(642), + [sym_email_autolink] = ACTIONS(642), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), + [anon_sym_LT_QMARK] = ACTIONS(662), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(642), + [sym__digits] = ACTIONS(642), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(674), + [sym__emphasis_open_underscore] = ACTIONS(676), + [sym__strikethrough_open] = ACTIONS(680), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), + }, + [68] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(51), + [sym_full_reference_link] = STATE(51), + [sym_collapsed_reference_link] = STATE(51), + [sym_inline_link] = STATE(51), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(51), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(51), + [aux_sym__inline_no_underscore] = STATE(51), + [sym__strikethrough] = STATE(51), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(51), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(51), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(686), + [sym_numeric_character_reference] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(686), + [sym_email_autolink] = ACTIONS(686), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(706), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(686), + [sym__digits] = ACTIONS(686), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(718), + [sym__emphasis_open_underscore] = ACTIONS(720), + [sym__strikethrough_open] = ACTIONS(724), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), + }, + [69] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(82), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(62), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -18402,50 +18766,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [66] = { + [70] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(50), + [sym_full_reference_link] = STATE(50), + [sym_collapsed_reference_link] = STATE(50), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(50), + [aux_sym__inline_no_tilde] = STATE(50), + [sym__strikethrough] = STATE(50), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [71] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(53), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1150), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -18492,45 +18948,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [67] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(35), - [sym_full_reference_link] = STATE(35), - [sym_collapsed_reference_link] = STATE(35), - [sym_inline_link] = STATE(35), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(35), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(35), - [aux_sym__inline_no_tilde] = STATE(35), - [sym__strikethrough] = STATE(35), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(35), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(35), - [aux_sym__inline_base_repeat1] = STATE(153), + [72] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(18), + [aux_sym__inline_no_star] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -18580,227 +19037,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [68] = { - [sym_backslash_escape] = STATE(157), - [sym_code_span] = STATE(157), - [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), - [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(157), - [sym__whitespace] = STATE(157), - [sym__word] = STATE(157), - [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), - [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(84), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), - [aux_sym__inline_base_repeat1] = STATE(157), - [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(1104), - [sym_numeric_character_reference] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1118), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym__] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1112), - [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(1104), - [sym_email_autolink] = ACTIONS(1104), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1122), - [anon_sym_LT_QMARK] = ACTIONS(1124), - [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1128), - [sym__whitespace_ge_2] = ACTIONS(1130), - [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(1104), - [sym__digits] = ACTIONS(1104), - [sym__code_span_start] = ACTIONS(1134), - [sym__emphasis_open_star] = ACTIONS(1136), - [sym__emphasis_open_underscore] = ACTIONS(1138), - [sym__strikethrough_open] = ACTIONS(1140), - [sym__latex_span_start] = ACTIONS(1142), - }, - [69] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(33), - [sym_full_reference_link] = STATE(33), - [sym_collapsed_reference_link] = STATE(33), - [sym_inline_link] = STATE(33), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(33), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(33), - [aux_sym__inline_no_underscore] = STATE(33), - [sym__strikethrough] = STATE(33), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(33), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(33), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [70] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(30), - [sym_full_reference_link] = STATE(30), - [sym_collapsed_reference_link] = STATE(30), - [sym_inline_link] = STATE(30), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(30), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(30), - [aux_sym__inline_no_star] = STATE(30), - [sym__strikethrough] = STATE(30), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(30), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(30), - [aux_sym__inline_base_repeat1] = STATE(152), + [73] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(17), + [sym_full_reference_link] = STATE(17), + [sym_collapsed_reference_link] = STATE(17), + [sym_inline_link] = STATE(17), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(17), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(17), + [aux_sym__inline_no_underscore] = STATE(17), + [sym__strikethrough] = STATE(17), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(17), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(17), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -18852,135 +19130,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(720), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [71] = { - [sym_backslash_escape] = STATE(157), - [sym_code_span] = STATE(157), - [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), - [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(157), - [sym__whitespace] = STATE(157), - [sym__word] = STATE(157), - [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), - [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), - [aux_sym__inline_base_repeat1] = STATE(157), - [sym__backslash_escape] = ACTIONS(1152), - [sym_entity_reference] = ACTIONS(1155), - [sym_numeric_character_reference] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_POUND] = ACTIONS(1167), - [anon_sym_DOLLAR] = ACTIONS(1167), - [anon_sym_PERCENT] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1167), - [anon_sym_SLASH] = ACTIONS(1167), - [anon_sym_COLON] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_QMARK] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1167), - [anon_sym_BSLASH] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1167), - [anon_sym__] = ACTIONS(1167), - [anon_sym_BQUOTE] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_RPAREN] = ACTIONS(1167), - [sym__newline_token] = ACTIONS(1179), - [sym_uri_autolink] = ACTIONS(1155), - [sym_email_autolink] = ACTIONS(1155), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1182), - [anon_sym_LT_QMARK] = ACTIONS(1185), - [aux_sym__declaration_token1] = ACTIONS(1188), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1191), - [sym__whitespace_ge_2] = ACTIONS(1194), - [aux_sym__whitespace_token1] = ACTIONS(1197), - [sym__word_no_digit] = ACTIONS(1155), - [sym__digits] = ACTIONS(1155), - [sym__code_span_start] = ACTIONS(1200), - [sym__emphasis_open_star] = ACTIONS(1203), - [sym__emphasis_open_underscore] = ACTIONS(1206), - [sym__strikethrough_open] = ACTIONS(1209), - [sym__latex_span_start] = ACTIONS(1212), + [74] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(35), + [sym_full_reference_link] = STATE(35), + [sym_collapsed_reference_link] = STATE(35), + [sym_inline_link] = STATE(35), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(35), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(35), + [aux_sym__inline_no_tilde] = STATE(35), + [sym__strikethrough] = STATE(35), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(35), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(35), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), }, - [72] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(38), - [sym_full_reference_link] = STATE(38), - [sym_collapsed_reference_link] = STATE(38), - [sym_inline_link] = STATE(38), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(38), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(38), - [aux_sym__inline_no_star] = STATE(38), - [sym__strikethrough] = STATE(38), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(38), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(38), - [aux_sym__inline_base_repeat1] = STATE(152), + [75] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym_latex_block] = STATE(153), + [sym__link_text] = STATE(1115), + [sym__link_text_non_empty] = STATE(433), + [sym_shortcut_link] = STATE(34), + [sym_full_reference_link] = STATE(34), + [sym_collapsed_reference_link] = STATE(34), + [sym_inline_link] = STATE(34), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(34), + [sym__text_base] = STATE(153), + [sym__inline_element_no_underscore] = STATE(34), + [aux_sym__inline_no_underscore] = STATE(34), + [sym__strikethrough] = STATE(34), + [sym__emphasis_star] = STATE(290), + [sym__strong_emphasis_star] = STATE(34), + [sym__emphasis_underscore] = STATE(290), + [sym__strong_emphasis_underscore] = STATE(34), + [aux_sym__inline_base_repeat1] = STATE(153), [sym__backslash_escape] = ACTIONS(684), [sym_entity_reference] = ACTIONS(686), [sym_numeric_character_reference] = ACTIONS(686), @@ -19032,45 +19312,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(720), [sym__strikethrough_open] = ACTIONS(724), [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(686), }, - [73] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(34), - [sym_full_reference_link] = STATE(34), - [sym_collapsed_reference_link] = STATE(34), - [sym_inline_link] = STATE(34), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(34), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(34), - [aux_sym__inline_no_tilde] = STATE(34), - [sym__strikethrough] = STATE(34), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(34), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(34), - [aux_sym__inline_base_repeat1] = STATE(153), + [76] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_latex_block] = STATE(149), + [sym__link_text] = STATE(1118), + [sym__link_text_non_empty] = STATE(345), + [sym_shortcut_link] = STATE(33), + [sym_full_reference_link] = STATE(33), + [sym_collapsed_reference_link] = STATE(33), + [sym_inline_link] = STATE(33), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__inline_base] = STATE(33), + [sym__text_base] = STATE(149), + [sym__inline_element_no_star] = STATE(33), + [aux_sym__inline_no_star] = STATE(33), + [sym__strikethrough] = STATE(33), + [sym__emphasis_star] = STATE(284), + [sym__strong_emphasis_star] = STATE(33), + [sym__emphasis_underscore] = STATE(284), + [sym__strong_emphasis_underscore] = STATE(33), + [aux_sym__inline_base_repeat1] = STATE(149), [sym__backslash_escape] = ACTIONS(640), [sym_entity_reference] = ACTIONS(642), [sym_numeric_character_reference] = ACTIONS(642), @@ -19120,52 +19401,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(672), [sym__emphasis_open_star] = ACTIONS(674), [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), + [sym__strikethrough_open] = ACTIONS(680), [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(642), }, - [74] = { + [77] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(66), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(79), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -19212,50 +19494,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [75] = { + [78] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym_latex_block] = STATE(154), + [sym__link_text] = STATE(1116), + [sym__link_text_non_empty] = STATE(502), + [sym_shortcut_link] = STATE(16), + [sym_full_reference_link] = STATE(16), + [sym_collapsed_reference_link] = STATE(16), + [sym_inline_link] = STATE(16), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(16), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(16), + [aux_sym__inline_no_tilde] = STATE(16), + [sym__strikethrough] = STATE(16), + [sym__emphasis_star] = STATE(292), + [sym__strong_emphasis_star] = STATE(16), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(16), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(730), + [sym_numeric_character_reference] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(730), + [sym_email_autolink] = ACTIONS(730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(730), + [sym__digits] = ACTIONS(730), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(764), + [sym__strikethrough_open] = ACTIONS(766), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(730), + }, + [79] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(62), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1217), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -19302,140 +19676,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [76] = { - [sym_backslash_escape] = STATE(153), - [sym_code_span] = STATE(153), - [sym_latex_block] = STATE(153), - [sym__link_text] = STATE(1125), - [sym__link_text_non_empty] = STATE(519), - [sym_shortcut_link] = STATE(19), - [sym_full_reference_link] = STATE(19), - [sym_collapsed_reference_link] = STATE(19), - [sym_inline_link] = STATE(19), - [sym_image] = STATE(153), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(153), - [sym__whitespace] = STATE(153), - [sym__word] = STATE(153), - [sym__soft_line_break] = STATE(153), - [sym__inline_base] = STATE(19), - [sym__text_base] = STATE(153), - [sym__inline_element_no_tilde] = STATE(19), - [aux_sym__inline_no_tilde] = STATE(19), - [sym__strikethrough] = STATE(19), - [sym__emphasis_star] = STATE(302), - [sym__strong_emphasis_star] = STATE(19), - [sym__emphasis_underscore] = STATE(302), - [sym__strong_emphasis_underscore] = STATE(19), - [aux_sym__inline_base_repeat1] = STATE(153), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(642), - [sym_numeric_character_reference] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(642), - [sym_email_autolink] = ACTIONS(642), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), - [anon_sym_LT_QMARK] = ACTIONS(662), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(642), - [sym__digits] = ACTIONS(642), - [sym__code_span_start] = ACTIONS(672), - [sym__emphasis_open_star] = ACTIONS(674), - [sym__emphasis_open_underscore] = ACTIONS(676), - [sym__strikethrough_open] = ACTIONS(678), - [sym__latex_span_start] = ACTIONS(682), - }, - [77] = { + [80] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(53), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(59), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -19482,230 +19767,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [78] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(18), - [sym_full_reference_link] = STATE(18), - [sym_collapsed_reference_link] = STATE(18), - [sym_inline_link] = STATE(18), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(18), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(18), - [aux_sym__inline_no_underscore] = STATE(18), - [sym__strikethrough] = STATE(18), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(18), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(18), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), - }, - [79] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(17), - [sym_full_reference_link] = STATE(17), - [sym_collapsed_reference_link] = STATE(17), - [sym_inline_link] = STATE(17), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(17), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(17), - [aux_sym__inline_no_star] = STATE(17), - [sym__strikethrough] = STATE(17), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(17), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(17), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(686), - [sym_numeric_character_reference] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(686), - [sym_email_autolink] = ACTIONS(686), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(686), - [sym__digits] = ACTIONS(686), - [sym__code_span_start] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__strikethrough_open] = ACTIONS(724), - [sym__latex_span_start] = ACTIONS(726), - }, - [80] = { + [81] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -19752,50 +19858,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [81] = { + [82] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(81), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -19842,50 +19949,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, - [82] = { + [83] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(60), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -19932,140 +20040,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), - }, - [83] = { - [sym_backslash_escape] = STATE(155), - [sym_code_span] = STATE(155), - [sym_latex_block] = STATE(155), - [sym__link_text] = STATE(1124), - [sym__link_text_non_empty] = STATE(437), - [sym_shortcut_link] = STATE(25), - [sym_full_reference_link] = STATE(25), - [sym_collapsed_reference_link] = STATE(25), - [sym_inline_link] = STATE(25), - [sym_image] = STATE(155), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(155), - [sym__whitespace] = STATE(155), - [sym__word] = STATE(155), - [sym__soft_line_break] = STATE(155), - [sym__inline_base] = STATE(25), - [sym__text_base] = STATE(155), - [sym__inline_element_no_underscore] = STATE(25), - [aux_sym__inline_no_underscore] = STATE(25), - [sym__strikethrough] = STATE(25), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(25), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(25), - [aux_sym__inline_base_repeat1] = STATE(155), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(734), - [sym_numeric_character_reference] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(734), - [sym_email_autolink] = ACTIONS(734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(734), - [sym__digits] = ACTIONS(734), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(768), - [sym__strikethrough_open] = ACTIONS(772), - [sym__latex_span_start] = ACTIONS(774), + [sym__unclosed_span] = ACTIONS(1104), }, [84] = { [sym_backslash_escape] = STATE(157), [sym_code_span] = STATE(157), [sym_latex_block] = STATE(157), - [sym__link_text] = STATE(1132), - [sym__link_text_non_empty] = STATE(600), - [sym_shortcut_link] = STATE(555), - [sym_full_reference_link] = STATE(555), - [sym_collapsed_reference_link] = STATE(555), - [sym_inline_link] = STATE(555), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), [sym_image] = STATE(157), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(157), [sym__whitespace] = STATE(157), [sym__word] = STATE(157), [sym__soft_line_break] = STATE(157), - [sym__inline_base] = STATE(555), + [sym__inline_base] = STATE(585), [sym__text_base] = STATE(157), - [sym__inline_element] = STATE(555), - [aux_sym__inline] = STATE(71), - [sym__strikethrough] = STATE(555), - [sym__emphasis_star] = STATE(554), - [sym__strong_emphasis_star] = STATE(555), - [sym__emphasis_underscore] = STATE(554), - [sym__strong_emphasis_underscore] = STATE(555), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(66), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), [aux_sym__inline_base_repeat1] = STATE(157), [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(1104), [sym_numeric_character_reference] = ACTIONS(1104), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_RBRACK] = ACTIONS(1213), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -20112,133 +20131,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1138), [sym__strikethrough_open] = ACTIONS(1140), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, [85] = { - [sym_backslash_escape] = STATE(152), - [sym_code_span] = STATE(152), - [sym_latex_block] = STATE(152), - [sym__link_text] = STATE(1123), - [sym__link_text_non_empty] = STATE(351), - [sym_shortcut_link] = STATE(24), - [sym_full_reference_link] = STATE(24), - [sym_collapsed_reference_link] = STATE(24), - [sym_inline_link] = STATE(24), - [sym_image] = STATE(152), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(152), - [sym__whitespace] = STATE(152), - [sym__word] = STATE(152), - [sym__soft_line_break] = STATE(152), - [sym__inline_base] = STATE(24), - [sym__text_base] = STATE(152), - [sym__inline_element_no_star] = STATE(24), - [aux_sym__inline_no_star] = STATE(24), - [sym__strikethrough] = STATE(24), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(24), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(24), - [aux_sym__inline_base_repeat1] = STATE(152), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(686), - [sym_numeric_character_reference] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(688), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(686), - [sym_email_autolink] = ACTIONS(686), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(686), - [sym__digits] = ACTIONS(686), - [sym__code_span_start] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(720), - [sym__strikethrough_open] = ACTIONS(724), - [sym__latex_span_start] = ACTIONS(726), + [sym_backslash_escape] = STATE(157), + [sym_code_span] = STATE(157), + [sym_latex_block] = STATE(157), + [sym__link_text] = STATE(1122), + [sym__link_text_non_empty] = STATE(592), + [sym_shortcut_link] = STATE(585), + [sym_full_reference_link] = STATE(585), + [sym_collapsed_reference_link] = STATE(585), + [sym_inline_link] = STATE(585), + [sym_image] = STATE(157), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(157), + [sym__whitespace] = STATE(157), + [sym__word] = STATE(157), + [sym__soft_line_break] = STATE(157), + [sym__inline_base] = STATE(585), + [sym__text_base] = STATE(157), + [sym__inline_element] = STATE(585), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(585), + [sym__emphasis_star] = STATE(589), + [sym__strong_emphasis_star] = STATE(585), + [sym__emphasis_underscore] = STATE(589), + [sym__strong_emphasis_underscore] = STATE(585), + [aux_sym__inline_base_repeat1] = STATE(157), + [sym__backslash_escape] = ACTIONS(1102), + [sym_entity_reference] = ACTIONS(1104), + [sym_numeric_character_reference] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [sym__newline_token] = ACTIONS(1120), + [sym_uri_autolink] = ACTIONS(1104), + [sym_email_autolink] = ACTIONS(1104), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1122), + [anon_sym_LT_QMARK] = ACTIONS(1124), + [aux_sym__declaration_token1] = ACTIONS(1126), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1128), + [sym__whitespace_ge_2] = ACTIONS(1130), + [aux_sym__whitespace_token1] = ACTIONS(1132), + [sym__word_no_digit] = ACTIONS(1104), + [sym__digits] = ACTIONS(1104), + [sym__code_span_start] = ACTIONS(1134), + [sym__emphasis_open_star] = ACTIONS(1136), + [sym__emphasis_open_underscore] = ACTIONS(1138), + [sym__strikethrough_open] = ACTIONS(1140), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(1104), }, [86] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(109), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(114), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), [sym__backslash_escape] = ACTIONS(1223), [sym_entity_reference] = ACTIONS(1226), [sym_numeric_character_reference] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(500), [anon_sym_RBRACK] = ACTIONS(1229), [anon_sym_LT] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(1235), @@ -20284,48 +20305,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1268), [sym__emphasis_open_star] = ACTIONS(1271), [sym__emphasis_open_underscore] = ACTIONS(1274), - [sym__emphasis_close_star] = ACTIONS(565), + [sym__emphasis_close_star] = ACTIONS(500), [sym__last_token_punctuation] = ACTIONS(1277), [sym__strikethrough_open] = ACTIONS(1279), [sym__latex_span_start] = ACTIONS(1282), + [sym__unclosed_span] = ACTIONS(1226), }, [87] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(106), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(114), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(131), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), [sym__backslash_escape] = ACTIONS(1285), [sym_entity_reference] = ACTIONS(1288), [sym_numeric_character_reference] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_RBRACK] = ACTIONS(1291), [anon_sym_LT] = ACTIONS(1294), [anon_sym_GT] = ACTIONS(1297), @@ -20373,44 +20394,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1336), [sym__last_token_punctuation] = ACTIONS(1339), [sym__strikethrough_open] = ACTIONS(1341), + [sym__strikethrough_close] = ACTIONS(308), [sym__latex_span_start] = ACTIONS(1344), + [sym__unclosed_span] = ACTIONS(1288), }, [88] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(135), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(132), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), [sym__backslash_escape] = ACTIONS(1347), [sym_entity_reference] = ACTIONS(1350), [sym_numeric_character_reference] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(104), [anon_sym_RBRACK] = ACTIONS(1353), [anon_sym_LT] = ACTIONS(1356), [anon_sym_GT] = ACTIONS(1359), @@ -20456,47 +20479,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1392), [sym__emphasis_open_star] = ACTIONS(1395), [sym__emphasis_open_underscore] = ACTIONS(1398), + [sym__emphasis_close_underscore] = ACTIONS(104), [sym__last_token_punctuation] = ACTIONS(1401), [sym__strikethrough_open] = ACTIONS(1403), - [sym__strikethrough_close] = ACTIONS(308), [sym__latex_span_start] = ACTIONS(1406), + [sym__unclosed_span] = ACTIONS(1350), }, [89] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(123), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(106), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(114), [sym__backslash_escape] = ACTIONS(1409), [sym_entity_reference] = ACTIONS(1412), [sym_numeric_character_reference] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(114), [anon_sym_RBRACK] = ACTIONS(1415), [anon_sym_LT] = ACTIONS(1418), [anon_sym_GT] = ACTIONS(1421), @@ -20542,128 +20567,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1454), [sym__emphasis_open_star] = ACTIONS(1457), [sym__emphasis_open_underscore] = ACTIONS(1460), - [sym__emphasis_close_underscore] = ACTIONS(104), [sym__last_token_punctuation] = ACTIONS(1463), [sym__strikethrough_open] = ACTIONS(1465), [sym__latex_span_start] = ACTIONS(1468), + [sym__unclosed_span] = ACTIONS(1412), }, [90] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(108), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), - [sym__backslash_escape] = ACTIONS(1285), - [sym_entity_reference] = ACTIONS(1288), - [sym_numeric_character_reference] = ACTIONS(1288), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(100), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(1409), + [sym_entity_reference] = ACTIONS(1412), + [sym_numeric_character_reference] = ACTIONS(1412), [anon_sym_LBRACK] = ACTIONS(114), - [anon_sym_RBRACK] = ACTIONS(1291), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_DOLLAR] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_COMMA] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_COLON] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_EQ] = ACTIONS(1297), - [anon_sym_QMARK] = ACTIONS(1297), - [anon_sym_AT] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1297), - [anon_sym__] = ACTIONS(1297), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1297), - [anon_sym_RPAREN] = ACTIONS(1297), - [sym__newline_token] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1288), - [sym_email_autolink] = ACTIONS(1288), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1312), - [anon_sym_LT_QMARK] = ACTIONS(1315), - [aux_sym__declaration_token1] = ACTIONS(1318), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1321), - [sym__whitespace_ge_2] = ACTIONS(1324), - [aux_sym__whitespace_token1] = ACTIONS(1327), - [sym__word_no_digit] = ACTIONS(1288), - [sym__digits] = ACTIONS(1288), - [sym__code_span_start] = ACTIONS(1330), - [sym__emphasis_open_star] = ACTIONS(1333), - [sym__emphasis_open_underscore] = ACTIONS(1336), + [anon_sym_RBRACK] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_AT] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [sym__newline_token] = ACTIONS(1433), + [sym_uri_autolink] = ACTIONS(1412), + [sym_email_autolink] = ACTIONS(1412), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1436), + [anon_sym_LT_QMARK] = ACTIONS(1439), + [aux_sym__declaration_token1] = ACTIONS(1442), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1445), + [sym__whitespace_ge_2] = ACTIONS(1448), + [aux_sym__whitespace_token1] = ACTIONS(1451), + [sym__word_no_digit] = ACTIONS(1412), + [sym__digits] = ACTIONS(1412), + [sym__code_span_start] = ACTIONS(1454), + [sym__emphasis_open_star] = ACTIONS(1457), + [sym__emphasis_open_underscore] = ACTIONS(1460), [sym__last_token_punctuation] = ACTIONS(1471), - [sym__strikethrough_open] = ACTIONS(1341), - [sym__latex_span_start] = ACTIONS(1344), + [sym__strikethrough_open] = ACTIONS(1465), + [sym__latex_span_start] = ACTIONS(1468), + [sym__unclosed_span] = ACTIONS(1412), }, [91] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(111), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(111), - [aux_sym__inline_no_underscore_no_link] = STATE(111), - [sym__strikethrough_no_link] = STATE(111), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(111), - [sym__emphasis_underscore_no_link] = STATE(630), - [sym__strong_emphasis_underscore_no_link] = STATE(111), - [aux_sym__inline_base_repeat1] = STATE(162), + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(116), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(116), + [aux_sym__inline_no_underscore_no_link] = STATE(116), + [sym__strikethrough_no_link] = STATE(116), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(116), + [sym__emphasis_underscore_no_link] = STATE(618), + [sym__strong_emphasis_underscore_no_link] = STATE(116), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(1473), [sym_entity_reference] = ACTIONS(1476), [sym_numeric_character_reference] = ACTIONS(1476), @@ -20711,215 +20737,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1515), [sym__emphasis_open_star] = ACTIONS(1518), [sym__emphasis_open_underscore] = ACTIONS(1521), - [sym__emphasis_close_star] = ACTIONS(1524), - [sym__last_token_punctuation] = ACTIONS(1526), - [sym__strikethrough_open] = ACTIONS(1528), + [sym__last_token_punctuation] = ACTIONS(1524), + [sym__strikethrough_open] = ACTIONS(1526), + [sym__strikethrough_close] = ACTIONS(1529), [sym__latex_span_start] = ACTIONS(1531), + [sym__unclosed_span] = ACTIONS(1476), }, [92] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(134), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(134), - [aux_sym__inline_no_tilde_no_link] = STATE(134), - [sym__strikethrough_no_link] = STATE(134), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(134), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(134), - [aux_sym__inline_base_repeat1] = STATE(165), + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(119), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(119), + [aux_sym__inline_no_star_no_link] = STATE(119), + [sym__strikethrough_no_link] = STATE(119), + [sym__emphasis_star_no_link] = STATE(614), + [sym__strong_emphasis_star_no_link] = STATE(119), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(119), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(1534), [sym_entity_reference] = ACTIONS(1537), [sym_numeric_character_reference] = ACTIONS(1537), - [anon_sym_RBRACK] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_COMMA] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_COLON] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1545), - [anon_sym_BSLASH] = ACTIONS(1554), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym__] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [sym__newline_token] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_COLON] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym__] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [sym__newline_token] = ACTIONS(1555), [sym_uri_autolink] = ACTIONS(1537), [sym_email_autolink] = ACTIONS(1537), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1560), - [anon_sym_LT_QMARK] = ACTIONS(1563), - [aux_sym__declaration_token1] = ACTIONS(1566), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1569), - [sym__whitespace_ge_2] = ACTIONS(1572), - [aux_sym__whitespace_token1] = ACTIONS(1575), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1558), + [anon_sym_LT_QMARK] = ACTIONS(1561), + [aux_sym__declaration_token1] = ACTIONS(1564), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1567), + [sym__whitespace_ge_2] = ACTIONS(1570), + [aux_sym__whitespace_token1] = ACTIONS(1573), [sym__word_no_digit] = ACTIONS(1537), [sym__digits] = ACTIONS(1537), - [sym__code_span_start] = ACTIONS(1578), - [sym__emphasis_open_star] = ACTIONS(1581), - [sym__emphasis_open_underscore] = ACTIONS(1584), + [sym__code_span_start] = ACTIONS(1576), + [sym__emphasis_open_star] = ACTIONS(1579), + [sym__emphasis_open_underscore] = ACTIONS(1582), + [sym__emphasis_close_underscore] = ACTIONS(1585), [sym__last_token_punctuation] = ACTIONS(1587), [sym__strikethrough_open] = ACTIONS(1589), [sym__latex_span_start] = ACTIONS(1592), + [sym__unclosed_span] = ACTIONS(1537), }, [93] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(126), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(126), - [aux_sym__inline_no_star_no_link] = STATE(126), - [sym__strikethrough_no_link] = STATE(126), - [sym__emphasis_star_no_link] = STATE(618), - [sym__strong_emphasis_star_no_link] = STATE(126), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(126), - [aux_sym__inline_base_repeat1] = STATE(158), + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(123), + [aux_sym__inline_no_star_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(644), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(1595), [sym_entity_reference] = ACTIONS(1598), [sym_numeric_character_reference] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_PERCENT] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_COMMA] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_AT] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym__] = ACTIONS(1604), - [anon_sym_BQUOTE] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_RPAREN] = ACTIONS(1604), - [sym__newline_token] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1615), + [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_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [sym__newline_token] = ACTIONS(1618), [sym_uri_autolink] = ACTIONS(1598), [sym_email_autolink] = ACTIONS(1598), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1619), - [anon_sym_LT_QMARK] = ACTIONS(1622), - [aux_sym__declaration_token1] = ACTIONS(1625), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1628), - [sym__whitespace_ge_2] = ACTIONS(1631), - [aux_sym__whitespace_token1] = ACTIONS(1634), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1621), + [anon_sym_LT_QMARK] = ACTIONS(1624), + [aux_sym__declaration_token1] = ACTIONS(1627), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1630), + [sym__whitespace_ge_2] = ACTIONS(1633), + [aux_sym__whitespace_token1] = ACTIONS(1636), [sym__word_no_digit] = ACTIONS(1598), [sym__digits] = ACTIONS(1598), - [sym__code_span_start] = ACTIONS(1637), - [sym__emphasis_open_star] = ACTIONS(1640), - [sym__emphasis_open_underscore] = ACTIONS(1643), - [sym__emphasis_close_underscore] = ACTIONS(1646), + [sym__code_span_start] = ACTIONS(1639), + [sym__emphasis_open_star] = ACTIONS(1642), + [sym__emphasis_open_underscore] = ACTIONS(1645), [sym__last_token_punctuation] = ACTIONS(1648), [sym__strikethrough_open] = ACTIONS(1650), [sym__latex_span_start] = ACTIONS(1653), + [sym__unclosed_span] = ACTIONS(1598), }, [94] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(127), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(127), - [aux_sym__inline_no_underscore_no_link] = STATE(127), - [sym__strikethrough_no_link] = STATE(127), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(127), - [sym__emphasis_underscore_no_link] = STATE(631), - [sym__strong_emphasis_underscore_no_link] = STATE(127), - [aux_sym__inline_base_repeat1] = STATE(162), + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(128), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(128), + [aux_sym__inline_no_underscore_no_link] = STATE(128), + [sym__strikethrough_no_link] = STATE(128), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(128), + [sym__emphasis_underscore_no_link] = STATE(627), + [sym__strong_emphasis_underscore_no_link] = STATE(128), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(1656), [sym_entity_reference] = ACTIONS(1659), [sym_numeric_character_reference] = ACTIONS(1659), - [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1601), [anon_sym_LT] = ACTIONS(1662), [anon_sym_GT] = ACTIONS(1665), [anon_sym_BANG] = ACTIONS(1668), @@ -20967,43 +20996,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(1707), [sym__strikethrough_open] = ACTIONS(1709), [sym__latex_span_start] = ACTIONS(1712), + [sym__unclosed_span] = ACTIONS(1659), }, [95] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(124), + [sym__inline_base] = STATE(101), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(124), - [aux_sym__inline_no_star_no_link] = STATE(124), - [sym__strikethrough_no_link] = STATE(124), - [sym__emphasis_star_no_link] = STATE(622), - [sym__strong_emphasis_star_no_link] = STATE(124), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(124), + [sym__inline_element_no_tilde_no_link] = STATE(101), + [aux_sym__inline_no_tilde_no_link] = STATE(101), + [sym__strikethrough_no_link] = STATE(101), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(101), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(101), [aux_sym__inline_base_repeat1] = STATE(158), [sym__backslash_escape] = ACTIONS(1715), [sym_entity_reference] = ACTIONS(1718), [sym_numeric_character_reference] = ACTIONS(1718), - [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1601), [anon_sym_LT] = ACTIONS(1721), [anon_sym_GT] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(1727), @@ -21051,39 +21081,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(1766), [sym__strikethrough_open] = ACTIONS(1768), [sym__latex_span_start] = ACTIONS(1771), + [sym__unclosed_span] = ACTIONS(1718), }, [96] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(112), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(112), - [aux_sym__inline_no_tilde_no_link] = STATE(112), - [sym__strikethrough_no_link] = STATE(112), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(112), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(112), - [aux_sym__inline_base_repeat1] = STATE(165), + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(115), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(115), + [aux_sym__inline_no_tilde_no_link] = STATE(115), + [sym__strikethrough_no_link] = STATE(115), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(115), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(115), + [aux_sym__inline_base_repeat1] = STATE(158), [sym__backslash_escape] = ACTIONS(1774), [sym_entity_reference] = ACTIONS(1777), [sym_numeric_character_reference] = ACTIONS(1777), @@ -21131,43 +21162,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1816), [sym__emphasis_open_star] = ACTIONS(1819), [sym__emphasis_open_underscore] = ACTIONS(1822), - [sym__emphasis_close_star] = ACTIONS(1524), + [sym__emphasis_close_underscore] = ACTIONS(1585), [sym__last_token_punctuation] = ACTIONS(1825), [sym__strikethrough_open] = ACTIONS(1827), [sym__latex_span_start] = ACTIONS(1830), + [sym__unclosed_span] = ACTIONS(1777), }, [97] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(121), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(121), - [aux_sym__inline_no_star_no_link] = STATE(121), - [sym__strikethrough_no_link] = STATE(121), - [sym__emphasis_star_no_link] = STATE(621), - [sym__strong_emphasis_star_no_link] = STATE(121), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(121), - [aux_sym__inline_base_repeat1] = STATE(158), + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(122), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(122), + [aux_sym__inline_no_underscore_no_link] = STATE(122), + [sym__strikethrough_no_link] = STATE(122), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(122), + [sym__emphasis_underscore_no_link] = STATE(633), + [sym__strong_emphasis_underscore_no_link] = STATE(122), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(1833), [sym_entity_reference] = ACTIONS(1836), [sym_numeric_character_reference] = ACTIONS(1836), @@ -21215,43 +21247,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1875), [sym__emphasis_open_star] = ACTIONS(1878), [sym__emphasis_open_underscore] = ACTIONS(1881), - [sym__last_token_punctuation] = ACTIONS(1884), - [sym__strikethrough_open] = ACTIONS(1886), - [sym__strikethrough_close] = ACTIONS(1889), + [sym__emphasis_close_star] = ACTIONS(1884), + [sym__last_token_punctuation] = ACTIONS(1886), + [sym__strikethrough_open] = ACTIONS(1888), [sym__latex_span_start] = ACTIONS(1891), + [sym__unclosed_span] = ACTIONS(1836), }, [98] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(120), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(120), - [aux_sym__inline_no_underscore_no_link] = STATE(120), - [sym__strikethrough_no_link] = STATE(120), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(120), - [sym__emphasis_underscore_no_link] = STATE(613), - [sym__strong_emphasis_underscore_no_link] = STATE(120), - [aux_sym__inline_base_repeat1] = STATE(162), + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(107), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(107), + [aux_sym__inline_no_star_no_link] = STATE(107), + [sym__strikethrough_no_link] = STATE(107), + [sym__emphasis_star_no_link] = STATE(613), + [sym__strong_emphasis_star_no_link] = STATE(107), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(107), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(1894), [sym_entity_reference] = ACTIONS(1897), [sym_numeric_character_reference] = ACTIONS(1897), @@ -21301,41 +21334,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1942), [sym__last_token_punctuation] = ACTIONS(1945), [sym__strikethrough_open] = ACTIONS(1947), - [sym__strikethrough_close] = ACTIONS(1889), + [sym__strikethrough_close] = ACTIONS(1529), [sym__latex_span_start] = ACTIONS(1950), + [sym__unclosed_span] = ACTIONS(1897), }, [99] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(129), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(129), - [aux_sym__inline_no_tilde_no_link] = STATE(129), - [sym__strikethrough_no_link] = STATE(129), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(129), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(129), - [aux_sym__inline_base_repeat1] = STATE(165), + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(124), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(124), + [aux_sym__inline_no_tilde_no_link] = STATE(124), + [sym__strikethrough_no_link] = STATE(124), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(124), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(124), + [aux_sym__inline_base_repeat1] = STATE(158), [sym__backslash_escape] = ACTIONS(1953), [sym_entity_reference] = ACTIONS(1956), [sym_numeric_character_reference] = ACTIONS(1956), @@ -21383,381 +21417,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1995), [sym__emphasis_open_star] = ACTIONS(1998), [sym__emphasis_open_underscore] = ACTIONS(2001), - [sym__emphasis_close_underscore] = ACTIONS(1646), + [sym__emphasis_close_star] = ACTIONS(1884), [sym__last_token_punctuation] = ACTIONS(2004), [sym__strikethrough_open] = ACTIONS(2006), [sym__latex_span_start] = ACTIONS(2009), + [sym__unclosed_span] = ACTIONS(1956), }, [100] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(2012), [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [sym__newline_token] = ACTIONS(1120), [sym_uri_autolink] = ACTIONS(2012), [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2018), + [anon_sym_LT_QMARK] = ACTIONS(2020), + [aux_sym__declaration_token1] = ACTIONS(1126), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2022), + [sym__whitespace_ge_2] = ACTIONS(1130), + [aux_sym__whitespace_token1] = ACTIONS(1132), [sym__word_no_digit] = ACTIONS(2012), [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), + [sym__code_span_start] = ACTIONS(1134), [sym__emphasis_open_star] = ACTIONS(2024), [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2028), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__strikethrough_open] = ACTIONS(2028), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2012), }, [101] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2052), - [sym__latex_span_start] = ACTIONS(2054), - }, - [102] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2056), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), - }, - [103] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), + [sym__inline_base] = STATE(113), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), [aux_sym__inline_base_repeat1] = STATE(158), - [sym__backslash_escape] = ACTIONS(2058), - [sym_entity_reference] = ACTIONS(2061), - [sym_numeric_character_reference] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_COLON] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2067), - [anon_sym_QMARK] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_BSLASH] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2067), - [anon_sym_BQUOTE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [sym__newline_token] = ACTIONS(2079), - [sym_uri_autolink] = ACTIONS(2061), - [sym_email_autolink] = ACTIONS(2061), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2082), - [anon_sym_LT_QMARK] = ACTIONS(2085), - [aux_sym__declaration_token1] = ACTIONS(2088), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2091), - [sym__whitespace_ge_2] = ACTIONS(2094), - [aux_sym__whitespace_token1] = ACTIONS(2097), - [sym__word_no_digit] = ACTIONS(2061), - [sym__digits] = ACTIONS(2061), - [sym__code_span_start] = ACTIONS(2100), - [sym__emphasis_open_star] = ACTIONS(2103), - [sym__emphasis_open_underscore] = ACTIONS(2106), - [sym__emphasis_close_star] = ACTIONS(2109), - [sym__strikethrough_open] = ACTIONS(2111), - [sym__latex_span_start] = ACTIONS(2114), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2046), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), }, - [104] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), + [102] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(2048), + [sym_entity_reference] = ACTIONS(2051), + [sym_numeric_character_reference] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_EQ] = ACTIONS(2057), + [anon_sym_QMARK] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym__] = ACTIONS(2057), + [anon_sym_BQUOTE] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [sym__newline_token] = ACTIONS(2069), + [sym_uri_autolink] = ACTIONS(2051), + [sym_email_autolink] = ACTIONS(2051), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2072), + [anon_sym_LT_QMARK] = ACTIONS(2075), + [aux_sym__declaration_token1] = ACTIONS(2078), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2081), + [sym__whitespace_ge_2] = ACTIONS(2084), + [aux_sym__whitespace_token1] = ACTIONS(2087), + [sym__word_no_digit] = ACTIONS(2051), + [sym__digits] = ACTIONS(2051), + [sym__code_span_start] = ACTIONS(2090), + [sym__emphasis_open_star] = ACTIONS(2093), + [sym__emphasis_open_underscore] = ACTIONS(2096), + [sym__emphasis_close_star] = ACTIONS(2099), + [sym__strikethrough_open] = ACTIONS(2101), + [sym__latex_span_start] = ACTIONS(2104), + [sym__unclosed_span] = ACTIONS(2051), + }, + [103] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -21786,61 +21741,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2117), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2121), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [105] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(158), + [104] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -21869,62 +21825,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2135), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2139), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), + }, + [105] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2143), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), }, [106] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(131), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2141), - [sym_numeric_character_reference] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2143), + [sym_entity_reference] = ACTIONS(2012), + [sym_numeric_character_reference] = ACTIONS(2012), + [anon_sym_RBRACK] = ACTIONS(2145), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2016), [anon_sym_DQUOTE] = ACTIONS(1112), [anon_sym_POUND] = ACTIONS(1112), [anon_sym_DOLLAR] = ACTIONS(1112), @@ -21953,309 +21994,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(1112), [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2141), - [sym_email_autolink] = ACTIONS(2141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_QMARK] = ACTIONS(2149), + [sym_uri_autolink] = ACTIONS(2012), + [sym_email_autolink] = ACTIONS(2012), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2018), + [anon_sym_LT_QMARK] = ACTIONS(2020), [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2022), [sym__whitespace_ge_2] = ACTIONS(1130), [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2141), - [sym__digits] = ACTIONS(2141), - [sym__code_span_start] = ACTIONS(2153), - [sym__emphasis_open_star] = ACTIONS(2155), - [sym__emphasis_open_underscore] = ACTIONS(2157), - [sym__strikethrough_open] = ACTIONS(2159), - [sym__latex_span_start] = ACTIONS(2161), + [sym__word_no_digit] = ACTIONS(2012), + [sym__digits] = ACTIONS(2012), + [sym__code_span_start] = ACTIONS(1134), + [sym__emphasis_open_star] = ACTIONS(2024), + [sym__emphasis_open_underscore] = ACTIONS(2026), + [sym__strikethrough_open] = ACTIONS(2028), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2012), }, [107] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(2163), - [sym_entity_reference] = ACTIONS(2166), - [sym_numeric_character_reference] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(2172), - [anon_sym_QMARK] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_BSLASH] = ACTIONS(2181), - [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), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [sym__newline_token] = ACTIONS(2184), - [sym_uri_autolink] = ACTIONS(2166), - [sym_email_autolink] = ACTIONS(2166), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2187), - [anon_sym_LT_QMARK] = ACTIONS(2190), - [aux_sym__declaration_token1] = ACTIONS(2193), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2196), - [sym__whitespace_ge_2] = ACTIONS(2199), - [aux_sym__whitespace_token1] = ACTIONS(2202), - [sym__word_no_digit] = ACTIONS(2166), - [sym__digits] = ACTIONS(2166), - [sym__code_span_start] = ACTIONS(2205), - [sym__emphasis_open_star] = ACTIONS(2208), - [sym__emphasis_open_underscore] = ACTIONS(2211), - [sym__emphasis_close_underscore] = ACTIONS(2214), - [sym__strikethrough_open] = ACTIONS(2216), - [sym__latex_span_start] = ACTIONS(2219), - }, - [108] = { [sym_backslash_escape] = STATE(163), [sym_code_span] = STATE(163), [sym_latex_block] = STATE(163), [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), [sym_hard_line_break] = STATE(163), [sym__whitespace] = STATE(163), [sym__word] = STATE(163), [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), + [sym__inline_base] = STATE(102), [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(131), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), [aux_sym__inline_base_repeat1] = STATE(163), - [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2141), - [sym_numeric_character_reference] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1118), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym__] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1112), - [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2141), - [sym_email_autolink] = ACTIONS(2141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_QMARK] = ACTIONS(2149), - [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), - [sym__whitespace_ge_2] = ACTIONS(1130), - [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2141), - [sym__digits] = ACTIONS(2141), - [sym__code_span_start] = ACTIONS(2153), - [sym__emphasis_open_star] = ACTIONS(2155), - [sym__emphasis_open_underscore] = ACTIONS(2157), - [sym__strikethrough_open] = ACTIONS(2159), - [sym__latex_span_start] = ACTIONS(2161), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2147), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [109] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(131), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), - [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2141), - [sym_numeric_character_reference] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1118), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym__] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1112), - [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2141), - [sym_email_autolink] = ACTIONS(2141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_QMARK] = ACTIONS(2149), - [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), - [sym__whitespace_ge_2] = ACTIONS(1130), - [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2141), - [sym__digits] = ACTIONS(2141), - [sym__code_span_start] = ACTIONS(2153), - [sym__emphasis_open_star] = ACTIONS(2155), - [sym__emphasis_open_underscore] = ACTIONS(2157), - [sym__strikethrough_open] = ACTIONS(2159), - [sym__latex_span_start] = ACTIONS(2161), + [108] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2149), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), }, - [110] = { + [109] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), + [sym__inline_base] = STATE(113), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2151), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [110] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -22284,227 +22329,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2226), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2153), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, [111] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2228), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), - }, - [112] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2230), - [sym__latex_span_start] = ACTIONS(2054), - }, - [113] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(158), + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -22533,144 +22413,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2232), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), - }, - [114] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2234), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2155), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, - [115] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), + [112] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -22699,144 +22497,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2236), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2157), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [116] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), + [113] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(2159), + [sym_entity_reference] = ACTIONS(2162), + [sym_numeric_character_reference] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_GT] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(2168), + [anon_sym_QMARK] = ACTIONS(2168), + [anon_sym_AT] = ACTIONS(2168), + [anon_sym_BSLASH] = ACTIONS(2177), + [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), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2168), + [sym__newline_token] = ACTIONS(2180), + [sym_uri_autolink] = ACTIONS(2162), + [sym_email_autolink] = ACTIONS(2162), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2183), + [anon_sym_LT_QMARK] = ACTIONS(2186), + [aux_sym__declaration_token1] = ACTIONS(2189), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2192), + [sym__whitespace_ge_2] = ACTIONS(2195), + [aux_sym__whitespace_token1] = ACTIONS(2198), + [sym__word_no_digit] = ACTIONS(2162), + [sym__digits] = ACTIONS(2162), + [sym__code_span_start] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2204), + [sym__emphasis_open_underscore] = ACTIONS(2207), + [sym__strikethrough_open] = ACTIONS(2210), + [sym__strikethrough_close] = ACTIONS(2213), + [sym__latex_span_start] = ACTIONS(2215), + [sym__unclosed_span] = ACTIONS(2162), + }, + [114] = { + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(2012), [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(2218), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [sym__newline_token] = ACTIONS(1120), [sym_uri_autolink] = ACTIONS(2012), [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2018), + [anon_sym_LT_QMARK] = ACTIONS(2020), + [aux_sym__declaration_token1] = ACTIONS(1126), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2022), + [sym__whitespace_ge_2] = ACTIONS(1130), + [aux_sym__whitespace_token1] = ACTIONS(1132), [sym__word_no_digit] = ACTIONS(2012), [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), + [sym__code_span_start] = ACTIONS(1134), [sym__emphasis_open_star] = ACTIONS(2024), [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2238), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__strikethrough_open] = ACTIONS(2028), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2012), }, - [117] = { + [115] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), + [sym__inline_base] = STATE(113), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2220), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [116] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -22865,61 +22833,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2240), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2222), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), + }, + [117] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2224), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, [118] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2226), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [119] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -22948,61 +23085,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2242), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2228), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [119] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), + [120] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2230), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [121] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(135), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(135), + [aux_sym__inline_no_star_no_link] = STATE(135), + [sym__strikethrough_no_link] = STATE(135), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(135), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(135), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -23031,227 +23253,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2244), - [sym__latex_span_start] = ACTIONS(2054), - }, - [120] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2246), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), - }, - [121] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(158), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2248), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__last_token_punctuation] = ACTIONS(2232), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, [122] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(110), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(110), - [aux_sym__inline_no_star_no_link] = STATE(110), - [sym__strikethrough_no_link] = STATE(110), - [sym__emphasis_star_no_link] = STATE(639), - [sym__strong_emphasis_star_no_link] = STATE(110), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(110), - [aux_sym__inline_base_repeat1] = STATE(158), + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -23280,559 +23337,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__last_token_punctuation] = ACTIONS(2250), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2234), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, [123] = { [sym_backslash_escape] = STATE(163), [sym_code_span] = STATE(163), [sym_latex_block] = STATE(163), [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), [sym_hard_line_break] = STATE(163), [sym__whitespace] = STATE(163), [sym__word] = STATE(163), [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), + [sym__inline_base] = STATE(102), [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(131), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), [aux_sym__inline_base_repeat1] = STATE(163), - [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2141), - [sym_numeric_character_reference] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1118), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym__] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1112), - [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2141), - [sym_email_autolink] = ACTIONS(2141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_QMARK] = ACTIONS(2149), - [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), - [sym__whitespace_ge_2] = ACTIONS(1130), - [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2141), - [sym__digits] = ACTIONS(2141), - [sym__code_span_start] = ACTIONS(2153), - [sym__emphasis_open_star] = ACTIONS(2155), - [sym__emphasis_open_underscore] = ACTIONS(2157), - [sym__strikethrough_open] = ACTIONS(2159), - [sym__latex_span_start] = ACTIONS(2161), - }, - [124] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(158), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2254), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), - }, - [125] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(128), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(128), - [aux_sym__inline_no_underscore_no_link] = STATE(128), - [sym__strikethrough_no_link] = STATE(128), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(128), - [sym__emphasis_underscore_no_link] = STATE(619), - [sym__strong_emphasis_underscore_no_link] = STATE(128), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__last_token_punctuation] = ACTIONS(2256), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2236), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [126] = { + [124] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), + [sym__inline_base] = STATE(113), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), + [sym__inline_element_no_tilde_no_link] = STATE(113), + [aux_sym__inline_no_tilde_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(113), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(113), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(113), [aux_sym__inline_base_repeat1] = STATE(158), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2258), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), - }, - [127] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2260), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), - }, - [128] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(107), - [aux_sym__inline_no_underscore_no_link] = STATE(107), - [sym__strikethrough_no_link] = STATE(107), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(107), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_close_underscore] = ACTIONS(2262), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__strikethrough_close] = ACTIONS(2238), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), }, - [129] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), + [125] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -23861,61 +23589,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2264), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2240), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [130] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(103), - [aux_sym__inline_no_star_no_link] = STATE(103), - [sym__strikethrough_no_link] = STATE(103), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(103), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(158), + [126] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(117), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(117), + [aux_sym__inline_no_underscore_no_link] = STATE(117), + [sym__strikethrough_no_link] = STATE(117), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(117), + [sym__emphasis_underscore_no_link] = STATE(607), + [sym__strong_emphasis_underscore_no_link] = STATE(117), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -23944,227 +23673,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__emphasis_close_star] = ACTIONS(2266), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__last_token_punctuation] = ACTIONS(2242), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, - [131] = { + [127] = { [sym_backslash_escape] = STATE(163), [sym_code_span] = STATE(163), [sym_latex_block] = STATE(163), [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), [sym_hard_line_break] = STATE(163), [sym__whitespace] = STATE(163), [sym__word] = STATE(163), [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), + [sym__inline_base] = STATE(102), [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(131), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), [aux_sym__inline_base_repeat1] = STATE(163), - [sym__backslash_escape] = ACTIONS(2268), - [sym_entity_reference] = ACTIONS(2271), - [sym_numeric_character_reference] = ACTIONS(2271), - [anon_sym_RBRACK] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_COLON] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(2279), - [anon_sym_QMARK] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2279), - [anon_sym_BSLASH] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym__] = ACTIONS(2279), - [anon_sym_BQUOTE] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [sym__newline_token] = ACTIONS(2291), - [sym_uri_autolink] = ACTIONS(2271), - [sym_email_autolink] = ACTIONS(2271), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2294), - [anon_sym_LT_QMARK] = ACTIONS(2297), - [aux_sym__declaration_token1] = ACTIONS(2300), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2303), - [sym__whitespace_ge_2] = ACTIONS(2306), - [aux_sym__whitespace_token1] = ACTIONS(2309), - [sym__word_no_digit] = ACTIONS(2271), - [sym__digits] = ACTIONS(2271), - [sym__code_span_start] = ACTIONS(2312), - [sym__emphasis_open_star] = ACTIONS(2315), - [sym__emphasis_open_underscore] = ACTIONS(2318), - [sym__strikethrough_open] = ACTIONS(2321), - [sym__latex_span_start] = ACTIONS(2324), - }, - [132] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), - [sym__backslash_escape] = ACTIONS(2327), - [sym_entity_reference] = ACTIONS(2330), - [sym_numeric_character_reference] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_COMMA] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_COLON] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_EQ] = ACTIONS(2336), - [anon_sym_QMARK] = ACTIONS(2336), - [anon_sym_AT] = ACTIONS(2336), - [anon_sym_BSLASH] = ACTIONS(2345), - [anon_sym_CARET] = ACTIONS(2336), - [anon_sym__] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2336), - [anon_sym_RPAREN] = ACTIONS(2336), - [sym__newline_token] = ACTIONS(2348), - [sym_uri_autolink] = ACTIONS(2330), - [sym_email_autolink] = ACTIONS(2330), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2351), - [anon_sym_LT_QMARK] = ACTIONS(2354), - [aux_sym__declaration_token1] = ACTIONS(2357), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2360), - [sym__whitespace_ge_2] = ACTIONS(2363), - [aux_sym__whitespace_token1] = ACTIONS(2366), - [sym__word_no_digit] = ACTIONS(2330), - [sym__digits] = ACTIONS(2330), - [sym__code_span_start] = ACTIONS(2369), - [sym__emphasis_open_star] = ACTIONS(2372), - [sym__emphasis_open_underscore] = ACTIONS(2375), - [sym__strikethrough_open] = ACTIONS(2378), - [sym__strikethrough_close] = ACTIONS(2381), - [sym__latex_span_start] = ACTIONS(2383), - }, - [133] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(119), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(119), - [aux_sym__inline_no_tilde_no_link] = STATE(119), - [sym__strikethrough_no_link] = STATE(119), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(119), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(119), - [aux_sym__inline_base_repeat1] = STATE(165), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -24193,145 +23757,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__last_token_punctuation] = ACTIONS(2386), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2244), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [134] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(132), - [aux_sym__inline_no_tilde_no_link] = STATE(132), - [sym__strikethrough_no_link] = STATE(132), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(132), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(165), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__strikethrough_close] = ACTIONS(2388), - [sym__latex_span_start] = ACTIONS(2054), + [128] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2246), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, - [135] = { - [sym_backslash_escape] = STATE(163), - [sym_code_span] = STATE(163), - [sym_latex_block] = STATE(163), - [sym_image] = STATE(163), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(163), - [sym__whitespace] = STATE(163), - [sym__word] = STATE(163), - [sym__soft_line_break] = STATE(163), - [sym__inline_base] = STATE(614), - [sym__text_base] = STATE(163), - [sym__inline_element_no_link] = STATE(614), - [aux_sym__inline_no_link] = STATE(131), - [sym__strikethrough_no_link] = STATE(614), - [sym__emphasis_star_no_link] = STATE(615), - [sym__strong_emphasis_star_no_link] = STATE(614), - [sym__emphasis_underscore_no_link] = STATE(615), - [sym__strong_emphasis_underscore_no_link] = STATE(614), - [aux_sym__inline_base_repeat1] = STATE(163), + [129] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), + [sym__backslash_escape] = ACTIONS(2248), + [sym_entity_reference] = ACTIONS(2251), + [sym_numeric_character_reference] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_COLON] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_EQ] = ACTIONS(2257), + [anon_sym_QMARK] = ACTIONS(2257), + [anon_sym_AT] = ACTIONS(2257), + [anon_sym_BSLASH] = ACTIONS(2266), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym__] = ACTIONS(2257), + [anon_sym_BQUOTE] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2257), + [sym__newline_token] = ACTIONS(2269), + [sym_uri_autolink] = ACTIONS(2251), + [sym_email_autolink] = ACTIONS(2251), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2272), + [anon_sym_LT_QMARK] = ACTIONS(2275), + [aux_sym__declaration_token1] = ACTIONS(2278), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2281), + [sym__whitespace_ge_2] = ACTIONS(2284), + [aux_sym__whitespace_token1] = ACTIONS(2287), + [sym__word_no_digit] = ACTIONS(2251), + [sym__digits] = ACTIONS(2251), + [sym__code_span_start] = ACTIONS(2290), + [sym__emphasis_open_star] = ACTIONS(2293), + [sym__emphasis_open_underscore] = ACTIONS(2296), + [sym__emphasis_close_underscore] = ACTIONS(2299), + [sym__strikethrough_open] = ACTIONS(2301), + [sym__latex_span_start] = ACTIONS(2304), + [sym__unclosed_span] = ACTIONS(2251), + }, + [130] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(129), + [aux_sym__inline_no_underscore_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(129), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(129), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(164), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__emphasis_close_underscore] = ACTIONS(2307), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), + }, + [131] = { + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2141), - [sym_numeric_character_reference] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2390), + [sym_entity_reference] = ACTIONS(2012), + [sym_numeric_character_reference] = ACTIONS(2012), + [anon_sym_RBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2016), [anon_sym_DQUOTE] = ACTIONS(1112), [anon_sym_POUND] = ACTIONS(1112), [anon_sym_DOLLAR] = ACTIONS(1112), @@ -24360,224 +24094,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(1112), [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2141), - [sym_email_autolink] = ACTIONS(2141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_QMARK] = ACTIONS(2149), + [sym_uri_autolink] = ACTIONS(2012), + [sym_email_autolink] = ACTIONS(2012), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2018), + [anon_sym_LT_QMARK] = ACTIONS(2020), [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2022), [sym__whitespace_ge_2] = ACTIONS(1130), [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2141), - [sym__digits] = ACTIONS(2141), - [sym__code_span_start] = ACTIONS(2153), - [sym__emphasis_open_star] = ACTIONS(2155), - [sym__emphasis_open_underscore] = ACTIONS(2157), - [sym__strikethrough_open] = ACTIONS(2159), - [sym__latex_span_start] = ACTIONS(2161), - }, - [136] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(100), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(100), - [aux_sym__inline_no_underscore_no_link] = STATE(100), - [sym__strikethrough_no_link] = STATE(100), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(100), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(100), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), [sym__word_no_digit] = ACTIONS(2012), [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), + [sym__code_span_start] = ACTIONS(1134), [sym__emphasis_open_star] = ACTIONS(2024), [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__strikethrough_open] = ACTIONS(2028), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2012), }, - [137] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(116), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(116), - [aux_sym__inline_no_underscore_no_link] = STATE(116), - [sym__strikethrough_no_link] = STATE(116), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(116), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(116), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), + [132] = { + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(1102), [sym_entity_reference] = ACTIONS(2012), [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_COLON] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [sym__newline_token] = ACTIONS(1120), [sym_uri_autolink] = ACTIONS(2012), [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2018), + [anon_sym_LT_QMARK] = ACTIONS(2020), + [aux_sym__declaration_token1] = ACTIONS(1126), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2022), + [sym__whitespace_ge_2] = ACTIONS(1130), + [aux_sym__whitespace_token1] = ACTIONS(1132), [sym__word_no_digit] = ACTIONS(2012), [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), + [sym__code_span_start] = ACTIONS(1134), [sym__emphasis_open_star] = ACTIONS(2024), [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__strikethrough_open] = ACTIONS(2028), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2012), }, - [138] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(104), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(104), - [aux_sym__inline_no_tilde_no_link] = STATE(104), - [sym__strikethrough_no_link] = STATE(104), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(104), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(104), - [aux_sym__inline_base_repeat1] = STATE(165), + [133] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(118), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(118), + [aux_sym__inline_no_tilde_no_link] = STATE(118), + [sym__strikethrough_no_link] = STATE(118), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(118), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(118), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__last_token_punctuation] = ACTIONS(2313), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [134] = { + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_latex_block] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__inline_base] = STATE(621), + [sym__text_base] = STATE(160), + [sym__inline_element_no_link] = STATE(621), + [aux_sym__inline_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(621), + [sym__emphasis_star_no_link] = STATE(625), + [sym__strong_emphasis_star_no_link] = STATE(621), + [sym__emphasis_underscore_no_link] = STATE(625), + [sym__strong_emphasis_underscore_no_link] = STATE(621), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(2315), + [sym_entity_reference] = ACTIONS(2318), + [sym_numeric_character_reference] = ACTIONS(2318), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_GT] = ACTIONS(2326), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_SLASH] = ACTIONS(2326), + [anon_sym_COLON] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_EQ] = ACTIONS(2326), + [anon_sym_QMARK] = ACTIONS(2326), + [anon_sym_AT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym__] = ACTIONS(2326), + [anon_sym_BQUOTE] = ACTIONS(2326), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_TILDE] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [sym__newline_token] = ACTIONS(2338), + [sym_uri_autolink] = ACTIONS(2318), + [sym_email_autolink] = ACTIONS(2318), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2341), + [anon_sym_LT_QMARK] = ACTIONS(2344), + [aux_sym__declaration_token1] = ACTIONS(2347), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2350), + [sym__whitespace_ge_2] = ACTIONS(2353), + [aux_sym__whitespace_token1] = ACTIONS(2356), + [sym__word_no_digit] = ACTIONS(2318), + [sym__digits] = ACTIONS(2318), + [sym__code_span_start] = ACTIONS(2359), + [sym__emphasis_open_star] = ACTIONS(2362), + [sym__emphasis_open_underscore] = ACTIONS(2365), + [sym__strikethrough_open] = ACTIONS(2368), + [sym__latex_span_start] = ACTIONS(2371), + [sym__unclosed_span] = ACTIONS(2318), + }, + [135] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(102), + [aux_sym__inline_no_star_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -24606,142 +24429,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__latex_span_start] = ACTIONS(2054), - }, - [139] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(114), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(114), - [aux_sym__inline_no_underscore_no_link] = STATE(114), - [sym__strikethrough_no_link] = STATE(114), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(114), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(114), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2374), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, - [140] = { + [136] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(130), + [sym__inline_base] = STATE(105), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(130), - [aux_sym__inline_no_star_no_link] = STATE(130), - [sym__strikethrough_no_link] = STATE(130), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(130), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(130), + [sym__inline_element_no_tilde_no_link] = STATE(105), + [aux_sym__inline_no_tilde_no_link] = STATE(105), + [sym__strikethrough_no_link] = STATE(105), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(105), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(105), [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [137] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(110), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(110), + [aux_sym__inline_no_underscore_no_link] = STATE(110), + [sym__strikethrough_no_link] = STATE(110), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(110), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(110), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -24770,60 +24596,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, - [141] = { + [138] = { [sym_backslash_escape] = STATE(158), [sym_code_span] = STATE(158), [sym_latex_block] = STATE(158), [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(158), [sym__whitespace] = STATE(158), [sym__word] = STATE(158), [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(113), + [sym__inline_base] = STATE(120), [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(113), - [aux_sym__inline_no_star_no_link] = STATE(113), - [sym__strikethrough_no_link] = STATE(113), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(113), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(113), + [sym__inline_element_no_tilde_no_link] = STATE(120), + [aux_sym__inline_no_tilde_no_link] = STATE(120), + [sym__strikethrough_no_link] = STATE(120), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(120), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(120), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [139] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(108), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(108), + [aux_sym__inline_no_tilde_no_link] = STATE(108), + [sym__strikethrough_no_link] = STATE(108), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(108), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(108), [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), + }, + [140] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(130), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(130), + [aux_sym__inline_no_underscore_no_link] = STATE(130), + [sym__strikethrough_no_link] = STATE(130), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(130), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(130), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -24852,60 +24845,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, - [142] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(105), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(105), - [aux_sym__inline_no_star_no_link] = STATE(105), - [sym__strikethrough_no_link] = STATE(105), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(105), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(105), - [aux_sym__inline_base_repeat1] = STATE(158), + [141] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -24934,60 +24928,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), }, - [143] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(115), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(115), - [aux_sym__inline_no_tilde_no_link] = STATE(115), - [sym__strikethrough_no_link] = STATE(115), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(115), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(115), - [aux_sym__inline_base_repeat1] = STATE(165), + [142] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -25016,60 +25011,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), + }, + [143] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_latex_block] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(109), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(109), + [aux_sym__inline_no_tilde_no_link] = STATE(109), + [sym__strikethrough_no_link] = STATE(109), + [sym__emphasis_star_no_link] = STATE(635), + [sym__strong_emphasis_star_no_link] = STATE(109), + [sym__emphasis_underscore_no_link] = STATE(635), + [sym__strong_emphasis_underscore_no_link] = STATE(109), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2030), + [sym_numeric_character_reference] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2030), + [sym_email_autolink] = ACTIONS(2030), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2030), + [sym__digits] = ACTIONS(2030), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2042), + [sym__strikethrough_open] = ACTIONS(2044), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2030), }, [144] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(118), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(118), - [aux_sym__inline_no_tilde_no_link] = STATE(118), - [sym__strikethrough_no_link] = STATE(118), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(118), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(118), - [aux_sym__inline_base_repeat1] = STATE(165), + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(125), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(125), + [aux_sym__inline_no_star_no_link] = STATE(125), + [sym__strikethrough_no_link] = STATE(125), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(125), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(125), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -25098,60 +25177,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, [145] = { - [sym_backslash_escape] = STATE(165), - [sym_code_span] = STATE(165), - [sym_latex_block] = STATE(165), - [sym_image] = STATE(165), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(165), - [sym__whitespace] = STATE(165), - [sym__word] = STATE(165), - [sym__soft_line_break] = STATE(165), - [sym__inline_base] = STATE(101), - [sym__text_base] = STATE(165), - [sym__inline_element_no_tilde_no_link] = STATE(101), - [aux_sym__inline_no_tilde_no_link] = STATE(101), - [sym__strikethrough_no_link] = STATE(101), - [sym__emphasis_star_no_link] = STATE(608), - [sym__strong_emphasis_star_no_link] = STATE(101), - [sym__emphasis_underscore_no_link] = STATE(608), - [sym__strong_emphasis_underscore_no_link] = STATE(101), - [aux_sym__inline_base_repeat1] = STATE(165), + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(103), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(103), + [aux_sym__inline_no_star_no_link] = STATE(103), + [sym__strikethrough_no_link] = STATE(103), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(103), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(103), + [aux_sym__inline_base_repeat1] = STATE(163), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -25180,142 +25260,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2034), - [sym_email_autolink] = ACTIONS(2034), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2034), - [sym__digits] = ACTIONS(2034), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2046), - [sym__emphasis_open_underscore] = ACTIONS(2048), - [sym__strikethrough_open] = ACTIONS(2050), - [sym__latex_span_start] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, [146] = { - [sym_backslash_escape] = STATE(162), - [sym_code_span] = STATE(162), - [sym_latex_block] = STATE(162), - [sym_image] = STATE(162), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(162), - [sym__whitespace] = STATE(162), - [sym__word] = STATE(162), - [sym__soft_line_break] = STATE(162), - [sym__inline_base] = STATE(102), - [sym__text_base] = STATE(162), - [sym__inline_element_no_underscore_no_link] = STATE(102), - [aux_sym__inline_no_underscore_no_link] = STATE(102), - [sym__strikethrough_no_link] = STATE(102), - [sym__emphasis_star_no_link] = STATE(649), - [sym__strong_emphasis_star_no_link] = STATE(102), - [sym__emphasis_underscore_no_link] = STATE(649), - [sym__strong_emphasis_underscore_no_link] = STATE(102), - [aux_sym__inline_base_repeat1] = STATE(162), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2026), - [sym__strikethrough_open] = ACTIONS(2030), - [sym__latex_span_start] = ACTIONS(2032), - }, - [147] = { - [sym_backslash_escape] = STATE(158), - [sym_code_span] = STATE(158), - [sym_latex_block] = STATE(158), - [sym_image] = STATE(158), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(158), - [sym__whitespace] = STATE(158), - [sym__word] = STATE(158), - [sym__soft_line_break] = STATE(158), - [sym__inline_base] = STATE(117), - [sym__text_base] = STATE(158), - [sym__inline_element_no_star_no_link] = STATE(117), - [aux_sym__inline_no_star_no_link] = STATE(117), - [sym__strikethrough_no_link] = STATE(117), - [sym__emphasis_star_no_link] = STATE(624), - [sym__strong_emphasis_star_no_link] = STATE(117), - [sym__emphasis_underscore_no_link] = STATE(624), - [sym__strong_emphasis_underscore_no_link] = STATE(117), - [aux_sym__inline_base_repeat1] = STATE(158), + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_latex_block] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__inline_base] = STATE(104), + [sym__text_base] = STATE(164), + [sym__inline_element_no_underscore_no_link] = STATE(104), + [aux_sym__inline_no_underscore_no_link] = STATE(104), + [sym__strikethrough_no_link] = STATE(104), + [sym__emphasis_star_no_link] = STATE(642), + [sym__strong_emphasis_star_no_link] = STATE(104), + [sym__emphasis_underscore_no_link] = STATE(642), + [sym__strong_emphasis_underscore_no_link] = STATE(104), + [aux_sym__inline_base_repeat1] = STATE(164), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2119), - [sym_numeric_character_reference] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2125), + [sym_numeric_character_reference] = ACTIONS(2125), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2127), [anon_sym_DQUOTE] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(694), [anon_sym_DOLLAR] = ACTIONS(694), @@ -25344,359 +25343,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2119), - [sym_email_autolink] = ACTIONS(2119), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), + [sym_uri_autolink] = ACTIONS(2125), + [sym_email_autolink] = ACTIONS(2125), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2119), - [sym__digits] = ACTIONS(2119), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2131), - [sym__emphasis_open_underscore] = ACTIONS(2133), - [sym__strikethrough_open] = ACTIONS(2137), - [sym__latex_span_start] = ACTIONS(2139), + [sym__word_no_digit] = ACTIONS(2125), + [sym__digits] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2135), + [sym__emphasis_open_underscore] = ACTIONS(2137), + [sym__strikethrough_open] = ACTIONS(2141), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2125), + }, + [147] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_latex_block] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(127), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(127), + [aux_sym__inline_no_star_no_link] = STATE(127), + [sym__strikethrough_no_link] = STATE(127), + [sym__emphasis_star_no_link] = STATE(643), + [sym__strong_emphasis_star_no_link] = STATE(127), + [sym__emphasis_underscore_no_link] = STATE(643), + [sym__strong_emphasis_underscore_no_link] = STATE(127), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(2107), + [sym_email_autolink] = ACTIONS(2107), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(2107), + [sym__digits] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__strikethrough_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2107), }, [148] = { [sym_backslash_escape] = STATE(148), [sym_code_span] = STATE(148), [sym_latex_block] = STATE(148), [sym_image] = STATE(148), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), [sym_hard_line_break] = STATE(148), [sym__whitespace] = STATE(148), [sym__word] = STATE(148), [sym__soft_line_break] = STATE(148), [sym__text_base] = STATE(148), [aux_sym__inline_base_repeat1] = STATE(148), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym__backslash_escape] = ACTIONS(2394), - [sym_entity_reference] = ACTIONS(2397), - [sym_numeric_character_reference] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_RBRACK] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2403), - [anon_sym_POUND] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_PERCENT] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_DOT] = ACTIONS(2403), - [anon_sym_SLASH] = ACTIONS(2403), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(2403), - [anon_sym_QMARK] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_BSLASH] = ACTIONS(2412), - [anon_sym_CARET] = ACTIONS(2403), - [anon_sym__] = ACTIONS(2403), - [anon_sym_BQUOTE] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_PIPE] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(2403), - [sym__newline_token] = ACTIONS(2415), - [sym_uri_autolink] = ACTIONS(2397), - [sym_email_autolink] = ACTIONS(2397), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2418), - [anon_sym_LT_QMARK] = ACTIONS(2421), - [aux_sym__declaration_token1] = ACTIONS(2424), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2427), - [sym__whitespace_ge_2] = ACTIONS(2430), - [aux_sym__whitespace_token1] = ACTIONS(2433), - [sym__word_no_digit] = ACTIONS(2397), - [sym__digits] = ACTIONS(2397), - [sym__code_span_start] = ACTIONS(2436), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2439), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym__backslash_escape] = ACTIONS(2378), + [sym_entity_reference] = ACTIONS(2381), + [sym_numeric_character_reference] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_PERCENT] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_PLUS] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_DOT] = ACTIONS(2387), + [anon_sym_SLASH] = ACTIONS(2387), + [anon_sym_COLON] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_EQ] = ACTIONS(2387), + [anon_sym_QMARK] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_BSLASH] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2387), + [anon_sym__] = ACTIONS(2387), + [anon_sym_BQUOTE] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [sym__newline_token] = ACTIONS(2399), + [sym_uri_autolink] = ACTIONS(2381), + [sym_email_autolink] = ACTIONS(2381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2402), + [anon_sym_LT_QMARK] = ACTIONS(2405), + [aux_sym__declaration_token1] = ACTIONS(2408), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2411), + [sym__whitespace_ge_2] = ACTIONS(2414), + [aux_sym__whitespace_token1] = ACTIONS(2417), + [sym__word_no_digit] = ACTIONS(2381), + [sym__digits] = ACTIONS(2381), + [sym__code_span_start] = ACTIONS(2420), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2423), + [sym__unclosed_span] = ACTIONS(2381), }, [149] = { - [sym_backslash_escape] = STATE(149), - [sym_code_span] = STATE(149), - [sym_latex_block] = STATE(149), - [sym_image] = STATE(149), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(149), - [sym__whitespace] = STATE(149), - [sym__word] = STATE(149), - [sym__soft_line_break] = STATE(149), - [sym__text_base] = STATE(149), - [aux_sym__inline_base_repeat1] = STATE(149), - [sym__backslash_escape] = ACTIONS(2442), - [sym_entity_reference] = ACTIONS(2445), - [sym_numeric_character_reference] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_RBRACK] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_BSLASH] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym__] = ACTIONS(2451), - [anon_sym_BQUOTE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [sym__newline_token] = ACTIONS(2463), - [sym_uri_autolink] = ACTIONS(2445), - [sym_email_autolink] = ACTIONS(2445), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2466), - [anon_sym_LT_QMARK] = ACTIONS(2469), - [aux_sym__declaration_token1] = ACTIONS(2472), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2475), - [sym__whitespace_ge_2] = ACTIONS(2478), - [aux_sym__whitespace_token1] = ACTIONS(2481), - [sym__word_no_digit] = ACTIONS(2445), - [sym__digits] = ACTIONS(2445), - [sym__code_span_start] = ACTIONS(2484), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__strikethrough_close] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2487), - }, - [150] = { - [sym_backslash_escape] = STATE(150), - [sym_code_span] = STATE(150), - [sym_latex_block] = STATE(150), - [sym_image] = STATE(150), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(150), - [sym__whitespace] = STATE(150), - [sym__word] = STATE(150), - [sym__soft_line_break] = STATE(150), - [sym__text_base] = STATE(150), - [aux_sym__inline_base_repeat1] = STATE(150), - [sym__backslash_escape] = ACTIONS(2490), - [sym_entity_reference] = ACTIONS(2493), - [sym_numeric_character_reference] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_RBRACK] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_PERCENT] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_COMMA] = ACTIONS(2499), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_DOT] = ACTIONS(2499), - [anon_sym_SLASH] = ACTIONS(2499), - [anon_sym_COLON] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_EQ] = ACTIONS(2499), - [anon_sym_QMARK] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_BSLASH] = ACTIONS(2508), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym__] = ACTIONS(2499), - [anon_sym_BQUOTE] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [sym__newline_token] = ACTIONS(2511), - [sym_uri_autolink] = ACTIONS(2493), - [sym_email_autolink] = ACTIONS(2493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2514), - [anon_sym_LT_QMARK] = ACTIONS(2517), - [aux_sym__declaration_token1] = ACTIONS(2520), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2523), - [sym__whitespace_ge_2] = ACTIONS(2526), - [aux_sym__whitespace_token1] = ACTIONS(2529), - [sym__word_no_digit] = ACTIONS(2493), - [sym__digits] = ACTIONS(2493), - [sym__code_span_start] = ACTIONS(2532), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__emphasis_close_star] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2535), - }, - [151] = { - [sym_backslash_escape] = STATE(148), - [sym_code_span] = STATE(148), - [sym_latex_block] = STATE(148), - [sym_image] = STATE(148), - [sym__image_inline_link] = STATE(289), - [sym__image_shortcut_link] = STATE(289), - [sym__image_full_reference_link] = STATE(289), - [sym__image_collapsed_reference_link] = STATE(289), - [sym__image_description] = STATE(1129), - [sym__image_description_non_empty] = STATE(290), - [sym__html_tag] = STATE(291), - [sym__open_tag] = STATE(292), - [sym__closing_tag] = STATE(292), - [sym__html_comment] = STATE(292), - [sym__processing_instruction] = STATE(292), - [sym__declaration] = STATE(292), - [sym__cdata_section] = STATE(292), - [sym_hard_line_break] = STATE(148), - [sym__whitespace] = STATE(148), - [sym__word] = STATE(148), - [sym__soft_line_break] = STATE(148), - [sym__text_base] = STATE(148), - [aux_sym__inline_base_repeat1] = STATE(148), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(2540), - [sym_numeric_character_reference] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_GT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_POUND] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(13), - [anon_sym_COLON] = ACTIONS(13), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(13), - [anon_sym_QMARK] = ACTIONS(13), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_BSLASH] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(13), - [anon_sym__] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_PIPE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(13), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(13), - [sym__newline_token] = ACTIONS(21), - [sym_uri_autolink] = ACTIONS(2540), - [sym_email_autolink] = ACTIONS(2540), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), - [anon_sym_LT_QMARK] = ACTIONS(25), - [aux_sym__declaration_token1] = ACTIONS(27), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), - [sym__whitespace_ge_2] = ACTIONS(31), - [aux_sym__whitespace_token1] = ACTIONS(33), - [sym__word_no_digit] = ACTIONS(2540), - [sym__digits] = ACTIONS(2540), - [sym__code_span_start] = ACTIONS(35), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(45), + [sym_backslash_escape] = STATE(151), + [sym_code_span] = STATE(151), + [sym_latex_block] = STATE(151), + [sym_image] = STATE(151), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(151), + [sym__whitespace] = STATE(151), + [sym__word] = STATE(151), + [sym__soft_line_break] = STATE(151), + [sym__text_base] = STATE(151), + [aux_sym__inline_base_repeat1] = STATE(151), + [sym__backslash_escape] = ACTIONS(640), + [sym_entity_reference] = ACTIONS(2426), + [sym_numeric_character_reference] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_RBRACK] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(656), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym__] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [sym__newline_token] = ACTIONS(658), + [sym_uri_autolink] = ACTIONS(2426), + [sym_email_autolink] = ACTIONS(2426), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), + [anon_sym_LT_QMARK] = ACTIONS(662), + [aux_sym__declaration_token1] = ACTIONS(664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), + [sym__whitespace_ge_2] = ACTIONS(668), + [aux_sym__whitespace_token1] = ACTIONS(670), + [sym__word_no_digit] = ACTIONS(2426), + [sym__digits] = ACTIONS(2426), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__emphasis_close_star] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2426), }, - [152] = { + [150] = { [sym_backslash_escape] = STATE(150), [sym_code_span] = STATE(150), [sym_latex_block] = STATE(150), [sym_image] = STATE(150), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(353), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(150), [sym__whitespace] = STATE(150), [sym__word] = STATE(150), [sym__soft_line_break] = STATE(150), [sym__text_base] = STATE(150), [aux_sym__inline_base_repeat1] = STATE(150), + [sym__backslash_escape] = ACTIONS(2430), + [sym_entity_reference] = ACTIONS(2433), + [sym_numeric_character_reference] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_GT] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_QMARK] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_BSLASH] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym__] = ACTIONS(2439), + [anon_sym_BQUOTE] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [sym__newline_token] = ACTIONS(2451), + [sym_uri_autolink] = ACTIONS(2433), + [sym_email_autolink] = ACTIONS(2433), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2454), + [anon_sym_LT_QMARK] = ACTIONS(2457), + [aux_sym__declaration_token1] = ACTIONS(2460), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2463), + [sym__whitespace_ge_2] = ACTIONS(2466), + [aux_sym__whitespace_token1] = ACTIONS(2469), + [sym__word_no_digit] = ACTIONS(2433), + [sym__digits] = ACTIONS(2433), + [sym__code_span_start] = ACTIONS(2472), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__strikethrough_close] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2475), + [sym__unclosed_span] = ACTIONS(2433), + }, + [151] = { + [sym_backslash_escape] = STATE(151), + [sym_code_span] = STATE(151), + [sym_latex_block] = STATE(151), + [sym_image] = STATE(151), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(347), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(151), + [sym__whitespace] = STATE(151), + [sym__word] = STATE(151), + [sym__soft_line_break] = STATE(151), + [sym__text_base] = STATE(151), + [aux_sym__inline_base_repeat1] = STATE(151), + [sym__backslash_escape] = ACTIONS(2478), + [sym_entity_reference] = ACTIONS(2481), + [sym_numeric_character_reference] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_DOT] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_COLON] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym__] = ACTIONS(2487), + [anon_sym_BQUOTE] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2487), + [sym__newline_token] = ACTIONS(2499), + [sym_uri_autolink] = ACTIONS(2481), + [sym_email_autolink] = ACTIONS(2481), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2502), + [anon_sym_LT_QMARK] = ACTIONS(2505), + [aux_sym__declaration_token1] = ACTIONS(2508), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2511), + [sym__whitespace_ge_2] = ACTIONS(2514), + [aux_sym__whitespace_token1] = ACTIONS(2517), + [sym__word_no_digit] = ACTIONS(2481), + [sym__digits] = ACTIONS(2481), + [sym__code_span_start] = ACTIONS(2520), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__emphasis_close_star] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2523), + [sym__unclosed_span] = ACTIONS(2481), + }, + [152] = { + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym_latex_block] = STATE(152), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__text_base] = STATE(152), + [aux_sym__inline_base_repeat1] = STATE(152), + [sym__backslash_escape] = ACTIONS(2526), + [sym_entity_reference] = ACTIONS(2529), + [sym_numeric_character_reference] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2535), + [anon_sym_PERCENT] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_DOT] = ACTIONS(2535), + [anon_sym_SLASH] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym__] = ACTIONS(2535), + [anon_sym_BQUOTE] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2535), + [sym__newline_token] = ACTIONS(2547), + [sym_uri_autolink] = ACTIONS(2529), + [sym_email_autolink] = ACTIONS(2529), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2550), + [anon_sym_LT_QMARK] = ACTIONS(2553), + [aux_sym__declaration_token1] = ACTIONS(2556), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2559), + [sym__whitespace_ge_2] = ACTIONS(2562), + [aux_sym__whitespace_token1] = ACTIONS(2565), + [sym__word_no_digit] = ACTIONS(2529), + [sym__digits] = ACTIONS(2529), + [sym__code_span_start] = ACTIONS(2568), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__emphasis_close_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2571), + [sym__unclosed_span] = ACTIONS(2529), + }, + [153] = { + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym_latex_block] = STATE(152), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(435), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__text_base] = STATE(152), + [aux_sym__inline_base_repeat1] = STATE(152), [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2542), - [sym_numeric_character_reference] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2538), + [sym_entity_reference] = ACTIONS(2574), + [sym_numeric_character_reference] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_RBRACK] = ACTIONS(2428), [anon_sym_LT] = ACTIONS(692), [anon_sym_GT] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(696), @@ -25728,348 +25893,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(694), [anon_sym_RPAREN] = ACTIONS(694), [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2542), - [sym_email_autolink] = ACTIONS(2542), + [sym_uri_autolink] = ACTIONS(2574), + [sym_email_autolink] = ACTIONS(2574), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), [anon_sym_LT_QMARK] = ACTIONS(706), [aux_sym__declaration_token1] = ACTIONS(708), [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(710), [sym__whitespace_ge_2] = ACTIONS(712), [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2542), - [sym__digits] = ACTIONS(2542), + [sym__word_no_digit] = ACTIONS(2574), + [sym__digits] = ACTIONS(2574), [sym__code_span_start] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__emphasis_close_star] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__emphasis_close_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), [sym__latex_span_start] = ACTIONS(726), - }, - [153] = { - [sym_backslash_escape] = STATE(149), - [sym_code_span] = STATE(149), - [sym_latex_block] = STATE(149), - [sym_image] = STATE(149), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(521), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(149), - [sym__whitespace] = STATE(149), - [sym__word] = STATE(149), - [sym__soft_line_break] = STATE(149), - [sym__text_base] = STATE(149), - [aux_sym__inline_base_repeat1] = STATE(149), - [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2544), - [sym_numeric_character_reference] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2544), - [sym_email_autolink] = ACTIONS(2544), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(660), - [anon_sym_LT_QMARK] = ACTIONS(662), - [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(666), - [sym__whitespace_ge_2] = ACTIONS(668), - [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2544), - [sym__digits] = ACTIONS(2544), - [sym__code_span_start] = ACTIONS(672), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__strikethrough_close] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2574), }, [154] = { - [sym_backslash_escape] = STATE(154), - [sym_code_span] = STATE(154), - [sym_latex_block] = STATE(154), - [sym_image] = STATE(154), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(154), - [sym__whitespace] = STATE(154), - [sym__word] = STATE(154), - [sym__soft_line_break] = STATE(154), - [sym__text_base] = STATE(154), - [aux_sym__inline_base_repeat1] = STATE(154), - [sym__backslash_escape] = ACTIONS(2546), - [sym_entity_reference] = ACTIONS(2549), - [sym_numeric_character_reference] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_RBRACK] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_POUND] = ACTIONS(2555), - [anon_sym_DOLLAR] = ACTIONS(2555), - [anon_sym_PERCENT] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_DOT] = ACTIONS(2555), - [anon_sym_SLASH] = ACTIONS(2555), - [anon_sym_COLON] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_EQ] = ACTIONS(2555), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2564), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym__] = ACTIONS(2555), - [anon_sym_BQUOTE] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_PIPE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_RPAREN] = ACTIONS(2555), - [sym__newline_token] = ACTIONS(2567), - [sym_uri_autolink] = ACTIONS(2549), - [sym_email_autolink] = ACTIONS(2549), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2570), - [anon_sym_LT_QMARK] = ACTIONS(2573), - [aux_sym__declaration_token1] = ACTIONS(2576), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2579), - [sym__whitespace_ge_2] = ACTIONS(2582), - [aux_sym__whitespace_token1] = ACTIONS(2585), - [sym__word_no_digit] = ACTIONS(2549), - [sym__digits] = ACTIONS(2549), - [sym__code_span_start] = ACTIONS(2588), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__emphasis_close_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2591), + [sym_backslash_escape] = STATE(150), + [sym_code_span] = STATE(150), + [sym_latex_block] = STATE(150), + [sym_image] = STATE(150), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(504), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(150), + [sym__whitespace] = STATE(150), + [sym__word] = STATE(150), + [sym__soft_line_break] = STATE(150), + [sym__text_base] = STATE(150), + [aux_sym__inline_base_repeat1] = STATE(150), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2576), + [sym_numeric_character_reference] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_RBRACK] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2576), + [sym_email_autolink] = ACTIONS(2576), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), + [anon_sym_LT_QMARK] = ACTIONS(750), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(754), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2576), + [sym__digits] = ACTIONS(2576), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__strikethrough_close] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2576), }, [155] = { - [sym_backslash_escape] = STATE(154), - [sym_code_span] = STATE(154), - [sym_latex_block] = STATE(154), - [sym_image] = STATE(154), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(439), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(154), - [sym__whitespace] = STATE(154), - [sym__word] = STATE(154), - [sym__soft_line_break] = STATE(154), - [sym__text_base] = STATE(154), - [aux_sym__inline_base_repeat1] = STATE(154), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2594), - [sym_numeric_character_reference] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2594), - [sym_email_autolink] = ACTIONS(2594), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(754), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(758), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2594), - [sym__digits] = ACTIONS(2594), - [sym__code_span_start] = ACTIONS(764), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__emphasis_close_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(774), + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym_latex_block] = STATE(148), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(266), + [sym__image_shortcut_link] = STATE(266), + [sym__image_full_reference_link] = STATE(266), + [sym__image_collapsed_reference_link] = STATE(266), + [sym__image_description] = STATE(1124), + [sym__image_description_non_empty] = STATE(267), + [sym__html_tag] = STATE(272), + [sym__open_tag] = STATE(274), + [sym__closing_tag] = STATE(274), + [sym__html_comment] = STATE(274), + [sym__processing_instruction] = STATE(274), + [sym__declaration] = STATE(274), + [sym__cdata_section] = STATE(274), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__text_base] = STATE(148), + [aux_sym__inline_base_repeat1] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(2578), + [sym_numeric_character_reference] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_RBRACK] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(2578), + [sym_email_autolink] = ACTIONS(2578), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(2578), + [sym__digits] = ACTIONS(2578), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(45), + [sym__unclosed_span] = ACTIONS(2578), }, [156] = { [sym_backslash_escape] = STATE(156), [sym_code_span] = STATE(156), [sym_latex_block] = STATE(156), [sym_image] = STATE(156), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(156), [sym__whitespace] = STATE(156), [sym__word] = STATE(156), [sym__soft_line_break] = STATE(156), [sym__text_base] = STATE(156), [aux_sym__inline_base_repeat1] = STATE(156), - [sym__backslash_escape] = ACTIONS(2596), - [sym_entity_reference] = ACTIONS(2599), - [sym_numeric_character_reference] = ACTIONS(2599), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_RBRACK] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_SLASH] = ACTIONS(2605), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_AT] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2614), - [anon_sym_CARET] = ACTIONS(2605), - [anon_sym__] = ACTIONS(2605), - [anon_sym_BQUOTE] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_PIPE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2605), - [sym__newline_token] = ACTIONS(2617), - [sym_uri_autolink] = ACTIONS(2599), - [sym_email_autolink] = ACTIONS(2599), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2620), - [anon_sym_LT_QMARK] = ACTIONS(2623), - [aux_sym__declaration_token1] = ACTIONS(2626), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2629), - [sym__whitespace_ge_2] = ACTIONS(2632), - [aux_sym__whitespace_token1] = ACTIONS(2635), - [sym__word_no_digit] = ACTIONS(2599), - [sym__digits] = ACTIONS(2599), - [sym__code_span_start] = ACTIONS(2638), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2641), + [sym__backslash_escape] = ACTIONS(2580), + [sym_entity_reference] = ACTIONS(2583), + [sym_numeric_character_reference] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_BSLASH] = ACTIONS(2598), + [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_LPAREN] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [sym__newline_token] = ACTIONS(2601), + [sym_uri_autolink] = ACTIONS(2583), + [sym_email_autolink] = ACTIONS(2583), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2604), + [anon_sym_LT_QMARK] = ACTIONS(2607), + [aux_sym__declaration_token1] = ACTIONS(2610), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2613), + [sym__whitespace_ge_2] = ACTIONS(2616), + [aux_sym__whitespace_token1] = ACTIONS(2619), + [sym__word_no_digit] = ACTIONS(2583), + [sym__digits] = ACTIONS(2583), + [sym__code_span_start] = ACTIONS(2622), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2625), + [sym__unclosed_span] = ACTIONS(2583), }, [157] = { [sym_backslash_escape] = STATE(156), [sym_code_span] = STATE(156), [sym_latex_block] = STATE(156), [sym_image] = STATE(156), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(551), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(539), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), [sym_hard_line_break] = STATE(156), [sym__whitespace] = STATE(156), [sym__word] = STATE(156), @@ -26077,10 +26169,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_base] = STATE(156), [aux_sym__inline_base_repeat1] = STATE(156), [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2644), - [sym_numeric_character_reference] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2538), + [sym_entity_reference] = ACTIONS(2628), + [sym_numeric_character_reference] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_RBRACK] = ACTIONS(2428), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1114), @@ -26112,428 +26204,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(1112), [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2644), - [sym_email_autolink] = ACTIONS(2644), + [sym_uri_autolink] = ACTIONS(2628), + [sym_email_autolink] = ACTIONS(2628), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1122), [anon_sym_LT_QMARK] = ACTIONS(1124), [aux_sym__declaration_token1] = ACTIONS(1126), [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1128), [sym__whitespace_ge_2] = ACTIONS(1130), [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2644), - [sym__digits] = ACTIONS(2644), + [sym__word_no_digit] = ACTIONS(2628), + [sym__digits] = ACTIONS(2628), [sym__code_span_start] = ACTIONS(1134), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2628), }, [158] = { - [sym_backslash_escape] = STATE(159), - [sym_code_span] = STATE(159), - [sym_latex_block] = STATE(159), - [sym_image] = STATE(159), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), - [sym_hard_line_break] = STATE(159), - [sym__whitespace] = STATE(159), - [sym__word] = STATE(159), - [sym__soft_line_break] = STATE(159), - [sym__text_base] = STATE(159), - [aux_sym__inline_base_repeat1] = STATE(159), - [sym__backslash_escape] = ACTIONS(684), - [sym_entity_reference] = ACTIONS(2646), - [sym_numeric_character_reference] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_BSLASH] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym__] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [sym__newline_token] = ACTIONS(702), - [sym_uri_autolink] = ACTIONS(2646), - [sym_email_autolink] = ACTIONS(2646), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2123), - [anon_sym_LT_QMARK] = ACTIONS(2125), - [aux_sym__declaration_token1] = ACTIONS(708), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2127), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(2646), - [sym__digits] = ACTIONS(2646), - [sym__code_span_start] = ACTIONS(2129), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__emphasis_close_star] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(2139), + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_latex_block] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__text_base] = STATE(161), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(2630), + [sym_numeric_character_reference] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [sym__newline_token] = ACTIONS(746), + [sym_uri_autolink] = ACTIONS(2630), + [sym_email_autolink] = ACTIONS(2630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2036), + [aux_sym__declaration_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2038), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(2630), + [sym__digits] = ACTIONS(2630), + [sym__code_span_start] = ACTIONS(760), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__strikethrough_close] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(770), + [sym__unclosed_span] = ACTIONS(2630), }, [159] = { [sym_backslash_escape] = STATE(159), [sym_code_span] = STATE(159), [sym_latex_block] = STATE(159), [sym_image] = STATE(159), - [sym__image_inline_link] = STATE(352), - [sym__image_shortcut_link] = STATE(352), - [sym__image_full_reference_link] = STATE(352), - [sym__image_collapsed_reference_link] = STATE(352), - [sym__image_description] = STATE(1126), - [sym__image_description_non_empty] = STATE(552), - [sym__html_tag] = STATE(354), - [sym__open_tag] = STATE(441), - [sym__closing_tag] = STATE(441), - [sym__html_comment] = STATE(441), - [sym__processing_instruction] = STATE(441), - [sym__declaration] = STATE(441), - [sym__cdata_section] = STATE(441), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), [sym_hard_line_break] = STATE(159), [sym__whitespace] = STATE(159), [sym__word] = STATE(159), [sym__soft_line_break] = STATE(159), [sym__text_base] = STATE(159), [aux_sym__inline_base_repeat1] = STATE(159), - [sym__backslash_escape] = ACTIONS(2490), - [sym_entity_reference] = ACTIONS(2648), - [sym_numeric_character_reference] = ACTIONS(2648), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_PERCENT] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_COMMA] = ACTIONS(2499), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_DOT] = ACTIONS(2499), - [anon_sym_SLASH] = ACTIONS(2499), - [anon_sym_COLON] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_EQ] = ACTIONS(2499), - [anon_sym_QMARK] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_BSLASH] = ACTIONS(2508), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym__] = ACTIONS(2499), - [anon_sym_BQUOTE] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [sym__newline_token] = ACTIONS(2511), - [sym_uri_autolink] = ACTIONS(2648), - [sym_email_autolink] = ACTIONS(2648), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2654), - [anon_sym_LT_QMARK] = ACTIONS(2657), - [aux_sym__declaration_token1] = ACTIONS(2520), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2660), - [sym__whitespace_ge_2] = ACTIONS(2526), - [aux_sym__whitespace_token1] = ACTIONS(2529), - [sym__word_no_digit] = ACTIONS(2648), - [sym__digits] = ACTIONS(2648), - [sym__code_span_start] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__emphasis_close_star] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2666), + [sym__backslash_escape] = ACTIONS(2526), + [sym_entity_reference] = ACTIONS(2632), + [sym_numeric_character_reference] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2535), + [anon_sym_PERCENT] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_DOT] = ACTIONS(2535), + [anon_sym_SLASH] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_QMARK] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2535), + [anon_sym__] = ACTIONS(2535), + [anon_sym_BQUOTE] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2535), + [sym__newline_token] = ACTIONS(2547), + [sym_uri_autolink] = ACTIONS(2632), + [sym_email_autolink] = ACTIONS(2632), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2638), + [anon_sym_LT_QMARK] = ACTIONS(2641), + [aux_sym__declaration_token1] = ACTIONS(2556), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2644), + [sym__whitespace_ge_2] = ACTIONS(2562), + [aux_sym__whitespace_token1] = ACTIONS(2565), + [sym__word_no_digit] = ACTIONS(2632), + [sym__digits] = ACTIONS(2632), + [sym__code_span_start] = ACTIONS(2568), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__emphasis_close_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2571), + [sym__unclosed_span] = ACTIONS(2632), }, [160] = { - [sym_backslash_escape] = STATE(160), - [sym_code_span] = STATE(160), - [sym_latex_block] = STATE(160), - [sym_image] = STATE(160), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(160), - [sym__whitespace] = STATE(160), - [sym__word] = STATE(160), - [sym__soft_line_break] = STATE(160), - [sym__text_base] = STATE(160), - [aux_sym__inline_base_repeat1] = STATE(160), - [sym__backslash_escape] = ACTIONS(2596), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_RBRACK] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_SLASH] = ACTIONS(2605), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_AT] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2614), - [anon_sym_CARET] = ACTIONS(2605), - [anon_sym__] = ACTIONS(2605), - [anon_sym_BQUOTE] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_PIPE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2605), - [sym__newline_token] = ACTIONS(2617), - [sym_uri_autolink] = ACTIONS(2669), - [sym_email_autolink] = ACTIONS(2669), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2675), - [anon_sym_LT_QMARK] = ACTIONS(2678), - [aux_sym__declaration_token1] = ACTIONS(2626), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2681), - [sym__whitespace_ge_2] = ACTIONS(2632), - [aux_sym__whitespace_token1] = ACTIONS(2635), - [sym__word_no_digit] = ACTIONS(2669), - [sym__digits] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2684), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2687), - }, - [161] = { - [sym_backslash_escape] = STATE(161), - [sym_code_span] = STATE(161), - [sym_latex_block] = STATE(161), - [sym_image] = STATE(161), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), - [sym_hard_line_break] = STATE(161), - [sym__whitespace] = STATE(161), - [sym__word] = STATE(161), - [sym__soft_line_break] = STATE(161), - [sym__text_base] = STATE(161), - [aux_sym__inline_base_repeat1] = STATE(161), - [sym__backslash_escape] = ACTIONS(2442), - [sym_entity_reference] = ACTIONS(2690), - [sym_numeric_character_reference] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_PERCENT] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_DOT] = ACTIONS(2451), - [anon_sym_SLASH] = ACTIONS(2451), - [anon_sym_COLON] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_EQ] = ACTIONS(2451), - [anon_sym_QMARK] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_BSLASH] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2451), - [anon_sym__] = ACTIONS(2451), - [anon_sym_BQUOTE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [sym__newline_token] = ACTIONS(2463), - [sym_uri_autolink] = ACTIONS(2690), - [sym_email_autolink] = ACTIONS(2690), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2696), - [anon_sym_LT_QMARK] = ACTIONS(2699), - [aux_sym__declaration_token1] = ACTIONS(2472), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2702), - [sym__whitespace_ge_2] = ACTIONS(2478), - [aux_sym__whitespace_token1] = ACTIONS(2481), - [sym__word_no_digit] = ACTIONS(2690), - [sym__digits] = ACTIONS(2690), - [sym__code_span_start] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__strikethrough_close] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2708), - }, - [162] = { - [sym_backslash_escape] = STATE(164), - [sym_code_span] = STATE(164), - [sym_latex_block] = STATE(164), - [sym_image] = STATE(164), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(164), - [sym__whitespace] = STATE(164), - [sym__word] = STATE(164), - [sym__soft_line_break] = STATE(164), - [sym__text_base] = STATE(164), - [aux_sym__inline_base_repeat1] = STATE(164), - [sym__backslash_escape] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(2711), - [sym_numeric_character_reference] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym__] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [sym__newline_token] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(2711), - [sym_email_autolink] = ACTIONS(2711), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2018), - [aux_sym__declaration_token1] = ACTIONS(756), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2020), - [sym__whitespace_ge_2] = ACTIONS(760), - [aux_sym__whitespace_token1] = ACTIONS(762), - [sym__word_no_digit] = ACTIONS(2711), - [sym__digits] = ACTIONS(2711), - [sym__code_span_start] = ACTIONS(2022), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__emphasis_close_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(2032), - }, - [163] = { - [sym_backslash_escape] = STATE(160), - [sym_code_span] = STATE(160), - [sym_latex_block] = STATE(160), - [sym_image] = STATE(160), - [sym__image_inline_link] = STATE(601), - [sym__image_shortcut_link] = STATE(601), - [sym__image_full_reference_link] = STATE(601), - [sym__image_collapsed_reference_link] = STATE(601), - [sym__image_description] = STATE(1130), - [sym__image_description_non_empty] = STATE(602), - [sym__html_tag] = STATE(603), - [sym__open_tag] = STATE(576), - [sym__closing_tag] = STATE(576), - [sym__html_comment] = STATE(576), - [sym__processing_instruction] = STATE(576), - [sym__declaration] = STATE(576), - [sym__cdata_section] = STATE(576), - [sym_hard_line_break] = STATE(160), - [sym__whitespace] = STATE(160), - [sym__word] = STATE(160), - [sym__soft_line_break] = STATE(160), - [sym__text_base] = STATE(160), - [aux_sym__inline_base_repeat1] = STATE(160), + [sym_backslash_escape] = STATE(162), + [sym_code_span] = STATE(162), + [sym_latex_block] = STATE(162), + [sym_image] = STATE(162), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(162), + [sym__whitespace] = STATE(162), + [sym__word] = STATE(162), + [sym__soft_line_break] = STATE(162), + [sym__text_base] = STATE(162), + [aux_sym__inline_base_repeat1] = STATE(162), [sym__backslash_escape] = ACTIONS(1102), - [sym_entity_reference] = ACTIONS(2713), - [sym_numeric_character_reference] = ACTIONS(2713), - [anon_sym_RBRACK] = ACTIONS(2538), + [sym_entity_reference] = ACTIONS(2647), + [sym_numeric_character_reference] = ACTIONS(2647), + [anon_sym_RBRACK] = ACTIONS(2428), [anon_sym_LT] = ACTIONS(1110), [anon_sym_GT] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2016), [anon_sym_DQUOTE] = ACTIONS(1112), [anon_sym_POUND] = ACTIONS(1112), [anon_sym_DOLLAR] = ACTIONS(1112), @@ -26562,127 +26432,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(1112), [sym__newline_token] = ACTIONS(1120), - [sym_uri_autolink] = ACTIONS(2713), - [sym_email_autolink] = ACTIONS(2713), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_QMARK] = ACTIONS(2149), + [sym_uri_autolink] = ACTIONS(2647), + [sym_email_autolink] = ACTIONS(2647), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2018), + [anon_sym_LT_QMARK] = ACTIONS(2020), [aux_sym__declaration_token1] = ACTIONS(1126), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2022), [sym__whitespace_ge_2] = ACTIONS(1130), [aux_sym__whitespace_token1] = ACTIONS(1132), - [sym__word_no_digit] = ACTIONS(2713), - [sym__digits] = ACTIONS(2713), - [sym__code_span_start] = ACTIONS(2153), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(2161), - }, - [164] = { - [sym_backslash_escape] = STATE(164), - [sym_code_span] = STATE(164), - [sym_latex_block] = STATE(164), - [sym_image] = STATE(164), - [sym__image_inline_link] = STATE(438), - [sym__image_shortcut_link] = STATE(438), - [sym__image_full_reference_link] = STATE(438), - [sym__image_collapsed_reference_link] = STATE(438), - [sym__image_description] = STATE(1131), - [sym__image_description_non_empty] = STATE(577), - [sym__html_tag] = STATE(440), - [sym__open_tag] = STATE(523), - [sym__closing_tag] = STATE(523), - [sym__html_comment] = STATE(523), - [sym__processing_instruction] = STATE(523), - [sym__declaration] = STATE(523), - [sym__cdata_section] = STATE(523), - [sym_hard_line_break] = STATE(164), - [sym__whitespace] = STATE(164), - [sym__word] = STATE(164), - [sym__soft_line_break] = STATE(164), - [sym__text_base] = STATE(164), - [aux_sym__inline_base_repeat1] = STATE(164), - [sym__backslash_escape] = ACTIONS(2546), - [sym_entity_reference] = ACTIONS(2715), - [sym_numeric_character_reference] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2555), - [anon_sym_POUND] = ACTIONS(2555), - [anon_sym_DOLLAR] = ACTIONS(2555), - [anon_sym_PERCENT] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_DOT] = ACTIONS(2555), - [anon_sym_SLASH] = ACTIONS(2555), - [anon_sym_COLON] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_EQ] = ACTIONS(2555), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_BSLASH] = ACTIONS(2564), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym__] = ACTIONS(2555), - [anon_sym_BQUOTE] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_PIPE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_RPAREN] = ACTIONS(2555), - [sym__newline_token] = ACTIONS(2567), - [sym_uri_autolink] = ACTIONS(2715), - [sym_email_autolink] = ACTIONS(2715), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2721), - [anon_sym_LT_QMARK] = ACTIONS(2724), - [aux_sym__declaration_token1] = ACTIONS(2576), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2727), - [sym__whitespace_ge_2] = ACTIONS(2582), - [aux_sym__whitespace_token1] = ACTIONS(2585), - [sym__word_no_digit] = ACTIONS(2715), - [sym__digits] = ACTIONS(2715), - [sym__code_span_start] = ACTIONS(2730), - [sym__emphasis_open_star] = ACTIONS(2392), - [sym__emphasis_open_underscore] = ACTIONS(2392), - [sym__emphasis_close_underscore] = ACTIONS(2392), - [sym__strikethrough_open] = ACTIONS(2392), - [sym__latex_span_start] = ACTIONS(2733), + [sym__word_no_digit] = ACTIONS(2647), + [sym__digits] = ACTIONS(2647), + [sym__code_span_start] = ACTIONS(1134), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(1142), + [sym__unclosed_span] = ACTIONS(2647), }, - [165] = { + [161] = { [sym_backslash_escape] = STATE(161), [sym_code_span] = STATE(161), [sym_latex_block] = STATE(161), [sym_image] = STATE(161), - [sym__image_inline_link] = STATE(520), - [sym__image_shortcut_link] = STATE(520), - [sym__image_full_reference_link] = STATE(520), - [sym__image_collapsed_reference_link] = STATE(520), - [sym__image_description] = STATE(1128), - [sym__image_description_non_empty] = STATE(550), - [sym__html_tag] = STATE(522), - [sym__open_tag] = STATE(424), - [sym__closing_tag] = STATE(424), - [sym__html_comment] = STATE(424), - [sym__processing_instruction] = STATE(424), - [sym__declaration] = STATE(424), - [sym__cdata_section] = STATE(424), + [sym__image_inline_link] = STATE(503), + [sym__image_shortcut_link] = STATE(503), + [sym__image_full_reference_link] = STATE(503), + [sym__image_collapsed_reference_link] = STATE(503), + [sym__image_description] = STATE(1117), + [sym__image_description_non_empty] = STATE(540), + [sym__html_tag] = STATE(505), + [sym__open_tag] = STATE(359), + [sym__closing_tag] = STATE(359), + [sym__html_comment] = STATE(359), + [sym__processing_instruction] = STATE(359), + [sym__declaration] = STATE(359), + [sym__cdata_section] = STATE(359), [sym_hard_line_break] = STATE(161), [sym__whitespace] = STATE(161), [sym__word] = STATE(161), [sym__soft_line_break] = STATE(161), [sym__text_base] = STATE(161), [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(2430), + [sym_entity_reference] = ACTIONS(2649), + [sym_numeric_character_reference] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_GT] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_QMARK] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_BSLASH] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym__] = ACTIONS(2439), + [anon_sym_BQUOTE] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [sym__newline_token] = ACTIONS(2451), + [sym_uri_autolink] = ACTIONS(2649), + [sym_email_autolink] = ACTIONS(2649), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2655), + [anon_sym_LT_QMARK] = ACTIONS(2658), + [aux_sym__declaration_token1] = ACTIONS(2460), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2661), + [sym__whitespace_ge_2] = ACTIONS(2466), + [aux_sym__whitespace_token1] = ACTIONS(2469), + [sym__word_no_digit] = ACTIONS(2649), + [sym__digits] = ACTIONS(2649), + [sym__code_span_start] = ACTIONS(2472), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__strikethrough_close] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2475), + [sym__unclosed_span] = ACTIONS(2649), + }, + [162] = { + [sym_backslash_escape] = STATE(162), + [sym_code_span] = STATE(162), + [sym_latex_block] = STATE(162), + [sym_image] = STATE(162), + [sym__image_inline_link] = STATE(593), + [sym__image_shortcut_link] = STATE(593), + [sym__image_full_reference_link] = STATE(593), + [sym__image_collapsed_reference_link] = STATE(593), + [sym__image_description] = STATE(1121), + [sym__image_description_non_empty] = STATE(594), + [sym__html_tag] = STATE(595), + [sym__open_tag] = STATE(551), + [sym__closing_tag] = STATE(551), + [sym__html_comment] = STATE(551), + [sym__processing_instruction] = STATE(551), + [sym__declaration] = STATE(551), + [sym__cdata_section] = STATE(551), + [sym_hard_line_break] = STATE(162), + [sym__whitespace] = STATE(162), + [sym__word] = STATE(162), + [sym__soft_line_break] = STATE(162), + [sym__text_base] = STATE(162), + [aux_sym__inline_base_repeat1] = STATE(162), + [sym__backslash_escape] = ACTIONS(2580), + [sym_entity_reference] = ACTIONS(2664), + [sym_numeric_character_reference] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SQUOTE] = 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_EQ] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_BSLASH] = ACTIONS(2598), + [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_LPAREN] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [sym__newline_token] = ACTIONS(2601), + [sym_uri_autolink] = ACTIONS(2664), + [sym_email_autolink] = ACTIONS(2664), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2670), + [anon_sym_LT_QMARK] = ACTIONS(2673), + [aux_sym__declaration_token1] = ACTIONS(2610), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2676), + [sym__whitespace_ge_2] = ACTIONS(2616), + [aux_sym__whitespace_token1] = ACTIONS(2619), + [sym__word_no_digit] = ACTIONS(2664), + [sym__digits] = ACTIONS(2664), + [sym__code_span_start] = ACTIONS(2622), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2625), + [sym__unclosed_span] = ACTIONS(2664), + }, + [163] = { + [sym_backslash_escape] = STATE(165), + [sym_code_span] = STATE(165), + [sym_latex_block] = STATE(165), + [sym_image] = STATE(165), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(165), + [sym__whitespace] = STATE(165), + [sym__word] = STATE(165), + [sym__soft_line_break] = STATE(165), + [sym__text_base] = STATE(165), + [aux_sym__inline_base_repeat1] = STATE(165), [sym__backslash_escape] = ACTIONS(640), - [sym_entity_reference] = ACTIONS(2736), - [sym_numeric_character_reference] = ACTIONS(2736), + [sym_entity_reference] = ACTIONS(2679), + [sym_numeric_character_reference] = ACTIONS(2679), [anon_sym_LT] = ACTIONS(648), [anon_sym_GT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2109), [anon_sym_DQUOTE] = ACTIONS(650), [anon_sym_POUND] = ACTIONS(650), [anon_sym_DOLLAR] = ACTIONS(650), @@ -26711,1018 +26659,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(650), [sym__newline_token] = ACTIONS(658), - [sym_uri_autolink] = ACTIONS(2736), - [sym_email_autolink] = ACTIONS(2736), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2679), + [sym_email_autolink] = ACTIONS(2679), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2111), + [anon_sym_LT_QMARK] = ACTIONS(2113), [aux_sym__declaration_token1] = ACTIONS(664), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2115), [sym__whitespace_ge_2] = ACTIONS(668), [aux_sym__whitespace_token1] = ACTIONS(670), - [sym__word_no_digit] = ACTIONS(2736), - [sym__digits] = ACTIONS(2736), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2538), - [sym__strikethrough_open] = ACTIONS(2538), - [sym__strikethrough_close] = ACTIONS(2538), - [sym__latex_span_start] = ACTIONS(2054), - }, - [166] = { - [sym__html_tag] = STATE(220), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(220), - [sym__word] = STATE(220), - [sym__soft_line_break] = STATE(220), - [sym__text_base] = STATE(220), - [aux_sym_code_span_repeat1] = STATE(220), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_RBRACK] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2772), - [sym__digits] = ACTIONS(2772), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2775), - }, - [167] = { - [sym__html_tag] = STATE(240), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(240), - [sym__word] = STATE(240), - [sym__soft_line_break] = STATE(240), - [sym__text_base] = STATE(240), - [aux_sym_code_span_repeat1] = STATE(240), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_RBRACK] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2779), - [sym__digits] = ACTIONS(2779), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__strikethrough_close] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2782), - }, - [168] = { - [sym__html_tag] = STATE(220), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(220), - [sym__word] = STATE(220), - [sym__soft_line_break] = STATE(220), - [sym__text_base] = STATE(220), - [aux_sym_code_span_repeat1] = STATE(220), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_RBRACK] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2772), - [sym__digits] = ACTIONS(2772), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2775), - }, - [169] = { - [sym__html_tag] = STATE(238), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(238), - [sym__word] = STATE(238), - [sym__soft_line_break] = STATE(238), - [sym__text_base] = STATE(238), - [aux_sym_code_span_repeat1] = STATE(238), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_RBRACK] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2816), - [sym__digits] = ACTIONS(2816), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2819), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__strikethrough_close] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - }, - [170] = { - [sym__html_tag] = STATE(217), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(217), - [sym__word] = STATE(217), - [sym__soft_line_break] = STATE(217), - [sym__text_base] = STATE(217), - [aux_sym_code_span_repeat1] = STATE(217), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_RBRACK] = ACTIONS(2821), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2821), - [sym__digits] = ACTIONS(2821), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2824), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - }, - [171] = { - [sym__html_tag] = STATE(240), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(240), - [sym__word] = STATE(240), - [sym__soft_line_break] = STATE(240), - [sym__text_base] = STATE(240), - [aux_sym_code_span_repeat1] = STATE(240), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_RBRACK] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2779), - [sym__digits] = ACTIONS(2779), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__strikethrough_close] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2782), - }, - [172] = { - [sym__html_tag] = STATE(224), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(224), - [sym__word] = STATE(224), - [sym__soft_line_break] = STATE(224), - [sym__text_base] = STATE(224), - [aux_sym_code_span_repeat1] = STATE(224), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2826), - [sym__digits] = ACTIONS(2826), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2829), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - }, - [173] = { - [sym__html_tag] = STATE(253), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(253), - [sym__word] = STATE(253), - [sym__soft_line_break] = STATE(253), - [sym__text_base] = STATE(253), - [aux_sym_code_span_repeat1] = STATE(253), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_RBRACK] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2831), - [sym__digits] = ACTIONS(2831), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2834), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_star] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - }, - [174] = { - [sym__html_tag] = STATE(213), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(213), - [sym__word] = STATE(213), - [sym__soft_line_break] = STATE(213), - [sym__text_base] = STATE(213), - [aux_sym_code_span_repeat1] = STATE(213), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_RBRACK] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2836), - [sym__digits] = ACTIONS(2836), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_star] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2839), - }, - [175] = { - [sym__html_tag] = STATE(253), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(253), - [sym__word] = STATE(253), - [sym__soft_line_break] = STATE(253), - [sym__text_base] = STATE(253), - [aux_sym_code_span_repeat1] = STATE(253), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2831), - [sym__digits] = ACTIONS(2831), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2834), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_star] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - }, - [176] = { - [sym__html_tag] = STATE(248), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(248), - [sym__word] = STATE(248), - [sym__soft_line_break] = STATE(248), - [sym__text_base] = STATE(248), - [aux_sym_code_span_repeat1] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2843), - [sym__digits] = ACTIONS(2843), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2846), - }, - [177] = { - [sym__html_tag] = STATE(217), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(217), - [sym__word] = STATE(217), - [sym__soft_line_break] = STATE(217), - [sym__text_base] = STATE(217), - [aux_sym_code_span_repeat1] = STATE(217), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2821), - [sym__digits] = ACTIONS(2821), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2824), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), + [sym__word_no_digit] = ACTIONS(2679), + [sym__digits] = ACTIONS(2679), + [sym__code_span_start] = ACTIONS(672), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__emphasis_close_star] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(682), + [sym__unclosed_span] = ACTIONS(2679), }, - [178] = { - [sym__html_tag] = STATE(213), - [sym__open_tag] = STATE(808), - [sym__closing_tag] = STATE(808), - [sym__html_comment] = STATE(808), - [sym__processing_instruction] = STATE(808), - [sym__declaration] = STATE(808), - [sym__cdata_section] = STATE(808), - [sym__whitespace] = STATE(213), - [sym__word] = STATE(213), - [sym__soft_line_break] = STATE(213), - [sym__text_base] = STATE(213), - [aux_sym_code_span_repeat1] = STATE(213), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_RBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_BSLASH] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym__] = ACTIONS(2745), - [anon_sym_BQUOTE] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [sym__newline_token] = ACTIONS(2751), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2754), - [anon_sym_LT_QMARK] = ACTIONS(2757), - [aux_sym__declaration_token1] = ACTIONS(2760), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2763), - [sym__whitespace_ge_2] = ACTIONS(2766), - [aux_sym__whitespace_token1] = ACTIONS(2769), - [sym__word_no_digit] = ACTIONS(2836), - [sym__digits] = ACTIONS(2836), - [sym__code_span_start] = ACTIONS(2738), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__emphasis_close_star] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), - [sym__latex_span_close] = ACTIONS(2839), + [164] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_latex_block] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(434), + [sym__image_shortcut_link] = STATE(434), + [sym__image_full_reference_link] = STATE(434), + [sym__image_collapsed_reference_link] = STATE(434), + [sym__image_description] = STATE(1119), + [sym__image_description_non_empty] = STATE(538), + [sym__html_tag] = STATE(436), + [sym__open_tag] = STATE(506), + [sym__closing_tag] = STATE(506), + [sym__html_comment] = STATE(506), + [sym__processing_instruction] = STATE(506), + [sym__declaration] = STATE(506), + [sym__cdata_section] = STATE(506), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__text_base] = STATE(159), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(684), + [sym_entity_reference] = ACTIONS(2681), + [sym_numeric_character_reference] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [sym__newline_token] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(2681), + [sym_email_autolink] = ACTIONS(2681), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2129), + [anon_sym_LT_QMARK] = ACTIONS(2131), + [aux_sym__declaration_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2133), + [sym__whitespace_ge_2] = ACTIONS(712), + [aux_sym__whitespace_token1] = ACTIONS(714), + [sym__word_no_digit] = ACTIONS(2681), + [sym__digits] = ACTIONS(2681), + [sym__code_span_start] = ACTIONS(716), + [sym__emphasis_open_star] = ACTIONS(2428), + [sym__emphasis_open_underscore] = ACTIONS(2428), + [sym__emphasis_close_underscore] = ACTIONS(2428), + [sym__strikethrough_open] = ACTIONS(2428), + [sym__latex_span_start] = ACTIONS(726), + [sym__unclosed_span] = ACTIONS(2681), }, - [179] = { - [sym__html_tag] = STATE(238), - [sym__open_tag] = STATE(815), - [sym__closing_tag] = STATE(815), - [sym__html_comment] = STATE(815), - [sym__processing_instruction] = STATE(815), - [sym__declaration] = STATE(815), - [sym__cdata_section] = STATE(815), - [sym__whitespace] = STATE(238), - [sym__word] = STATE(238), - [sym__soft_line_break] = STATE(238), - [sym__text_base] = STATE(238), - [aux_sym_code_span_repeat1] = STATE(238), - [sym__backslash_escape] = ACTIONS(2738), - [sym_entity_reference] = ACTIONS(2738), - [sym_numeric_character_reference] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_COLON] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_EQ] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_BSLASH] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym__] = ACTIONS(2789), - [anon_sym_BQUOTE] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [sym__newline_token] = ACTIONS(2795), - [sym_uri_autolink] = ACTIONS(2738), - [sym_email_autolink] = ACTIONS(2738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2798), - [anon_sym_LT_QMARK] = ACTIONS(2801), - [aux_sym__declaration_token1] = ACTIONS(2804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2807), - [sym__whitespace_ge_2] = ACTIONS(2810), - [aux_sym__whitespace_token1] = ACTIONS(2813), - [sym__word_no_digit] = ACTIONS(2816), - [sym__digits] = ACTIONS(2816), - [sym__code_span_start] = ACTIONS(2738), - [sym__code_span_close] = ACTIONS(2819), - [sym__emphasis_open_star] = ACTIONS(2738), - [sym__emphasis_open_underscore] = ACTIONS(2738), - [sym__strikethrough_open] = ACTIONS(2738), - [sym__strikethrough_close] = ACTIONS(2738), - [sym__latex_span_start] = ACTIONS(2738), + [165] = { + [sym_backslash_escape] = STATE(165), + [sym_code_span] = STATE(165), + [sym_latex_block] = STATE(165), + [sym_image] = STATE(165), + [sym__image_inline_link] = STATE(346), + [sym__image_shortcut_link] = STATE(346), + [sym__image_full_reference_link] = STATE(346), + [sym__image_collapsed_reference_link] = STATE(346), + [sym__image_description] = STATE(1123), + [sym__image_description_non_empty] = STATE(541), + [sym__html_tag] = STATE(348), + [sym__open_tag] = STATE(437), + [sym__closing_tag] = STATE(437), + [sym__html_comment] = STATE(437), + [sym__processing_instruction] = STATE(437), + [sym__declaration] = STATE(437), + [sym__cdata_section] = STATE(437), + [sym_hard_line_break] = STATE(165), + [sym__whitespace] = STATE(165), + [sym__word] = STATE(165), + [sym__soft_line_break] = STATE(165), + [sym__text_base] = STATE(165), + [aux_sym__inline_base_repeat1] = STATE(165), + [sym__backslash_escape] = ACTIONS(2478), + [sym_entity_reference] = ACTIONS(2683), + [sym_numeric_character_reference] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_DQUOTE] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_DOT] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_COLON] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(2487), + [anon_sym_QMARK] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym__] = ACTIONS(2487), + [anon_sym_BQUOTE] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2487), + [sym__newline_token] = ACTIONS(2499), + [sym_uri_autolink] = ACTIONS(2683), + [sym_email_autolink] = ACTIONS(2683), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2689), + [anon_sym_LT_QMARK] = ACTIONS(2692), + [aux_sym__declaration_token1] = ACTIONS(2508), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2695), + [sym__whitespace_ge_2] = ACTIONS(2514), + [aux_sym__whitespace_token1] = ACTIONS(2517), + [sym__word_no_digit] = ACTIONS(2683), + [sym__digits] = ACTIONS(2683), + [sym__code_span_start] = ACTIONS(2520), + [sym__emphasis_open_star] = ACTIONS(2376), + [sym__emphasis_open_underscore] = ACTIONS(2376), + [sym__emphasis_close_star] = ACTIONS(2376), + [sym__strikethrough_open] = ACTIONS(2376), + [sym__latex_span_start] = ACTIONS(2523), + [sym__unclosed_span] = ACTIONS(2683), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 16, - ACTIONS(2742), 1, + [0] = 12, + ACTIONS(2700), 1, + anon_sym_LBRACK, + ACTIONS(2702), 1, + anon_sym_RBRACK, + ACTIONS(2710), 1, + sym__newline_token, + ACTIONS(2715), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2717), 1, + sym__whitespace_ge_2, + ACTIONS(2720), 1, + aux_sym__whitespace_token1, + ACTIONS(2723), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2704), 3, anon_sym_LT, - ACTIONS(2751), 1, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(753), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2707), 27, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, + [83] = 10, + ACTIONS(2732), 1, sym__newline_token, - ACTIONS(2754), 1, + ACTIONS(2735), 1, + anon_sym_QMARK_GT, + ACTIONS(2737), 1, + sym__whitespace_ge_2, + ACTIONS(2740), 1, + aux_sym__whitespace_token1, + ACTIONS(2743), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(2757), 1, anon_sym_LT_QMARK, - ACTIONS(2760), 1, aux_sym__declaration_token1, - ACTIONS(2763), 1, + ACTIONS(2729), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(754), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2766), 1, + ACTIONS(2726), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + 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_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [162] = 11, + ACTIONS(2732), 1, + sym__newline_token, + ACTIONS(2735), 1, + anon_sym_QMARK_GT, + ACTIONS(2737), 1, sym__whitespace_ge_2, - ACTIONS(2769), 1, + ACTIONS(2740), 1, aux_sym__whitespace_token1, - ACTIONS(2852), 1, + ACTIONS(2743), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2746), 2, anon_sym_LBRACK, - ACTIONS(2857), 1, - sym__latex_span_close, - ACTIONS(2748), 2, + anon_sym_RBRACK, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2729), 4, + anon_sym_LT, anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH, - ACTIONS(2854), 3, + STATE(754), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2726), 26, + anon_sym_GT, + 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_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [243] = 11, + ACTIONS(2732), 1, + sym__newline_token, + ACTIONS(2737), 1, + sym__whitespace_ge_2, + ACTIONS(2740), 1, + aux_sym__whitespace_token1, + ACTIONS(2748), 1, + anon_sym_QMARK_GT, + ACTIONS(2746), 2, + anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(2750), 2, sym__word_no_digit, sym__digits, - STATE(218), 6, - sym__html_tag, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2729), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(764), 4, sym__whitespace, sym__word, sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(808), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(2738), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2745), 27, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2726), 26, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -27739,7 +27102,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + 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_LPAREN, + anon_sym_RPAREN, + [324] = 11, + ACTIONS(2732), 1, + sym__newline_token, + ACTIONS(2737), 1, + sym__whitespace_ge_2, + ACTIONS(2740), 1, + aux_sym__whitespace_token1, + ACTIONS(2753), 1, + anon_sym_QMARK_GT, + ACTIONS(2746), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2755), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2729), 4, + anon_sym_LT, + anon_sym_AMP, anon_sym_QMARK, + anon_sym_BSLASH, + STATE(726), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2726), 26, + anon_sym_GT, + 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_AT, anon_sym_CARET, anon_sym__, @@ -27750,59 +27182,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [97] = 15, - ACTIONS(2786), 1, + [405] = 10, + ACTIONS(2710), 1, + sym__newline_token, + ACTIONS(2717), 1, + sym__whitespace_ge_2, + ACTIONS(2720), 1, + aux_sym__whitespace_token1, + ACTIONS(2758), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2760), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2704), 4, + anon_sym_RBRACK, anon_sym_LT, - ACTIONS(2795), 1, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(765), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2707), 28, + anon_sym_LBRACK, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, + [484] = 10, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(2798), 1, + ACTIONS(2717), 1, + sym__whitespace_ge_2, + ACTIONS(2720), 1, + aux_sym__whitespace_token1, + ACTIONS(2763), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2765), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(2801), 1, anon_sym_LT_QMARK, - ACTIONS(2804), 1, aux_sym__declaration_token1, - ACTIONS(2807), 1, + ACTIONS(2704), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(767), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2810), 1, + ACTIONS(2707), 28, + anon_sym_LBRACK, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, + [563] = 10, + ACTIONS(2732), 1, + sym__newline_token, + ACTIONS(2737), 1, sym__whitespace_ge_2, - ACTIONS(2813), 1, + ACTIONS(2740), 1, aux_sym__whitespace_token1, - ACTIONS(2862), 1, - sym__code_span_close, - ACTIONS(2792), 2, + ACTIONS(2748), 1, + anon_sym_QMARK_GT, + ACTIONS(2750), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2729), 4, + anon_sym_LT, anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH, - ACTIONS(2859), 4, + STATE(764), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2726), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + 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_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [642] = 12, + ACTIONS(2700), 1, anon_sym_LBRACK, + ACTIONS(2702), 1, anon_sym_RBRACK, + ACTIONS(2710), 1, + sym__newline_token, + ACTIONS(2717), 1, + sym__whitespace_ge_2, + ACTIONS(2720), 1, + aux_sym__whitespace_token1, + ACTIONS(2763), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2765), 2, sym__word_no_digit, sym__digits, - STATE(228), 6, - sym__html_tag, + ACTIONS(2704), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(767), 4, sym__whitespace, sym__word, sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(815), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(2738), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2789), 27, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2707), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -27830,59 +27460,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [192] = 15, - ACTIONS(2742), 1, - anon_sym_LT, - ACTIONS(2751), 1, + [725] = 10, + ACTIONS(2732), 1, sym__newline_token, - ACTIONS(2754), 1, + ACTIONS(2737), 1, + sym__whitespace_ge_2, + ACTIONS(2740), 1, + aux_sym__whitespace_token1, + ACTIONS(2768), 1, + anon_sym_QMARK_GT, + ACTIONS(2770), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(2757), 1, anon_sym_LT_QMARK, - ACTIONS(2760), 1, aux_sym__declaration_token1, - ACTIONS(2763), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2766), 1, - sym__whitespace_ge_2, - ACTIONS(2769), 1, - aux_sym__whitespace_token1, - ACTIONS(2857), 1, - sym__latex_span_close, - ACTIONS(2748), 2, + ACTIONS(2729), 4, + anon_sym_LT, anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH, - ACTIONS(2854), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__word_no_digit, - sym__digits, - STATE(218), 6, - sym__html_tag, + STATE(774), 4, sym__whitespace, sym__word, sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(808), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(2738), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2745), 27, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2726), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -27899,7 +27519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -27910,60 +27529,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [287] = 16, - ACTIONS(2786), 1, - anon_sym_LT, - ACTIONS(2795), 1, + [804] = 10, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(2798), 1, + ACTIONS(2715), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2717), 1, + sym__whitespace_ge_2, + ACTIONS(2720), 1, + aux_sym__whitespace_token1, + ACTIONS(2723), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(2801), 1, anon_sym_LT_QMARK, - ACTIONS(2804), 1, aux_sym__declaration_token1, - ACTIONS(2807), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2810), 1, - sym__whitespace_ge_2, - ACTIONS(2813), 1, - aux_sym__whitespace_token1, - ACTIONS(2862), 1, - sym__code_span_close, - ACTIONS(2864), 1, - anon_sym_LBRACK, - ACTIONS(2792), 2, + ACTIONS(2704), 4, + anon_sym_RBRACK, + anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(2859), 3, - anon_sym_RBRACK, - sym__word_no_digit, - sym__digits, - STATE(228), 6, - sym__html_tag, + STATE(753), 4, sym__whitespace, sym__word, sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(815), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(2738), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2789), 27, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2707), 28, + anon_sym_LBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -27991,49 +27598,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [384] = 11, - ACTIONS(2876), 1, + [883] = 12, + ACTIONS(2700), 1, + anon_sym_LBRACK, + ACTIONS(2702), 1, + anon_sym_RBRACK, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(2881), 1, - anon_sym_QMARK_GT, - ACTIONS(2883), 1, + ACTIONS(2717), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2720), 1, aux_sym__whitespace_token1, - ACTIONS(2868), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2889), 2, + ACTIONS(2758), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2760), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2704), 3, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(787), 4, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(765), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 26, + ACTIONS(2707), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -28050,6 +27658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -28060,46 +27669,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [464] = 10, - ACTIONS(2898), 1, + [966] = 10, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(2901), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2903), 1, + ACTIONS(2717), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2720), 1, aux_sym__whitespace_token1, - ACTIONS(2909), 2, + ACTIONS(2773), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2775), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 4, + ACTIONS(2704), 4, anon_sym_RBRACK, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(784), 4, + STATE(777), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 28, + ACTIONS(2707), 28, anon_sym_LBRACK, anon_sym_GT, anon_sym_BANG, @@ -28128,46 +27738,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [542] = 10, - ACTIONS(2876), 1, + [1045] = 10, + ACTIONS(2732), 1, sym__newline_token, - ACTIONS(2883), 1, + ACTIONS(2737), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2740), 1, aux_sym__whitespace_token1, - ACTIONS(2912), 1, + ACTIONS(2753), 1, anon_sym_QMARK_GT, - ACTIONS(2914), 2, + ACTIONS(2755), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2729), 4, anon_sym_LT, anon_sym_AMP, anon_sym_QMARK, anon_sym_BSLASH, - STATE(810), 4, + STATE(726), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 28, + ACTIONS(2726), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -28196,50 +27807,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [620] = 11, - ACTIONS(2876), 1, + [1124] = 11, + ACTIONS(2784), 1, + anon_sym_DASH, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2883), 1, + ACTIONS(2790), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2917), 1, - anon_sym_QMARK_GT, - ACTIONS(2868), 2, + ACTIONS(2798), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2781), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(755), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2698), 14, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2778), 27, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2919), 2, + 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_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1204] = 11, + ACTIONS(2787), 1, + sym__newline_token, + ACTIONS(2792), 1, + sym__whitespace_ge_2, + ACTIONS(2795), 1, + aux_sym__whitespace_token1, + ACTIONS(2807), 1, + anon_sym_DASH, + ACTIONS(2810), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2812), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2804), 3, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(747), 4, + STATE(769), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 14, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 26, - anon_sym_GT, + ACTIONS(2801), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28249,12 +27929,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1284] = 12, + ACTIONS(2784), 1, anon_sym_DASH, + ACTIONS(2787), 1, + sym__newline_token, + ACTIONS(2790), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2792), 1, + sym__whitespace_ge_2, + ACTIONS(2795), 1, + aux_sym__whitespace_token1, + ACTIONS(2798), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2815), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2713), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2781), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(755), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2698), 14, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2778), 25, + 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_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -28265,48 +28015,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [700] = 10, - ACTIONS(2898), 1, + [1366] = 11, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2903), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2922), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2924), 2, + ACTIONS(2823), 1, + anon_sym_DASH, + ACTIONS(2826), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2828), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 4, - anon_sym_RBRACK, + ACTIONS(2820), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(746), 4, + STATE(772), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 14, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 28, + ACTIONS(2817), 27, anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACK, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28316,7 +28068,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, @@ -28333,49 +28084,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [778] = 12, - ACTIONS(2898), 1, + [1446] = 11, + ACTIONS(2732), 1, sym__newline_token, - ACTIONS(2903), 1, + ACTIONS(2737), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2740), 1, aux_sym__whitespace_token1, - ACTIONS(2922), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2927), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(2924), 2, + ACTIONS(2831), 1, + anon_sym_QMARK_GT, + ACTIONS(2833), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 3, + ACTIONS(2729), 4, anon_sym_LT, anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH, - STATE(746), 4, + STATE(824), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 12, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 27, + ACTIONS(2726), 27, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -28392,7 +28143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -28403,48 +28153,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [860] = 10, - ACTIONS(2898), 1, + [1526] = 11, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2903), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2931), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2933), 2, + ACTIONS(2842), 1, + anon_sym_DASH, + ACTIONS(2845), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2847), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 4, - anon_sym_RBRACK, + ACTIONS(2839), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(777), 4, + STATE(763), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 14, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 28, + ACTIONS(2836), 27, anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACK, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28454,7 +28206,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, @@ -28471,46 +28222,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [938] = 10, - ACTIONS(2876), 1, + [1606] = 10, + ACTIONS(2732), 1, sym__newline_token, - ACTIONS(2883), 1, + ACTIONS(2737), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2740), 1, aux_sym__whitespace_token1, - ACTIONS(2917), 1, + ACTIONS(2831), 1, anon_sym_QMARK_GT, - ACTIONS(2919), 2, + ACTIONS(2833), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2729), 4, anon_sym_LT, anon_sym_AMP, anon_sym_QMARK, anon_sym_BSLASH, - STATE(747), 4, + STATE(824), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 12, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 28, + ACTIONS(2726), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -28539,49 +28290,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1016] = 10, - ACTIONS(2876), 1, + [1684] = 12, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2881), 1, - anon_sym_QMARK_GT, - ACTIONS(2883), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2889), 2, + ACTIONS(2807), 1, + anon_sym_DASH, + ACTIONS(2810), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2812), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2850), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2804), 3, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(787), 4, + STATE(769), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 14, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 28, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(2801), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28591,12 +28344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -28607,49 +28360,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1094] = 12, - ACTIONS(2898), 1, + [1766] = 10, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(2901), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2903), 1, + ACTIONS(2717), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2720), 1, aux_sym__whitespace_token1, - ACTIONS(2927), 1, - anon_sym_LBRACK, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(2909), 2, + ACTIONS(2852), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2854), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 3, + ACTIONS(2704), 4, + anon_sym_RBRACK, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(784), 4, + STATE(810), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 12, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 27, + ACTIONS(2707), 28, + anon_sym_LBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -28677,48 +28428,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1176] = 10, - ACTIONS(2898), 1, + [1844] = 12, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2903), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2936), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2938), 2, + ACTIONS(2842), 1, + anon_sym_DASH, + ACTIONS(2845), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2847), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2857), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 4, - anon_sym_RBRACK, + ACTIONS(2839), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(768), 4, + STATE(763), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 14, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 28, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(2836), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28728,7 +28482,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, @@ -28745,48 +28498,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1254] = 10, - ACTIONS(2876), 1, + [1926] = 11, + ACTIONS(2700), 1, + anon_sym_LBRACK, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(2883), 1, + ACTIONS(2717), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2720), 1, aux_sym__whitespace_token1, - ACTIONS(2941), 1, - anon_sym_QMARK_GT, - ACTIONS(2943), 2, + ACTIONS(2852), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2854), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2704), 4, + anon_sym_RBRACK, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(771), 4, + STATE(810), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 12, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 28, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2707), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -28803,6 +28556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -28813,50 +28567,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1332] = 12, - ACTIONS(2898), 1, + [2006] = 12, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2903), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2906), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2927), 1, + ACTIONS(2859), 1, anon_sym_LBRACK, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(2936), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2938), 2, + ACTIONS(2867), 1, + anon_sym_DASH, + ACTIONS(2870), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2872), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2895), 3, + ACTIONS(2864), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(768), 4, + STATE(825), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 27, - anon_sym_GT, + ACTIONS(2861), 26, + anon_sym_RBRACK, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28866,7 +28620,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, @@ -28883,50 +28636,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1414] = 11, - ACTIONS(2876), 1, + [2087] = 11, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2883), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(2941), 1, - anon_sym_QMARK_GT, - ACTIONS(2868), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2943), 2, + ACTIONS(2867), 1, + anon_sym_DASH, + ACTIONS(2870), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2872), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, + ACTIONS(2713), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2870), 4, + ACTIONS(2864), 3, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(771), 4, + STATE(825), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 12, + ACTIONS(2698), 13, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_GT, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 26, - anon_sym_GT, + ACTIONS(2861), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -28936,12 +28688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -28952,50 +28704,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1494] = 12, - ACTIONS(2954), 1, - anon_sym_DASH, - ACTIONS(2957), 1, + [2166] = 5, + ACTIONS(702), 1, sym__newline_token, - ACTIONS(2960), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(2962), 1, - sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(2946), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2968), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2948), 3, + ACTIONS(2879), 1, + sym__last_token_whitespace, + STATE(442), 1, + sym__soft_line_break, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(774), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2875), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2951), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29005,6 +28742,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, @@ -29021,50 +28759,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1575] = 12, - ACTIONS(2957), 1, - sym__newline_token, - ACTIONS(2962), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(2979), 1, - anon_sym_DASH, - ACTIONS(2982), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(2971), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2984), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2973), 3, + [2232] = 6, + ACTIONS(2881), 1, + anon_sym_SLASH, + ACTIONS(2884), 1, + sym__word_no_digit, + ACTIONS(2887), 1, + sym__last_token_punctuation, + STATE(943), 1, + sym__tag_name, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(798), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2976), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29074,8 +28805,8 @@ static const uint16_t ts_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, @@ -29090,49 +28821,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1656] = 11, - ACTIONS(2957), 1, sym__newline_token, - ACTIONS(2962), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(2993), 1, - anon_sym_DASH, - ACTIONS(2996), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(2998), 2, - sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2990), 3, + [2300] = 6, + ACTIONS(2884), 1, + sym__word_no_digit, + ACTIONS(2889), 1, + anon_sym_SLASH, + ACTIONS(2892), 1, + sym__last_token_punctuation, + STATE(945), 1, + sym__tag_name, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(755), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2987), 27, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29142,8 +28867,8 @@ static const uint16_t ts_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, @@ -29158,49 +28883,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1735] = 11, - ACTIONS(2957), 1, sym__newline_token, - ACTIONS(2962), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(2979), 1, - anon_sym_DASH, - ACTIONS(2982), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(2984), 2, - sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2973), 3, + [2368] = 5, + ACTIONS(658), 1, + sym__newline_token, + ACTIONS(2894), 1, + sym__last_token_whitespace, + STATE(357), 1, + sym__soft_line_break, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(798), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2875), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2976), 27, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29210,6 +28927,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, @@ -29226,45 +28944,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1814] = 10, - ACTIONS(2876), 1, - sym__newline_token, - ACTIONS(2883), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2886), 1, - aux_sym__whitespace_token1, - ACTIONS(3001), 1, - anon_sym_QMARK_GT, - ACTIONS(3003), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2870), 4, + [2434] = 5, + ACTIONS(658), 1, + sym__newline_token, + ACTIONS(2892), 1, + sym__last_token_punctuation, + STATE(357), 1, + sym__soft_line_break, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(833), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -29283,6 +28994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -29293,46 +29005,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1891] = 10, - ACTIONS(2898), 1, - sym__newline_token, - ACTIONS(2903), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(3006), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3008), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2895), 4, - anon_sym_RBRACK, + [2500] = 6, + ACTIONS(2896), 1, + sym__newline_token, + ACTIONS(2899), 1, + sym__whitespace_ge_2, + ACTIONS(2902), 1, + aux_sym__whitespace_token1, + STATE(860), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2713), 6, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(832), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 28, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -29360,49 +29068,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [1968] = 11, - ACTIONS(2954), 1, - anon_sym_DASH, - ACTIONS(2957), 1, - sym__newline_token, - ACTIONS(2960), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(2962), 1, - sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(2968), 2, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2948), 3, + [2568] = 6, + ACTIONS(2884), 1, + sym__word_no_digit, + ACTIONS(2905), 1, + anon_sym_SLASH, + ACTIONS(2908), 1, + sym__last_token_punctuation, + STATE(946), 1, + sym__tag_name, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(774), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, + 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_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2951), 27, + sym__whitespace_ge_2, + sym__digits, + [2636] = 6, + ACTIONS(2896), 1, + sym__newline_token, + ACTIONS(2899), 1, + sym__whitespace_ge_2, + ACTIONS(2902), 1, + aux_sym__whitespace_token1, + STATE(857), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2713), 6, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2698), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29412,6 +29175,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, @@ -29428,49 +29192,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2047] = 11, - ACTIONS(2957), 1, - sym__newline_token, - ACTIONS(2962), 1, - sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(3017), 1, - anon_sym_DASH, - ACTIONS(3020), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3022), 2, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(3014), 3, + [2704] = 5, + ACTIONS(21), 1, + sym__newline_token, + ACTIONS(2908), 1, + sym__last_token_punctuation, + STATE(299), 1, + sym__soft_line_break, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(782), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3011), 27, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29480,6 +29235,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, @@ -29496,50 +29252,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2126] = 12, - ACTIONS(2957), 1, - sym__newline_token, - ACTIONS(2962), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(2993), 1, - anon_sym_DASH, - ACTIONS(2996), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(2998), 2, sym__word_no_digit, sym__digits, - ACTIONS(3025), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2990), 3, + [2770] = 6, + ACTIONS(2884), 1, + sym__word_no_digit, + ACTIONS(2910), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + sym__last_token_punctuation, + STATE(955), 1, + sym__tag_name, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(755), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 13, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2987), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29549,8 +29298,8 @@ static const uint16_t ts_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, @@ -29565,47 +29314,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2207] = 11, - ACTIONS(2868), 1, - anon_sym_LBRACK, - ACTIONS(2876), 1, sym__newline_token, - ACTIONS(2883), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2886), 1, - aux_sym__whitespace_token1, - ACTIONS(3001), 1, - anon_sym_QMARK_GT, - ACTIONS(3003), 2, - sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2870), 4, + [2838] = 5, + ACTIONS(746), 1, + sym__newline_token, + ACTIONS(2915), 1, + sym__last_token_whitespace, + STATE(510), 1, + sym__soft_line_break, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(833), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2875), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 27, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -29623,6 +29364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -29633,47 +29375,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2286] = 11, - ACTIONS(2898), 1, - sym__newline_token, - ACTIONS(2903), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(2927), 1, - anon_sym_LBRACK, - ACTIONS(3006), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3008), 2, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2895), 4, - anon_sym_RBRACK, + [2904] = 6, + ACTIONS(2896), 1, + sym__newline_token, + ACTIONS(2899), 1, + sym__whitespace_ge_2, + ACTIONS(2902), 1, + aux_sym__whitespace_token1, + STATE(836), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2713), 6, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(832), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 11, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -29701,48 +29438,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2365] = 11, - ACTIONS(2957), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [2972] = 6, + ACTIONS(2896), 1, sym__newline_token, - ACTIONS(2962), 1, + ACTIONS(2899), 1, sym__whitespace_ge_2, - ACTIONS(2965), 1, + ACTIONS(2902), 1, aux_sym__whitespace_token1, - ACTIONS(3033), 1, - anon_sym_DASH, - ACTIONS(3036), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3038), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(3030), 3, + STATE(858), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2713), 6, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(830), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3027), 27, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29752,6 +29483,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, @@ -29768,49 +29500,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2443] = 12, - ACTIONS(2957), 1, - sym__newline_token, - ACTIONS(2962), 1, - sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(3033), 1, - anon_sym_DASH, - ACTIONS(3036), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3041), 1, - anon_sym_LBRACK, - ACTIONS(3038), 2, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__word_no_digit, sym__digits, - ACTIONS(2879), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(3030), 3, + [3040] = 5, + ACTIONS(746), 1, + sym__newline_token, + ACTIONS(2913), 1, + sym__last_token_punctuation, + STATE(510), 1, + sym__soft_line_break, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(830), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_GT, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3027), 26, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -29820,6 +29543,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, @@ -29836,43 +29560,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2523] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3047), 1, - anon_sym_RBRACK, - ACTIONS(3053), 1, - sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [3106] = 5, + ACTIONS(21), 1, + sym__newline_token, + ACTIONS(2917), 1, + sym__last_token_whitespace, + STATE(299), 1, + sym__soft_line_break, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(214), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3045), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2875), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -29900,30 +29621,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2596] = 6, - ACTIONS(3059), 1, - sym__newline_token, - ACTIONS(3062), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3065), 1, - aux_sym__whitespace_token1, - STATE(867), 2, - sym__whitespace, + sym__word_no_digit, + sym__digits, + [3172] = 5, + ACTIONS(702), 1, + sym__newline_token, + ACTIONS(2887), 1, + sym__last_token_punctuation, + STATE(442), 1, sym__soft_line_break, - ACTIONS(2879), 6, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2866), 43, + aux_sym__whitespace_token1, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -29959,47 +29685,48 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [2663] = 13, - ACTIONS(3070), 1, + [3238] = 13, + ACTIONS(2921), 1, anon_sym_LT, - ACTIONS(3074), 1, + ACTIONS(2925), 1, sym__newline_token, - ACTIONS(3076), 1, + ACTIONS(2927), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3078), 1, + ACTIONS(2929), 1, anon_sym_LT_QMARK, - ACTIONS(3080), 1, + ACTIONS(2931), 1, aux_sym__declaration_token1, - ACTIONS(3082), 1, + ACTIONS(2933), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3084), 1, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3086), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3088), 1, - sym__latex_span_close, - ACTIONS(3068), 4, + ACTIONS(2939), 1, + sym__code_span_close, + ACTIONS(2919), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(233), 6, + STATE(250), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(808), 6, + STATE(820), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3072), 29, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30029,43 +29756,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2744] = 9, - ACTIONS(3090), 1, - sym__backslash_escape, - ACTIONS(3096), 1, + [3319] = 4, + ACTIONS(114), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, - sym__newline_token, - ACTIONS(3107), 1, - sym__whitespace_ge_2, - ACTIONS(3110), 1, - aux_sym__whitespace_token1, - ACTIONS(3098), 3, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(214), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3093), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2941), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3101), 27, + anon_sym_LBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30093,43 +29808,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2817] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3115), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [3382] = 3, + ACTIONS(2892), 1, + sym__last_token_punctuation, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(211), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3113), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30157,43 +29866,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2890] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3117), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [3443] = 4, + ACTIONS(2892), 1, + sym__last_token_punctuation, + ACTIONS(2945), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(214), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3045), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30221,120 +29925,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [2963] = 13, - ACTIONS(3121), 1, - anon_sym_LT, - ACTIONS(3125), 1, sym__newline_token, - ACTIONS(3127), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3129), 1, - anon_sym_LT_QMARK, - ACTIONS(3131), 1, - aux_sym__declaration_token1, - ACTIONS(3133), 1, + sym_uri_autolink, + sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3135), 1, sym__whitespace_ge_2, - ACTIONS(3137), 1, - aux_sym__whitespace_token1, - ACTIONS(3139), 1, - sym__code_span_close, - ACTIONS(3119), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(229), 6, - sym__html_tag, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(815), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(3123), 29, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + [3506] = 4, + ACTIONS(2887), 1, + sym__last_token_punctuation, + ACTIONS(2948), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, + anon_sym_LT, anon_sym_AMP, - 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_QMARK, - anon_sym_AT, 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_LPAREN, - anon_sym_RPAREN, - [3044] = 13, - ACTIONS(3070), 1, - anon_sym_LT, - ACTIONS(3074), 1, - sym__newline_token, - ACTIONS(3076), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3078), 1, anon_sym_LT_QMARK, - ACTIONS(3080), 1, aux_sym__declaration_token1, - ACTIONS(3082), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3084), 1, - sym__whitespace_ge_2, - ACTIONS(3086), 1, aux_sym__whitespace_token1, - ACTIONS(3141), 1, - sym__latex_span_close, - ACTIONS(3068), 4, - anon_sym_LBRACK, + ACTIONS(2698), 45, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_RBRACK, - sym__word_no_digit, - sym__digits, - STATE(233), 6, - sym__html_tag, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(808), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(3072), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -30347,7 +29975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -30357,30 +29984,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3125] = 6, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3146), 1, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, sym__word_no_digit, - ACTIONS(3149), 1, - sym__last_token_punctuation, - STATE(964), 1, - sym__tag_name, - ACTIONS(2879), 7, + sym__digits, + [3569] = 6, + ACTIONS(2896), 1, + sym__newline_token, + ACTIONS(2899), 1, + sym__whitespace_ge_2, + ACTIONS(2902), 1, + aux_sym__whitespace_token1, + STATE(840), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2713), 6, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(2698), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -30398,6 +30032,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, @@ -30412,51 +30047,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, - [3192] = 13, - ACTIONS(3070), 1, + [3636] = 13, + ACTIONS(2953), 1, anon_sym_LT, - ACTIONS(3074), 1, + ACTIONS(2957), 1, sym__newline_token, - ACTIONS(3076), 1, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3078), 1, + ACTIONS(2961), 1, anon_sym_LT_QMARK, - ACTIONS(3080), 1, + ACTIONS(2963), 1, aux_sym__declaration_token1, - ACTIONS(3082), 1, + ACTIONS(2965), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3084), 1, + ACTIONS(2967), 1, sym__whitespace_ge_2, - ACTIONS(3086), 1, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(3151), 1, + ACTIONS(2971), 1, sym__latex_span_close, - ACTIONS(3068), 4, + ACTIONS(2951), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(233), 6, + STATE(228), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(808), 6, + STATE(778), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3072), 29, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30486,107 +30120,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3273] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, - sym__newline_token, - ACTIONS(3055), 1, - sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3153), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + [3717] = 3, + ACTIONS(2977), 1, + sym__last_token_whitespace, + ACTIONS(2975), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(211), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3113), 12, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym_entity_reference, - sym_numeric_character_reference, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, - [3346] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, - sym__newline_token, - ACTIONS(3055), 1, - sym__whitespace_ge_2, - ACTIONS(3057), 1, aux_sym__whitespace_token1, - ACTIONS(3157), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(227), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3155), 12, + ACTIONS(2973), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30614,43 +30171,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3419] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3159), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [3778] = 3, + ACTIONS(2894), 1, + sym__last_token_whitespace, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(227), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3155), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2875), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30678,45 +30229,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3492] = 13, - ACTIONS(3121), 1, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [3839] = 13, + ACTIONS(2953), 1, anon_sym_LT, - ACTIONS(3125), 1, + ACTIONS(2957), 1, sym__newline_token, - ACTIONS(3127), 1, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3129), 1, + ACTIONS(2961), 1, anon_sym_LT_QMARK, - ACTIONS(3131), 1, + ACTIONS(2963), 1, aux_sym__declaration_token1, - ACTIONS(3133), 1, + ACTIONS(2965), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3135), 1, + ACTIONS(2967), 1, sym__whitespace_ge_2, - ACTIONS(3137), 1, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(3161), 1, - sym__code_span_close, - ACTIONS(3119), 4, + ACTIONS(2981), 1, + sym__latex_span_close, + ACTIONS(2979), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(229), 6, + STATE(255), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(815), 6, + STATE(778), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3123), 29, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30746,14 +30304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3573] = 5, - ACTIONS(702), 1, - sym__newline_token, - ACTIONS(3167), 1, - sym__last_token_whitespace, - STATE(362), 1, - sym__soft_line_break, - ACTIONS(3165), 7, + [3920] = 3, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -30761,13 +30315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3163), 44, + ACTIONS(2941), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -30800,45 +30355,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [3638] = 5, - ACTIONS(702), 1, - sym__newline_token, - ACTIONS(3169), 1, - sym__last_token_punctuation, - STATE(362), 1, - sym__soft_line_break, - ACTIONS(2879), 7, + [3981] = 13, + ACTIONS(2953), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(2957), 1, + sym__newline_token, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2961), 1, anon_sym_LT_QMARK, + ACTIONS(2963), 1, aux_sym__declaration_token1, + ACTIONS(2965), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2967), 1, + sym__whitespace_ge_2, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(2983), 1, + sym__latex_span_close, + ACTIONS(2951), 4, anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(228), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(778), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -30851,6 +30420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -30860,55 +30430,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [3703] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, + [4062] = 13, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(2925), 1, sym__newline_token, - ACTIONS(3055), 1, + ACTIONS(2927), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, + anon_sym_LT_QMARK, + ACTIONS(2931), 1, + aux_sym__declaration_token1, + ACTIONS(2933), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3057), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3171), 1, + ACTIONS(2987), 1, + sym__code_span_close, + ACTIONS(2985), 4, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3049), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(214), 7, - sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(224), 6, + sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3045), 12, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -30921,6 +30488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -30930,45 +30498,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3776] = 13, - ACTIONS(3121), 1, + [4143] = 13, + ACTIONS(2953), 1, anon_sym_LT, - ACTIONS(3125), 1, + ACTIONS(2957), 1, sym__newline_token, - ACTIONS(3127), 1, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3129), 1, + ACTIONS(2961), 1, anon_sym_LT_QMARK, - ACTIONS(3131), 1, + ACTIONS(2963), 1, aux_sym__declaration_token1, - ACTIONS(3133), 1, + ACTIONS(2965), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3135), 1, + ACTIONS(2967), 1, sym__whitespace_ge_2, - ACTIONS(3137), 1, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(3173), 1, - sym__code_span_close, - ACTIONS(3119), 4, + ACTIONS(2991), 1, + sym__latex_span_close, + ACTIONS(2989), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(229), 6, + STATE(235), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(815), 6, + STATE(778), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3123), 29, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -30998,45 +30566,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3857] = 13, - ACTIONS(3178), 1, + [4224] = 4, + ACTIONS(114), 1, + anon_sym_RBRACK, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, - ACTIONS(3184), 1, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2941), 45, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, sym__newline_token, - ACTIONS(3187), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [4287] = 13, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(2925), 1, + sym__newline_token, + ACTIONS(2927), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3190), 1, + ACTIONS(2929), 1, anon_sym_LT_QMARK, - ACTIONS(3193), 1, + ACTIONS(2931), 1, aux_sym__declaration_token1, - ACTIONS(3196), 1, + ACTIONS(2933), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3199), 1, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3202), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3205), 1, + ACTIONS(2993), 1, sym__code_span_close, - ACTIONS(3175), 4, + ACTIONS(2919), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(229), 6, + STATE(250), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(815), 6, + STATE(820), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3181), 29, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -31066,43 +30693,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [3938] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, - sym__newline_token, - ACTIONS(3055), 1, - sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3209), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + [4368] = 3, + ACTIONS(2887), 1, + sym__last_token_punctuation, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(245), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3207), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -31130,35 +30744,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4011] = 6, - ACTIONS(3059), 1, sym__newline_token, - ACTIONS(3062), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3065), 1, - aux_sym__whitespace_token1, - STATE(850), 2, - sym__whitespace, - sym__soft_line_break, - ACTIONS(2879), 6, + sym__word_no_digit, + sym__digits, + [4429] = 4, + ACTIONS(114), 1, + anon_sym_RBRACK, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2866), 43, + aux_sym__whitespace_token1, + ACTIONS(2941), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -31186,19 +30803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [4078] = 5, - ACTIONS(21), 1, - sym__newline_token, - ACTIONS(3211), 1, + [4492] = 3, + ACTIONS(2917), 1, sym__last_token_whitespace, - STATE(306), 1, - sym__soft_line_break, - ACTIONS(3165), 7, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -31206,12 +30821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3163), 44, + ACTIONS(2875), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -31245,51 +30861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [4143] = 13, - ACTIONS(3205), 1, - sym__latex_span_close, - ACTIONS(3216), 1, + [4553] = 13, + ACTIONS(2998), 1, anon_sym_LT, - ACTIONS(3222), 1, + ACTIONS(3004), 1, sym__newline_token, - ACTIONS(3225), 1, + ACTIONS(3007), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3228), 1, + ACTIONS(3010), 1, anon_sym_LT_QMARK, - ACTIONS(3231), 1, + ACTIONS(3013), 1, aux_sym__declaration_token1, - ACTIONS(3234), 1, + ACTIONS(3016), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3237), 1, + ACTIONS(3019), 1, sym__whitespace_ge_2, - ACTIONS(3240), 1, + ACTIONS(3022), 1, aux_sym__whitespace_token1, - ACTIONS(3213), 4, + ACTIONS(3025), 1, + sym__latex_span_close, + ACTIONS(2995), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(233), 6, + STATE(228), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(808), 6, + STATE(778), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3219), 29, + ACTIONS(3001), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -31319,52 +30936,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4224] = 6, - ACTIONS(3146), 1, - sym__word_no_digit, - ACTIONS(3169), 1, - sym__last_token_punctuation, - ACTIONS(3243), 1, - anon_sym_SLASH, - STATE(963), 1, - sym__tag_name, - ACTIONS(2879), 7, + [4634] = 13, + ACTIONS(2953), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(2957), 1, + sym__newline_token, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2961), 1, anon_sym_LT_QMARK, + ACTIONS(2963), 1, aux_sym__declaration_token1, + ACTIONS(2965), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2967), 1, + sym__whitespace_ge_2, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3029), 1, + sym__latex_span_close, + ACTIONS(3027), 4, anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(220), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(778), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, 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_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -31374,20 +31004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__digits, - [4291] = 5, - ACTIONS(750), 1, - sym__newline_token, - ACTIONS(3246), 1, + [4715] = 3, + ACTIONS(1277), 1, sym__last_token_punctuation, - STATE(446), 1, - sym__soft_line_break, - ACTIONS(2879), 7, + ACTIONS(3031), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -31395,13 +31015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(500), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -31434,55 +31055,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [4356] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, + [4776] = 13, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(2925), 1, sym__newline_token, - ACTIONS(3055), 1, + ACTIONS(2927), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, + anon_sym_LT_QMARK, + ACTIONS(2931), 1, + aux_sym__declaration_token1, + ACTIONS(2933), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3057), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3250), 1, + ACTIONS(3035), 1, + sym__code_span_close, + ACTIONS(3033), 4, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3049), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(216), 7, - sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(209), 6, + sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3248), 12, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -31495,6 +31120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -31504,16 +31130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4429] = 6, - ACTIONS(3146), 1, - sym__word_no_digit, - ACTIONS(3252), 1, - anon_sym_SLASH, - ACTIONS(3255), 1, + [4857] = 4, + ACTIONS(2913), 1, sym__last_token_punctuation, - STATE(953), 1, - sym__tag_name, - ACTIONS(2879), 7, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -31521,17 +31143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -31545,6 +31167,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, @@ -31564,46 +31187,47 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, - [4496] = 13, - ACTIONS(3121), 1, + [4920] = 13, + ACTIONS(2921), 1, anon_sym_LT, - ACTIONS(3125), 1, + ACTIONS(2925), 1, sym__newline_token, - ACTIONS(3127), 1, + ACTIONS(2927), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3129), 1, + ACTIONS(2929), 1, anon_sym_LT_QMARK, - ACTIONS(3131), 1, + ACTIONS(2931), 1, aux_sym__declaration_token1, - ACTIONS(3133), 1, + ACTIONS(2933), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3135), 1, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3137), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3257), 1, + ACTIONS(3040), 1, sym__code_span_close, - ACTIONS(3119), 4, + ACTIONS(2919), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(229), 6, + STATE(250), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(815), 6, + STATE(820), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3123), 29, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -31633,14 +31257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4577] = 5, - ACTIONS(21), 1, - sym__newline_token, - ACTIONS(3149), 1, - sym__last_token_punctuation, - STATE(306), 1, - sym__soft_line_break, - ACTIONS(2879), 7, + [5001] = 3, + ACTIONS(3042), 1, + sym__last_token_whitespace, + ACTIONS(2975), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -31648,13 +31268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(2973), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -31687,51 +31308,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [4642] = 13, - ACTIONS(3070), 1, + [5062] = 13, + ACTIONS(2953), 1, anon_sym_LT, - ACTIONS(3074), 1, + ACTIONS(2957), 1, sym__newline_token, - ACTIONS(3076), 1, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3078), 1, + ACTIONS(2961), 1, anon_sym_LT_QMARK, - ACTIONS(3080), 1, + ACTIONS(2963), 1, aux_sym__declaration_token1, - ACTIONS(3082), 1, + ACTIONS(2965), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3084), 1, + ACTIONS(2967), 1, sym__whitespace_ge_2, - ACTIONS(3086), 1, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(3259), 1, + ACTIONS(3044), 1, sym__latex_span_close, - ACTIONS(3068), 4, + ACTIONS(2951), 4, anon_sym_LBRACK, anon_sym_RBRACK, sym__word_no_digit, sym__digits, - STATE(233), 6, + STATE(228), 6, sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, aux_sym_code_span_repeat1, - STATE(808), 6, + STATE(778), 6, sym__open_tag, sym__closing_tag, sym__html_comment, sym__processing_instruction, sym__declaration, sym__cdata_section, - ACTIONS(3072), 29, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -31761,39 +31383,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4723] = 5, - ACTIONS(658), 1, - sym__newline_token, - ACTIONS(3261), 1, - sym__last_token_whitespace, - STATE(528), 1, - sym__soft_line_break, - ACTIONS(3165), 7, + [5143] = 13, + ACTIONS(2921), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(2925), 1, + sym__newline_token, + ACTIONS(2927), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, anon_sym_LT_QMARK, + ACTIONS(2931), 1, aux_sym__declaration_token1, + ACTIONS(2933), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, + sym__whitespace_ge_2, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3163), 44, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__strikethrough_close, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3046), 1, + sym__code_span_close, + ACTIONS(2919), 4, anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(250), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -31806,6 +31441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -31815,55 +31451,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [4788] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, + [5224] = 13, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(2925), 1, sym__newline_token, - ACTIONS(3055), 1, + ACTIONS(2927), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, + anon_sym_LT_QMARK, + ACTIONS(2931), 1, + aux_sym__declaration_token1, + ACTIONS(2933), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3057), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3263), 1, + ACTIONS(3050), 1, + sym__code_span_close, + ACTIONS(3048), 4, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3049), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(216), 7, - sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(236), 6, + sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3248), 12, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -31876,6 +31509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -31885,30 +31519,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4861] = 6, - ACTIONS(3059), 1, - sym__newline_token, - ACTIONS(3062), 1, - sym__whitespace_ge_2, - ACTIONS(3065), 1, - aux_sym__whitespace_token1, - STATE(859), 2, - sym__whitespace, - sym__soft_line_break, - ACTIONS(2879), 6, + [5305] = 6, + ACTIONS(2884), 1, + sym__word_no_digit, + ACTIONS(3052), 1, + anon_sym_SLASH, + ACTIONS(3055), 1, + sym__last_token_punctuation, + STATE(961), 1, + sym__tag_name, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2866), 43, + aux_sym__whitespace_token1, + ACTIONS(2698), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -31926,7 +31560,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, @@ -31941,54 +31574,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, + sym__whitespace_ge_2, sym__digits, - [4928] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, + [5372] = 13, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(2925), 1, sym__newline_token, - ACTIONS(3055), 1, + ACTIONS(2927), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, + anon_sym_LT_QMARK, + ACTIONS(2931), 1, + aux_sym__declaration_token1, + ACTIONS(2933), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, sym__whitespace_ge_2, - ACTIONS(3057), 1, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3265), 1, + ACTIONS(3059), 1, + sym__code_span_close, + ACTIONS(3057), 4, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3049), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(245), 7, - sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(233), 6, + sym__html_tag, sym__whitespace, sym__word, sym__soft_line_break, sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3207), 12, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -32001,6 +31638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -32010,43 +31648,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5001] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, - sym__newline_token, - ACTIONS(3055), 1, - sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3267), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + [5453] = 3, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(214), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3045), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2941), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -32074,14 +31699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5074] = 5, - ACTIONS(658), 1, sym__newline_token, - ACTIONS(3255), 1, - sym__last_token_punctuation, - STATE(528), 1, - sym__soft_line_break, - ACTIONS(2879), 7, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5514] = 3, + ACTIONS(3061), 1, + sym__last_token_whitespace, + ACTIONS(2975), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32089,13 +31717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(2973), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -32128,22 +31757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [5139] = 6, - ACTIONS(3146), 1, - sym__word_no_digit, - ACTIONS(3246), 1, - sym__last_token_punctuation, - ACTIONS(3269), 1, - anon_sym_SLASH, - STATE(955), 1, - sym__tag_name, - ACTIONS(2879), 7, + [5575] = 3, + ACTIONS(2879), 1, + sym__last_token_whitespace, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32151,13 +31775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(2875), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -32175,6 +31800,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, @@ -32194,53 +31820,38 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, - [5206] = 13, - ACTIONS(3070), 1, + [5636] = 3, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, - ACTIONS(3074), 1, - sym__newline_token, - ACTIONS(3076), 1, + anon_sym_AMP, + anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3078), 1, anon_sym_LT_QMARK, - ACTIONS(3080), 1, aux_sym__declaration_token1, - ACTIONS(3082), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3084), 1, - sym__whitespace_ge_2, - ACTIONS(3086), 1, aux_sym__whitespace_token1, - ACTIONS(3272), 1, - sym__latex_span_close, - ACTIONS(3068), 4, + ACTIONS(2941), 46, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, - sym__word_no_digit, - sym__digits, - STATE(233), 6, - sym__html_tag, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(808), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(3072), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -32253,7 +31864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -32263,43 +31873,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5287] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3276), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [5697] = 3, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(2943), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(251), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3274), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2941), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -32327,43 +31931,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5360] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3278), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [5758] = 3, + ACTIONS(2913), 1, + sym__last_token_punctuation, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(251), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3274), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -32391,43 +31989,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5433] = 9, - ACTIONS(3043), 1, - sym__backslash_escape, - ACTIONS(3053), 1, sym__newline_token, - ACTIONS(3055), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3057), 1, - aux_sym__whitespace_token1, - ACTIONS(3280), 1, - anon_sym_RBRACK, - ACTIONS(3049), 3, + sym__word_no_digit, + sym__digits, + [5819] = 5, + ACTIONS(1120), 1, + sym__newline_token, + ACTIONS(3055), 1, + sym__last_token_punctuation, + STATE(596), 1, + sym__soft_line_break, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(214), 7, - sym_backslash_escape, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3045), 12, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, - sym__digits, - ACTIONS(3051), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -32455,14 +32050,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5506] = 5, - ACTIONS(750), 1, - sym__newline_token, - ACTIONS(3282), 1, - sym__last_token_whitespace, - STATE(446), 1, - sym__soft_line_break, - ACTIONS(3165), 7, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5884] = 3, + ACTIONS(1339), 1, + sym__last_token_punctuation, + ACTIONS(3063), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32470,13 +32067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3163), 44, + ACTIONS(308), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -32509,58 +32107,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [5571] = 13, - ACTIONS(3121), 1, + [5945] = 3, + ACTIONS(3065), 1, + sym__last_token_whitespace, + ACTIONS(2975), 7, anon_sym_LT, - ACTIONS(3125), 1, - sym__newline_token, - ACTIONS(3127), 1, + anon_sym_AMP, + anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3129), 1, anon_sym_LT_QMARK, - ACTIONS(3131), 1, aux_sym__declaration_token1, - ACTIONS(3133), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3135), 1, - sym__whitespace_ge_2, - ACTIONS(3137), 1, aux_sym__whitespace_token1, - ACTIONS(3284), 1, - sym__code_span_close, - ACTIONS(3119), 4, + ACTIONS(2973), 46, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__latex_span_start, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, - sym__word_no_digit, - sym__digits, - STATE(229), 6, - sym__html_tag, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__text_base, - aux_sym_code_span_repeat1, - STATE(815), 6, - sym__open_tag, - sym__closing_tag, - sym__html_comment, - sym__processing_instruction, - sym__declaration, - sym__cdata_section, - ACTIONS(3123), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -32573,7 +32156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -32583,30 +32165,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5652] = 6, - ACTIONS(3059), 1, sym__newline_token, - ACTIONS(3062), 1, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(3065), 1, - aux_sym__whitespace_token1, - STATE(860), 2, - sym__whitespace, - sym__soft_line_break, - ACTIONS(2879), 6, + sym__word_no_digit, + sym__digits, + [6006] = 3, + ACTIONS(1401), 1, + sym__last_token_punctuation, + ACTIONS(3067), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - ACTIONS(2866), 43, + aux_sym__whitespace_token1, + ACTIONS(104), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -32639,40 +32223,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [5719] = 3, - ACTIONS(3211), 1, - sym__last_token_whitespace, - ACTIONS(3165), 7, + [6067] = 13, + ACTIONS(3025), 1, + sym__code_span_close, + ACTIONS(3072), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(3078), 1, + sym__newline_token, + ACTIONS(3081), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(3084), 1, anon_sym_LT_QMARK, + ACTIONS(3087), 1, aux_sym__declaration_token1, + ACTIONS(3090), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3093), 1, + sym__whitespace_ge_2, + ACTIONS(3096), 1, aux_sym__whitespace_token1, - ACTIONS(3163), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3069), 4, anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(250), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(3075), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -32685,6 +32288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -32694,42 +32298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [5779] = 3, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + [6148] = 13, + ACTIONS(2921), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(2925), 1, + sym__newline_token, + ACTIONS(2927), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, anon_sym_LT_QMARK, + ACTIONS(2931), 1, aux_sym__declaration_token1, + ACTIONS(2933), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, + sym__whitespace_ge_2, + ACTIONS(2937), 1, aux_sym__whitespace_token1, - ACTIONS(3286), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__strikethrough_close, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3101), 1, + sym__code_span_close, + ACTIONS(3099), 4, anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(257), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -32742,6 +32356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -32751,17 +32366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [6229] = 5, + ACTIONS(1120), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [5839] = 3, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + ACTIONS(3103), 1, + sym__last_token_whitespace, + STATE(596), 1, + sym__soft_line_break, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32769,13 +32381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 45, + ACTIONS(2875), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -32808,17 +32420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [5899] = 3, - ACTIONS(3294), 1, - sym__last_token_whitespace, - ACTIONS(3292), 7, + [6294] = 4, + ACTIONS(2908), 1, + sym__last_token_punctuation, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32826,17 +32439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3290), 45, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -32872,10 +32485,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [5959] = 3, - ACTIONS(1401), 1, + [6357] = 3, + ACTIONS(2908), 1, sym__last_token_punctuation, - ACTIONS(3296), 7, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32883,13 +32496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(308), 45, + ACTIONS(2698), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -32929,35 +32543,120 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6019] = 3, - ACTIONS(3167), 1, - sym__last_token_whitespace, - ACTIONS(3165), 7, + [6418] = 13, + ACTIONS(2953), 1, anon_sym_LT, + ACTIONS(2957), 1, + sym__newline_token, + ACTIONS(2959), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2961), 1, + anon_sym_LT_QMARK, + ACTIONS(2963), 1, + aux_sym__declaration_token1, + ACTIONS(2965), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2967), 1, + sym__whitespace_ge_2, + ACTIONS(2969), 1, + aux_sym__whitespace_token1, + ACTIONS(3108), 1, + sym__latex_span_close, + ACTIONS(2951), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(228), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(778), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2955), 29, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, + 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_QMARK, + anon_sym_AT, 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_LPAREN, + anon_sym_RPAREN, + [6499] = 13, + ACTIONS(2953), 1, + anon_sym_LT, + ACTIONS(2957), 1, + sym__newline_token, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2961), 1, anon_sym_LT_QMARK, + ACTIONS(2963), 1, aux_sym__declaration_token1, + ACTIONS(2965), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2967), 1, + sym__whitespace_ge_2, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(3163), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3112), 1, + sym__latex_span_close, + ACTIONS(3110), 4, anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(261), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(778), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -32970,6 +32669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -32979,19 +32679,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [6580] = 13, + ACTIONS(2921), 1, + anon_sym_LT, + ACTIONS(2925), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, + ACTIONS(2927), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2929), 1, + anon_sym_LT_QMARK, + ACTIONS(2931), 1, + aux_sym__declaration_token1, + ACTIONS(2933), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2935), 1, sym__whitespace_ge_2, + ACTIONS(2937), 1, + aux_sym__whitespace_token1, + ACTIONS(3114), 1, + sym__code_span_close, + ACTIONS(2919), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, sym__word_no_digit, sym__digits, - [6079] = 4, - ACTIONS(3255), 1, + STATE(250), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(820), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2923), 29, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + 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_QMARK, + anon_sym_AT, + 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_LPAREN, + anon_sym_RPAREN, + [6661] = 3, + ACTIONS(1463), 1, sym__last_token_punctuation, - ACTIONS(3298), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + ACTIONS(3116), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -32999,16 +32758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(114), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -33044,10 +32805,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6141] = 3, - ACTIONS(3246), 1, - sym__last_token_punctuation, - ACTIONS(2879), 7, + [6722] = 3, + ACTIONS(2915), 1, + sym__last_token_whitespace, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33055,13 +32816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 45, + ACTIONS(2875), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33101,36 +32863,52 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6201] = 4, - ACTIONS(3169), 1, - sym__last_token_punctuation, - ACTIONS(3301), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [6783] = 13, + ACTIONS(2953), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(2957), 1, + sym__newline_token, + ACTIONS(2959), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2961), 1, anon_sym_LT_QMARK, + ACTIONS(2963), 1, aux_sym__declaration_token1, + ACTIONS(2965), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2967), 1, + sym__whitespace_ge_2, + ACTIONS(2969), 1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3120), 1, + sym__latex_span_close, + ACTIONS(3118), 4, + anon_sym_LBRACK, anon_sym_RBRACK, + sym__word_no_digit, + sym__digits, + STATE(215), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(778), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2955), 29, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -33143,6 +32921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -33152,17 +32931,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [6864] = 13, + ACTIONS(2953), 1, + anon_sym_LT, + ACTIONS(2957), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, + ACTIONS(2959), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(2961), 1, + anon_sym_LT_QMARK, + ACTIONS(2963), 1, + aux_sym__declaration_token1, + ACTIONS(2965), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2967), 1, sym__whitespace_ge_2, + ACTIONS(2969), 1, + aux_sym__whitespace_token1, + ACTIONS(3122), 1, + sym__latex_span_close, + ACTIONS(2951), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, sym__word_no_digit, sym__digits, - [6263] = 3, - ACTIONS(3282), 1, - sym__last_token_whitespace, - ACTIONS(3165), 7, + STATE(228), 6, + sym__html_tag, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + aux_sym_code_span_repeat1, + STATE(778), 6, + sym__open_tag, + sym__closing_tag, + sym__html_comment, + sym__processing_instruction, + sym__declaration, + sym__cdata_section, + ACTIONS(2955), 29, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + 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_QMARK, + anon_sym_AT, + 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_LPAREN, + anon_sym_RPAREN, + [6945] = 2, + ACTIONS(3126), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33170,13 +33008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3163), 45, + ACTIONS(3124), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33216,10 +33055,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6323] = 3, - ACTIONS(3304), 1, - sym__last_token_whitespace, - ACTIONS(3292), 7, + [7003] = 2, + ACTIONS(3130), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33227,13 +33064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3290), 45, + ACTIONS(3128), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33273,10 +33111,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6383] = 3, - ACTIONS(3306), 1, - sym__last_token_whitespace, - ACTIONS(3292), 7, + [7061] = 2, + ACTIONS(3134), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33284,13 +33120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3290), 45, + ACTIONS(3132), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33330,10 +33167,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6443] = 3, - ACTIONS(3255), 1, - sym__last_token_punctuation, - ACTIONS(2879), 7, + [7119] = 3, + ACTIONS(3138), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3141), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33341,17 +33179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 45, + ACTIONS(3136), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -33378,7 +33216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -33387,12 +33224,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6503] = 4, - ACTIONS(3246), 1, - sym__last_token_punctuation, - ACTIONS(3308), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [7179] = 2, + ACTIONS(3145), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33400,16 +33233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(3143), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -33445,10 +33280,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6565] = 3, - ACTIONS(3169), 1, - sym__last_token_punctuation, - ACTIONS(2879), 7, + [7237] = 3, + ACTIONS(3149), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33456,17 +33292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 45, + ACTIONS(3147), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -33493,7 +33329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -33502,14 +33337,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6625] = 5, - ACTIONS(1120), 1, - sym__newline_token, - ACTIONS(3311), 1, - sym__last_token_punctuation, - STATE(596), 1, - sym__soft_line_break, - ACTIONS(2879), 7, + [7297] = 3, + ACTIONS(3158), 1, + sym__emphasis_close_underscore, + ACTIONS(3156), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33517,12 +33348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(3154), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33555,95 +33387,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym_uri_autolink, sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6689] = 3, - ACTIONS(3313), 1, - sym__last_token_whitespace, - ACTIONS(3292), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3290), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__strikethrough_close, - sym__latex_span_start, + [7357] = 9, + ACTIONS(3161), 1, sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, + ACTIONS(3165), 1, anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, + ACTIONS(3171), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3173), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [6749] = 5, - ACTIONS(1120), 1, - sym__newline_token, - ACTIONS(3315), 1, - sym__last_token_whitespace, - STATE(596), 1, - sym__soft_line_break, - ACTIONS(3165), 7, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3163), 43, - sym__code_span_start, + STATE(300), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3163), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -33671,16 +33457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [6813] = 3, - ACTIONS(1471), 1, + [7429] = 4, + ACTIONS(2913), 1, sym__last_token_punctuation, - ACTIONS(3288), 7, + ACTIONS(3177), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33688,18 +33470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 45, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -33734,10 +33515,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6873] = 3, - ACTIONS(3261), 1, - sym__last_token_whitespace, - ACTIONS(3165), 7, + [7491] = 3, + ACTIONS(3183), 1, + sym__emphasis_close_star, + ACTIONS(3181), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33745,13 +33526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3163), 45, + ACTIONS(3179), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33791,10 +33572,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6933] = 3, - ACTIONS(1463), 1, - sym__last_token_punctuation, - ACTIONS(3317), 7, + [7551] = 2, + ACTIONS(3188), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33802,13 +33581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(104), 45, + ACTIONS(3186), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -33848,29 +33628,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6993] = 3, - ACTIONS(1277), 1, - sym__last_token_punctuation, - ACTIONS(3319), 7, + [7609] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3190), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(565), 45, - sym__code_span_start, + STATE(300), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3163), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -33898,19 +33691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [7053] = 4, - ACTIONS(3149), 1, - sym__last_token_punctuation, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [7681] = 2, + ACTIONS(3194), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33918,16 +33700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(3192), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -33963,10 +33747,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7115] = 3, - ACTIONS(3149), 1, - sym__last_token_punctuation, - ACTIONS(2879), 7, + [7739] = 2, + ACTIONS(3198), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -33974,12 +33756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 45, + ACTIONS(3196), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -34020,12 +33803,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7175] = 4, - ACTIONS(114), 1, - anon_sym_RBRACK, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + [7797] = 2, + ACTIONS(3202), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34033,17 +33812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 44, + ACTIONS(3200), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -34078,16 +33859,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7237] = 6, - ACTIONS(3146), 1, - sym__word_no_digit, - ACTIONS(3311), 1, - sym__last_token_punctuation, - ACTIONS(3324), 1, - anon_sym_SLASH, - STATE(958), 1, - sym__tag_name, - ACTIONS(2879), 7, + [7855] = 2, + ACTIONS(3206), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34095,12 +33868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 42, + ACTIONS(3204), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -34118,6 +33893,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, @@ -34137,71 +33913,10 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - sym__digits, - [7303] = 6, - ACTIONS(3059), 1, - sym__newline_token, - ACTIONS(3062), 1, - sym__whitespace_ge_2, - ACTIONS(3065), 1, - aux_sym__whitespace_token1, - STATE(862), 2, - sym__whitespace, - sym__soft_line_break, - ACTIONS(2879), 6, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - ACTIONS(2866), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__word_no_digit, sym__digits, - [7369] = 3, - ACTIONS(1339), 1, - sym__last_token_punctuation, - ACTIONS(3327), 7, + [7913] = 2, + ACTIONS(3210), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34209,12 +33924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(114), 45, + ACTIONS(3208), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -34255,12 +33971,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7429] = 4, - ACTIONS(114), 1, - anon_sym_RBRACK, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + [7971] = 3, + ACTIONS(3103), 1, + sym__last_token_whitespace, + ACTIONS(2877), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34268,17 +33982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 44, + ACTIONS(2875), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -34313,12 +34028,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7491] = 4, - ACTIONS(114), 1, - anon_sym_RBRACK, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + [8031] = 2, + ACTIONS(3214), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34326,17 +34037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 44, + ACTIONS(3212), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -34371,10 +34084,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7553] = 3, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + [8089] = 2, + ACTIONS(3218), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34382,12 +34093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 45, + ACTIONS(3216), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -34428,8 +34140,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7613] = 2, - ACTIONS(3331), 7, + [8147] = 3, + ACTIONS(3220), 1, + sym__emphasis_close_star, + ACTIONS(3181), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34437,13 +34151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3329), 45, + ACTIONS(3179), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -34483,8 +34197,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7670] = 2, - ACTIONS(3335), 7, + [8207] = 2, + ACTIONS(3225), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34492,12 +34206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3333), 45, + ACTIONS(3223), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -34538,11 +34253,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7727] = 3, - ACTIONS(3339), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3342), 7, + [8265] = 2, + ACTIONS(3181), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34550,16 +34262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3337), 43, + ACTIONS(3179), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -34586,6 +34300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -34594,8 +34309,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7786] = 2, - ACTIONS(3346), 7, + [8323] = 3, + ACTIONS(3227), 1, + sym__last_token_whitespace, + ACTIONS(2975), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34603,13 +34320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3344), 45, + ACTIONS(2973), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -34649,11 +34366,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7843] = 3, - ACTIONS(3350), 2, + [8383] = 4, + ACTIONS(2887), 1, + sym__last_token_punctuation, + ACTIONS(3229), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3353), 7, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34661,17 +34379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 43, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -34697,6 +34415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -34705,8 +34424,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7902] = 2, - ACTIONS(3357), 7, + [8445] = 2, + ACTIONS(3233), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34714,12 +34433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3355), 45, + ACTIONS(3231), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -34760,82 +34480,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7959] = 2, - ACTIONS(3361), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3359), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, + [8503] = 9, + ACTIONS(3161), 1, sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, + ACTIONS(3171), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3173), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8016] = 2, - ACTIONS(3365), 7, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3237), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3363), 45, - sym__code_span_start, + STATE(337), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3235), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -34863,15 +34543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8073] = 2, - ACTIONS(3369), 7, + [8575] = 3, + ACTIONS(3055), 1, + sym__last_token_punctuation, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34879,13 +34554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3367), 45, + ACTIONS(2698), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -34925,8 +34600,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8130] = 2, - ACTIONS(3373), 7, + [8635] = 2, + ACTIONS(3156), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34934,13 +34609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3371), 45, + ACTIONS(3154), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -34980,8 +34656,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8187] = 2, - ACTIONS(3377), 7, + [8693] = 3, + ACTIONS(3239), 1, + sym__emphasis_close_underscore, + ACTIONS(3156), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -34989,13 +34667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3375), 45, + ACTIONS(3154), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -35035,10 +34713,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8244] = 3, - ACTIONS(3383), 1, - sym__emphasis_close_star, - ACTIONS(3381), 7, + [8753] = 2, + ACTIONS(3244), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35046,12 +34722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3379), 44, + ACTIONS(3242), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -35091,8 +34769,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8303] = 2, - ACTIONS(3381), 7, + [8811] = 2, + ACTIONS(3248), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35100,13 +34778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3379), 45, + ACTIONS(3246), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -35146,8 +34825,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8360] = 2, - ACTIONS(3388), 7, + [8869] = 2, + ACTIONS(3252), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35155,13 +34834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3386), 45, + ACTIONS(3250), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -35201,8 +34881,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8417] = 2, - ACTIONS(3392), 7, + [8927] = 2, + ACTIONS(3256), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35210,12 +34890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3390), 45, + ACTIONS(3254), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35256,10 +34937,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8474] = 3, - ACTIONS(3394), 1, - sym__emphasis_close_underscore, - ACTIONS(3388), 7, + [8985] = 2, + ACTIONS(3260), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35267,12 +34946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3386), 44, + ACTIONS(3258), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -35312,8 +34993,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8533] = 2, - ACTIONS(3399), 7, + [9043] = 2, + ACTIONS(3264), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35321,13 +35002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3397), 45, + ACTIONS(3262), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -35367,8 +35049,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8590] = 2, - ACTIONS(3403), 7, + [9101] = 2, + ACTIONS(3268), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35376,12 +35058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3401), 45, + ACTIONS(3266), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35422,8 +35105,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8647] = 2, - ACTIONS(3407), 7, + [9159] = 2, + ACTIONS(3272), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35431,12 +35114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3405), 45, + ACTIONS(3270), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35477,27 +35161,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8704] = 2, - ACTIONS(3411), 7, + [9217] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3274), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3409), 45, - sym__code_span_start, + STATE(337), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3235), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -35525,15 +35224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8761] = 2, - ACTIONS(3415), 7, + [9289] = 2, + ACTIONS(3278), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35541,12 +35233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3413), 45, + ACTIONS(3276), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35587,27 +35280,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8818] = 2, - ACTIONS(3419), 7, + [9347] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3282), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3417), 45, - sym__code_span_start, + STATE(288), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3280), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -35635,15 +35343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8875] = 2, - ACTIONS(3423), 7, + [9419] = 2, + ACTIONS(3130), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35651,12 +35352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3421), 45, + ACTIONS(3128), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35697,8 +35399,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8932] = 2, - ACTIONS(3427), 7, + [9477] = 4, + ACTIONS(3055), 1, + sym__last_token_punctuation, + ACTIONS(3284), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35706,17 +35412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3425), 45, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -35752,27 +35457,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8989] = 2, - ACTIONS(3431), 7, + [9539] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3287), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3429), 45, - sym__code_span_start, + STATE(288), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3280), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -35800,15 +35520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [9046] = 2, - ACTIONS(3435), 7, + [9611] = 2, + ACTIONS(3291), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35816,12 +35529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3433), 45, + ACTIONS(3289), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35862,8 +35576,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9103] = 2, - ACTIONS(3439), 7, + [9669] = 2, + ACTIONS(3295), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35871,12 +35585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3437), 45, + ACTIONS(3293), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35917,8 +35632,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9160] = 2, - ACTIONS(3443), 7, + [9727] = 2, + ACTIONS(3299), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35926,12 +35641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3441), 45, + ACTIONS(3297), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -35972,8 +35688,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9217] = 2, - ACTIONS(3447), 7, + [9785] = 2, + ACTIONS(3303), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -35981,12 +35697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3445), 45, + ACTIONS(3301), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36027,10 +35744,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9274] = 3, - ACTIONS(3449), 1, - sym__emphasis_close_underscore, - ACTIONS(3388), 7, + [9843] = 2, + ACTIONS(3307), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36038,12 +35753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3386), 44, + ACTIONS(3305), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36083,8 +35800,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9333] = 2, - ACTIONS(3454), 7, + [9901] = 2, + ACTIONS(3311), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36092,12 +35809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3452), 45, + ACTIONS(3309), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36138,8 +35856,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9390] = 2, - ACTIONS(3458), 7, + [9959] = 3, + ACTIONS(3313), 1, + sym__emphasis_close_underscore, + ACTIONS(3156), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36147,13 +35867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3456), 45, + ACTIONS(3154), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36193,10 +35913,73 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9447] = 3, - ACTIONS(3460), 1, + [10019] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3318), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(474), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3316), 11, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, + [10091] = 3, + ACTIONS(3320), 1, sym__emphasis_close_star, - ACTIONS(3381), 7, + ACTIONS(3181), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36204,12 +35987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3379), 44, + ACTIONS(3179), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36249,8 +36033,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9506] = 2, - ACTIONS(3465), 7, + [10151] = 2, + ACTIONS(3325), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36258,12 +36042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3463), 45, + ACTIONS(3323), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36304,8 +36089,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9563] = 2, - ACTIONS(3469), 7, + [10209] = 2, + ACTIONS(3329), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36313,12 +36098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3467), 45, + ACTIONS(3327), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36359,8 +36145,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9620] = 2, - ACTIONS(3473), 7, + [10267] = 3, + ACTIONS(3331), 1, + sym__emphasis_close_star, + ACTIONS(3181), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36368,13 +36156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3471), 45, + ACTIONS(3179), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36414,8 +36202,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9677] = 2, - ACTIONS(3477), 7, + [10327] = 2, + ACTIONS(3336), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36423,12 +36211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3475), 45, + ACTIONS(3334), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36469,8 +36258,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9734] = 2, - ACTIONS(3481), 7, + [10385] = 4, + ACTIONS(2892), 1, + sym__last_token_punctuation, + ACTIONS(3338), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36478,18 +36271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3479), 45, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -36524,8 +36316,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9791] = 2, - ACTIONS(3485), 7, + [10447] = 3, + ACTIONS(3340), 1, + sym__emphasis_close_underscore, + ACTIONS(3156), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36533,13 +36327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3483), 45, + ACTIONS(3154), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36579,8 +36373,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9848] = 2, - ACTIONS(3489), 7, + [10507] = 2, + ACTIONS(3264), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36588,13 +36382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3487), 45, + ACTIONS(3262), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36634,8 +36429,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9905] = 2, - ACTIONS(3493), 7, + [10565] = 2, + ACTIONS(3260), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36643,13 +36438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3491), 45, + ACTIONS(3258), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36689,8 +36485,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9962] = 2, - ACTIONS(3497), 7, + [10623] = 2, + ACTIONS(3202), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36698,13 +36494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3495), 45, + ACTIONS(3200), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36744,8 +36541,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10019] = 2, - ACTIONS(3501), 7, + [10681] = 2, + ACTIONS(3206), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36753,13 +36550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3499), 45, + ACTIONS(3204), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36799,8 +36597,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10076] = 2, - ACTIONS(3505), 7, + [10739] = 2, + ACTIONS(3210), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36808,13 +36606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3503), 45, + ACTIONS(3208), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -36854,8 +36653,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10133] = 2, - ACTIONS(3509), 7, + [10797] = 2, + ACTIONS(3345), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36863,12 +36662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3507), 45, + ACTIONS(3343), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36909,8 +36709,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10190] = 2, - ACTIONS(3513), 7, + [10855] = 2, + ACTIONS(3349), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36918,12 +36718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3511), 45, + ACTIONS(3347), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -36964,8 +36765,71 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10247] = 2, - ACTIONS(3517), 7, + [10913] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3353), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(361), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3351), 11, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, + [10985] = 2, + ACTIONS(3357), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -36973,13 +36837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3515), 45, + ACTIONS(3355), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37019,10 +36884,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10304] = 3, - ACTIONS(3519), 1, - sym__emphasis_close_underscore, - ACTIONS(3388), 7, + [11043] = 2, + ACTIONS(3361), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37030,12 +36893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3386), 44, + ACTIONS(3359), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37075,10 +36940,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10363] = 3, - ACTIONS(3522), 1, - sym__emphasis_close_star, - ACTIONS(3381), 7, + [11101] = 2, + ACTIONS(3365), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37086,12 +36949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3379), 44, + ACTIONS(3363), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37131,13 +36996,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10422] = 4, + [11159] = 3, ACTIONS(1471), 1, sym__last_token_punctuation, - ACTIONS(3525), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3327), 7, + ACTIONS(2943), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37145,15 +37007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(114), 42, + ACTIONS(2941), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -37180,6 +37044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -37188,8 +37053,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10483] = 2, - ACTIONS(3529), 7, + [11219] = 3, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(3116), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37197,13 +37064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3527), 45, + ACTIONS(114), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37243,8 +37110,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10540] = 2, - ACTIONS(3533), 7, + [11279] = 2, + ACTIONS(3369), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37252,13 +37119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3531), 45, + ACTIONS(3367), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37298,8 +37166,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10597] = 2, - ACTIONS(3537), 7, + [11337] = 2, + ACTIONS(3373), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37307,13 +37175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3535), 45, + ACTIONS(3371), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37353,27 +37222,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10654] = 2, - ACTIONS(3331), 7, + [11395] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3375), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3329), 45, - sym__code_span_start, + STATE(361), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3351), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -37401,15 +37285,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [11467] = 9, + ACTIONS(3377), 1, + sym__backslash_escape, + ACTIONS(3383), 1, + anon_sym_RBRACK, + ACTIONS(3391), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3394), 1, sym__whitespace_ge_2, + ACTIONS(3397), 1, + aux_sym__whitespace_token1, + ACTIONS(3385), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(337), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3380), 11, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__word_no_digit, sym__digits, - [10711] = 2, - ACTIONS(3541), 7, + ACTIONS(3388), 27, + anon_sym_GT, + 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_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_LPAREN, + anon_sym_RPAREN, + [11539] = 2, + ACTIONS(3126), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37417,13 +37357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3539), 45, + ACTIONS(3124), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37463,8 +37404,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10768] = 2, - ACTIONS(3435), 7, + [11597] = 2, + ACTIONS(3402), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37472,13 +37413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3433), 45, + ACTIONS(3400), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37518,10 +37460,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10825] = 3, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3327), 7, + [11655] = 2, + ACTIONS(3406), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37529,12 +37469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(114), 44, + ACTIONS(3404), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37574,8 +37516,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10884] = 2, - ACTIONS(3545), 7, + [11713] = 2, + ACTIONS(3410), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37583,13 +37525,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3543), 45, + ACTIONS(3408), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37629,8 +37572,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10941] = 2, - ACTIONS(3549), 7, + [11771] = 2, + ACTIONS(3414), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37638,13 +37581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3547), 45, + ACTIONS(3412), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37684,8 +37628,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10998] = 2, - ACTIONS(3553), 7, + [11829] = 2, + ACTIONS(3365), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37693,12 +37637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3551), 45, + ACTIONS(3363), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -37739,10 +37684,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11055] = 3, - ACTIONS(3555), 1, - sym__emphasis_close_underscore, - ACTIONS(3388), 7, + [11887] = 2, + ACTIONS(3311), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37750,12 +37693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3386), 44, + ACTIONS(3309), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37795,10 +37740,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11114] = 3, - ACTIONS(3558), 1, - sym__emphasis_close_star, - ACTIONS(3381), 7, + [11945] = 3, + ACTIONS(3138), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3141), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37806,16 +37752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3379), 44, + ACTIONS(3136), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -37842,7 +37789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -37851,8 +37797,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11173] = 2, - ACTIONS(3563), 7, + [12005] = 2, + ACTIONS(3145), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37860,13 +37806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3561), 45, + ACTIONS(3143), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -37906,8 +37853,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11230] = 2, - ACTIONS(3567), 7, + [12063] = 3, + ACTIONS(3149), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37915,17 +37865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3565), 45, + ACTIONS(3147), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -37952,7 +37902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -37961,8 +37910,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11287] = 2, - ACTIONS(3571), 7, + [12123] = 2, + ACTIONS(3188), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -37970,13 +37919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3569), 45, + ACTIONS(3186), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38016,83 +37966,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11344] = 3, - ACTIONS(3339), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3342), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3337), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, + [12181] = 9, + ACTIONS(3161), 1, sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_RBRACK, - anon_sym_GT, - 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_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_RPAREN, + ACTIONS(3171), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3173), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [11403] = 2, - ACTIONS(3346), 7, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3416), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3344), 45, - sym__code_span_start, + STATE(337), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3235), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -38120,18 +38029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [11460] = 3, - ACTIONS(3350), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3353), 7, + [12253] = 2, + ACTIONS(3307), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38139,16 +38038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 43, + ACTIONS(3305), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -38175,6 +38076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -38183,8 +38085,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11519] = 2, - ACTIONS(3357), 7, + [12311] = 2, + ACTIONS(3299), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38192,13 +38094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3355), 45, + ACTIONS(3297), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38238,8 +38141,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11576] = 2, - ACTIONS(3575), 7, + [12369] = 2, + ACTIONS(3295), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38247,13 +38150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3573), 45, + ACTIONS(3293), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38293,8 +38197,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11633] = 2, - ACTIONS(3579), 7, + [12427] = 2, + ACTIONS(3218), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38302,13 +38206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3577), 45, + ACTIONS(3216), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38348,8 +38253,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11690] = 2, - ACTIONS(3583), 7, + [12485] = 2, + ACTIONS(3248), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38357,13 +38262,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3581), 45, + ACTIONS(3246), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38403,8 +38309,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11747] = 2, - ACTIONS(3373), 7, + [12543] = 2, + ACTIONS(3278), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38412,13 +38318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3371), 45, + ACTIONS(3276), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38458,8 +38365,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11804] = 2, - ACTIONS(3403), 7, + [12601] = 2, + ACTIONS(3256), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38467,13 +38374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3401), 45, + ACTIONS(3254), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38513,10 +38421,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11861] = 3, - ACTIONS(3585), 1, - sym__emphasis_close_underscore, - ACTIONS(3388), 7, + [12659] = 2, + ACTIONS(3272), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38524,12 +38430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3386), 44, + ACTIONS(3270), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38569,10 +38477,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11920] = 3, - ACTIONS(3588), 1, - sym__emphasis_close_star, - ACTIONS(3381), 7, + [12717] = 2, + ACTIONS(3357), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38580,12 +38486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3379), 44, + ACTIONS(3355), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38625,8 +38533,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11979] = 2, - ACTIONS(3415), 7, + [12775] = 2, + ACTIONS(3194), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38634,13 +38542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3413), 45, + ACTIONS(3192), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38680,8 +38589,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12036] = 2, - ACTIONS(3593), 7, + [12833] = 2, + ACTIONS(3420), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38689,12 +38598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3591), 45, + ACTIONS(3418), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -38735,27 +38645,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12093] = 2, - ACTIONS(3597), 7, + [12891] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3422), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3595), 45, - sym__code_span_start, + STATE(337), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3235), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - ts_builtin_sym_end, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -38783,15 +38708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [12150] = 2, - ACTIONS(3601), 7, + [12963] = 2, + ACTIONS(3426), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38799,12 +38717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3599), 45, + ACTIONS(3424), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, @@ -38845,12 +38764,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12207] = 4, - ACTIONS(3311), 1, - sym__last_token_punctuation, - ACTIONS(3603), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [13021] = 2, + ACTIONS(3361), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38858,15 +38773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(3359), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -38902,8 +38820,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12268] = 2, - ACTIONS(3608), 7, + [13079] = 2, + ACTIONS(3325), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38911,13 +38829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 45, + ACTIONS(3323), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -38957,12 +38876,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12325] = 4, - ACTIONS(3255), 1, - sym__last_token_punctuation, - ACTIONS(3610), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [13137] = 2, + ACTIONS(3420), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -38970,16 +38885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(3418), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -39014,8 +38932,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12386] = 2, - ACTIONS(3447), 7, + [13195] = 2, + ACTIONS(3430), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39023,13 +38941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3445), 45, + ACTIONS(3428), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39069,8 +38988,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12443] = 2, - ACTIONS(3458), 7, + [13253] = 2, + ACTIONS(3434), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39078,13 +38997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3456), 45, + ACTIONS(3432), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39124,8 +39044,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12500] = 2, - ACTIONS(3469), 7, + [13311] = 2, + ACTIONS(3426), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39133,13 +39053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3467), 45, + ACTIONS(3424), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39179,8 +39100,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12557] = 2, - ACTIONS(3477), 7, + [13369] = 2, + ACTIONS(3438), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39188,13 +39109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3475), 45, + ACTIONS(3436), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39234,8 +39156,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12614] = 2, - ACTIONS(3481), 7, + [13427] = 2, + ACTIONS(3434), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39243,13 +39165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3479), 45, + ACTIONS(3432), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39289,8 +39212,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12671] = 2, - ACTIONS(3489), 7, + [13485] = 2, + ACTIONS(3438), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39298,13 +39221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3487), 45, + ACTIONS(3436), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39344,8 +39268,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12728] = 2, - ACTIONS(3493), 7, + [13543] = 2, + ACTIONS(3442), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39353,13 +39277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3491), 45, + ACTIONS(3440), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39399,8 +39324,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12785] = 2, - ACTIONS(3501), 7, + [13601] = 2, + ACTIONS(3446), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39408,13 +39333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3499), 45, + ACTIONS(3444), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39454,8 +39380,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12842] = 2, - ACTIONS(3509), 7, + [13659] = 2, + ACTIONS(3450), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39463,13 +39389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3507), 45, + ACTIONS(3448), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39509,8 +39436,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12899] = 2, - ACTIONS(3529), 7, + [13717] = 2, + ACTIONS(3454), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39518,13 +39445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3527), 45, + ACTIONS(3452), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39564,8 +39492,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12956] = 2, - ACTIONS(3614), 7, + [13775] = 2, + ACTIONS(3458), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39573,13 +39501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3612), 45, + ACTIONS(3456), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39619,10 +39548,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13013] = 3, - ACTIONS(3315), 1, - sym__last_token_whitespace, - ACTIONS(3165), 7, + [13833] = 2, + ACTIONS(3462), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39630,12 +39557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3163), 44, + ACTIONS(3460), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39675,10 +39604,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13072] = 3, - ACTIONS(3616), 1, - sym__last_token_whitespace, - ACTIONS(3292), 7, + [13891] = 2, + ACTIONS(3369), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39686,12 +39613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3290), 44, + ACTIONS(3367), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39731,12 +39660,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13131] = 4, - ACTIONS(3246), 1, - sym__last_token_punctuation, - ACTIONS(3618), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [13949] = 2, + ACTIONS(3442), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39744,16 +39669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(3440), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -39788,10 +39716,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13192] = 3, - ACTIONS(3311), 1, - sym__last_token_punctuation, - ACTIONS(2879), 7, + [14007] = 2, + ACTIONS(3446), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39799,12 +39725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 44, + ACTIONS(3444), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -39844,29 +39772,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13251] = 4, - ACTIONS(3169), 1, - sym__last_token_punctuation, - ACTIONS(3620), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [14065] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3466), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(2866), 43, - sym__code_span_start, + STATE(349), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3464), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -39894,15 +39835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [13312] = 2, - ACTIONS(3431), 7, + [14137] = 4, + ACTIONS(3055), 1, + sym__last_token_punctuation, + ACTIONS(3468), 1, + anon_sym_LBRACK, + ACTIONS(2713), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -39910,17 +39848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3429), 45, + ACTIONS(2698), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -39956,247 +39893,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13369] = 2, - ACTIONS(3553), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3551), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, + [14199] = 9, + ACTIONS(3161), 1, sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, + ACTIONS(3171), 1, sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3173), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [13426] = 2, - ACTIONS(3563), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, + ACTIONS(3175), 1, aux_sym__whitespace_token1, - ACTIONS(3561), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, + ACTIONS(3470), 1, anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [13483] = 2, - ACTIONS(3567), 7, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3565), 45, - sym__code_span_start, + STATE(349), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3464), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [13540] = 2, - ACTIONS(3571), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3569), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - 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_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_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13597] = 2, - ACTIONS(3575), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3573), 45, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -40224,15 +39956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [13654] = 2, - ACTIONS(3579), 7, + [14271] = 2, + ACTIONS(3474), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40240,13 +39965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3577), 45, + ACTIONS(3472), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40286,8 +40012,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13711] = 2, - ACTIONS(3583), 7, + [14329] = 2, + ACTIONS(3478), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40295,13 +40021,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3581), 45, + ACTIONS(3476), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40341,8 +40068,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13768] = 2, - ACTIONS(3427), 7, + [14387] = 2, + ACTIONS(3482), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40350,13 +40077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3425), 45, + ACTIONS(3480), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40396,8 +40124,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13825] = 2, - ACTIONS(3624), 7, + [14445] = 2, + ACTIONS(3486), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40405,13 +40133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 45, + ACTIONS(3484), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40451,8 +40180,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13882] = 2, - ACTIONS(3628), 7, + [14503] = 2, + ACTIONS(3490), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40460,13 +40189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 45, + ACTIONS(3488), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40506,8 +40236,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13939] = 2, - ACTIONS(3632), 7, + [14561] = 2, + ACTIONS(3494), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40515,13 +40245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 45, + ACTIONS(3492), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40561,8 +40292,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13996] = 2, - ACTIONS(3608), 7, + [14619] = 2, + ACTIONS(3498), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40570,13 +40301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 45, + ACTIONS(3496), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40616,8 +40348,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14053] = 2, - ACTIONS(3601), 7, + [14677] = 2, + ACTIONS(3502), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40625,13 +40357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3599), 45, + ACTIONS(3500), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40671,10 +40404,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14110] = 3, - ACTIONS(1471), 1, - sym__last_token_punctuation, - ACTIONS(3288), 7, + [14735] = 2, + ACTIONS(3450), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40682,12 +40413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3286), 44, + ACTIONS(3448), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40727,8 +40460,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14169] = 2, - ACTIONS(3597), 7, + [14793] = 2, + ACTIONS(3349), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40736,13 +40469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3595), 45, + ACTIONS(3347), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40782,8 +40516,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14226] = 2, - ACTIONS(3593), 7, + [14851] = 2, + ACTIONS(3345), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40791,13 +40525,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3591), 45, + ACTIONS(3343), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40837,8 +40572,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14283] = 2, - ACTIONS(3549), 7, + [14909] = 2, + ACTIONS(3336), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40846,13 +40581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3547), 45, + ACTIONS(3334), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40892,8 +40628,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14340] = 2, - ACTIONS(3545), 7, + [14967] = 2, + ACTIONS(3329), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40901,13 +40637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3543), 45, + ACTIONS(3327), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -40947,8 +40684,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14397] = 2, - ACTIONS(3614), 7, + [15025] = 2, + ACTIONS(3373), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -40956,13 +40693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3612), 45, + ACTIONS(3371), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41002,8 +40740,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14454] = 2, - ACTIONS(3636), 7, + [15083] = 2, + ACTIONS(3291), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41011,13 +40749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 45, + ACTIONS(3289), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41057,8 +40796,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14511] = 2, - ACTIONS(3640), 7, + [15141] = 2, + ACTIONS(3498), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41066,13 +40805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 45, + ACTIONS(3496), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41112,8 +40852,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14568] = 2, - ACTIONS(3537), 7, + [15199] = 2, + ACTIONS(3264), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41121,13 +40861,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3535), 45, + ACTIONS(3262), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41167,8 +40908,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14625] = 2, - ACTIONS(3533), 7, + [15257] = 2, + ACTIONS(3260), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41176,13 +40917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3531), 45, + ACTIONS(3258), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41222,8 +40964,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14682] = 2, - ACTIONS(3335), 7, + [15315] = 2, + ACTIONS(3134), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41231,13 +40973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3333), 45, + ACTIONS(3132), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41277,8 +41020,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14739] = 2, - ACTIONS(3443), 7, + [15373] = 2, + ACTIONS(3303), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41286,13 +41029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3441), 45, + ACTIONS(3301), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41332,8 +41076,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14796] = 2, - ACTIONS(3439), 7, + [15431] = 2, + ACTIONS(3268), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41341,13 +41085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3437), 45, + ACTIONS(3266), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41387,8 +41132,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14853] = 2, - ACTIONS(3517), 7, + [15489] = 2, + ACTIONS(3233), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41396,13 +41141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3515), 45, + ACTIONS(3231), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41442,8 +41188,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14910] = 2, - ACTIONS(3377), 7, + [15547] = 2, + ACTIONS(3225), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41451,13 +41197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3375), 45, + ACTIONS(3223), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41497,8 +41244,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14967] = 2, - ACTIONS(3392), 7, + [15605] = 2, + ACTIONS(3202), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41506,13 +41253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3390), 45, + ACTIONS(3200), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41552,8 +41300,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15024] = 2, - ACTIONS(3423), 7, + [15663] = 3, + ACTIONS(3504), 1, + sym__emphasis_close_underscore, + ACTIONS(3156), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41561,13 +41311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3421), 45, + ACTIONS(3154), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41607,8 +41357,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15081] = 2, - ACTIONS(3419), 7, + [15723] = 2, + ACTIONS(3206), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41616,13 +41366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3417), 45, + ACTIONS(3204), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41662,8 +41413,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15138] = 2, - ACTIONS(3454), 7, + [15781] = 3, + ACTIONS(3507), 1, + sym__emphasis_close_star, + ACTIONS(3181), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41671,13 +41424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3452), 45, + ACTIONS(3179), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41717,8 +41470,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15195] = 2, - ACTIONS(3465), 7, + [15841] = 2, + ACTIONS(3225), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41726,13 +41479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3463), 45, + ACTIONS(3223), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41772,8 +41526,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15252] = 2, - ACTIONS(3505), 7, + [15899] = 2, + ACTIONS(3233), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41781,13 +41535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3503), 45, + ACTIONS(3231), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41827,8 +41582,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15309] = 2, - ACTIONS(3513), 7, + [15957] = 2, + ACTIONS(3210), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41836,13 +41591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3511), 45, + ACTIONS(3208), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41882,8 +41638,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15366] = 2, - ACTIONS(3331), 7, + [16015] = 2, + ACTIONS(3498), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41891,13 +41647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3329), 45, + ACTIONS(3496), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41937,8 +41694,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15423] = 2, - ACTIONS(3541), 7, + [16073] = 2, + ACTIONS(3130), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -41946,13 +41703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3539), 45, + ACTIONS(3128), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -41992,8 +41750,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15480] = 2, - ACTIONS(3411), 7, + [16131] = 2, + ACTIONS(3291), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42001,13 +41759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3409), 45, + ACTIONS(3289), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42047,8 +41806,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15537] = 2, - ACTIONS(3361), 7, + [16189] = 2, + ACTIONS(3329), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42056,13 +41815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3359), 45, + ACTIONS(3327), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42102,8 +41862,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15594] = 2, - ACTIONS(3435), 7, + [16247] = 2, + ACTIONS(3336), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42111,13 +41871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3433), 45, + ACTIONS(3334), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42157,12 +41918,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15651] = 4, - ACTIONS(3311), 1, - sym__last_token_punctuation, - ACTIONS(3642), 1, - anon_sym_LBRACK, - ACTIONS(2879), 7, + [16305] = 2, + ACTIONS(3345), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42170,15 +41927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(2866), 43, + ACTIONS(3343), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -42214,8 +41974,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15712] = 2, - ACTIONS(3636), 7, + [16363] = 2, + ACTIONS(3349), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42223,13 +41983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 45, + ACTIONS(3347), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42269,8 +42030,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15769] = 2, - ACTIONS(3541), 7, + [16421] = 2, + ACTIONS(3365), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42278,13 +42039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3539), 45, + ACTIONS(3363), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42324,8 +42086,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15826] = 2, - ACTIONS(3513), 7, + [16479] = 2, + ACTIONS(3494), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42333,13 +42095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3511), 45, + ACTIONS(3492), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42379,8 +42142,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15883] = 2, - ACTIONS(3505), 7, + [16537] = 2, + ACTIONS(3490), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42388,13 +42151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3503), 45, + ACTIONS(3488), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42434,8 +42198,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15940] = 2, - ACTIONS(3465), 7, + [16595] = 2, + ACTIONS(3268), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42443,13 +42207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3463), 45, + ACTIONS(3266), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42489,8 +42254,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15997] = 2, - ACTIONS(3454), 7, + [16653] = 2, + ACTIONS(3303), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42498,13 +42263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3452), 45, + ACTIONS(3301), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42544,8 +42310,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16054] = 2, - ACTIONS(3431), 7, + [16711] = 2, + ACTIONS(3486), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42553,13 +42319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3429), 45, + ACTIONS(3484), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42599,8 +42366,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16111] = 2, - ACTIONS(3427), 7, + [16769] = 2, + ACTIONS(3482), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42608,13 +42375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3425), 45, + ACTIONS(3480), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42654,8 +42422,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16168] = 2, - ACTIONS(3392), 7, + [16827] = 2, + ACTIONS(3134), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42663,13 +42431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3390), 45, + ACTIONS(3132), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42709,8 +42478,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16225] = 2, - ACTIONS(3377), 7, + [16885] = 2, + ACTIONS(3478), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42718,13 +42487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3375), 45, + ACTIONS(3476), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42764,11 +42534,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16282] = 3, - ACTIONS(3339), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3342), 7, + [16943] = 2, + ACTIONS(3357), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42776,16 +42543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3337), 43, + ACTIONS(3355), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -42812,6 +42581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -42820,8 +42590,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16341] = 2, - ACTIONS(3346), 7, + [17001] = 2, + ACTIONS(3361), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42829,13 +42599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3344), 45, + ACTIONS(3359), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -42875,11 +42646,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16398] = 3, - ACTIONS(3350), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3353), 7, + [17059] = 2, + ACTIONS(3454), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42887,16 +42655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 43, + ACTIONS(3452), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -42923,6 +42693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -42931,8 +42702,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16457] = 2, - ACTIONS(3357), 7, + [17117] = 3, + ACTIONS(3138), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3141), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42940,17 +42714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3355), 45, + ACTIONS(3136), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -42977,7 +42751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -42986,8 +42759,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16514] = 2, - ACTIONS(3361), 7, + [17177] = 2, + ACTIONS(3145), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -42995,13 +42768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3359), 45, + ACTIONS(3143), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43041,8 +42815,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16571] = 2, - ACTIONS(3624), 7, + [17235] = 3, + ACTIONS(3149), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43050,17 +42827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 45, + ACTIONS(3147), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -43087,7 +42864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -43096,8 +42872,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16628] = 2, - ACTIONS(3373), 7, + [17295] = 2, + ACTIONS(3188), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43105,13 +42881,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3371), 45, + ACTIONS(3186), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43151,8 +42928,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16685] = 2, - ACTIONS(3403), 7, + [17353] = 2, + ACTIONS(3194), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43160,13 +42937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3401), 45, + ACTIONS(3192), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43206,8 +42984,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16742] = 2, - ACTIONS(3411), 7, + [17411] = 2, + ACTIONS(3369), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43215,13 +42993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3409), 45, + ACTIONS(3367), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43261,8 +43040,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16799] = 2, - ACTIONS(3415), 7, + [17469] = 2, + ACTIONS(3218), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43270,13 +43049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3413), 45, + ACTIONS(3216), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43316,8 +43096,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16856] = 2, - ACTIONS(3419), 7, + [17527] = 2, + ACTIONS(3248), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43325,13 +43105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3417), 45, + ACTIONS(3246), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43371,8 +43152,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16913] = 2, - ACTIONS(3423), 7, + [17585] = 2, + ACTIONS(3256), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43380,13 +43161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3421), 45, + ACTIONS(3254), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43426,8 +43208,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16970] = 2, - ACTIONS(3517), 7, + [17643] = 2, + ACTIONS(3272), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43435,13 +43217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3515), 45, + ACTIONS(3270), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43481,8 +43264,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17027] = 2, - ACTIONS(3439), 7, + [17701] = 2, + ACTIONS(3278), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43490,13 +43273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3437), 45, + ACTIONS(3276), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43536,8 +43320,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17084] = 2, - ACTIONS(3443), 7, + [17759] = 2, + ACTIONS(3295), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43545,13 +43329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3441), 45, + ACTIONS(3293), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43591,8 +43376,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17141] = 2, - ACTIONS(3447), 7, + [17817] = 2, + ACTIONS(3299), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43600,13 +43385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3445), 45, + ACTIONS(3297), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43646,8 +43432,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17198] = 2, - ACTIONS(3458), 7, + [17875] = 2, + ACTIONS(3307), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43655,13 +43441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3456), 45, + ACTIONS(3305), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43701,8 +43488,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17255] = 2, - ACTIONS(3628), 7, + [17933] = 2, + ACTIONS(3311), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43710,13 +43497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 45, + ACTIONS(3309), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43756,8 +43544,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17312] = 2, - ACTIONS(3469), 7, + [17991] = 2, + ACTIONS(3325), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43765,13 +43553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3467), 45, + ACTIONS(3323), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43811,8 +43600,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17369] = 2, - ACTIONS(3477), 7, + [18049] = 2, + ACTIONS(3420), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43820,13 +43609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3475), 45, + ACTIONS(3418), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43866,8 +43656,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17426] = 2, - ACTIONS(3481), 7, + [18107] = 2, + ACTIONS(3373), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43875,13 +43665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3479), 45, + ACTIONS(3371), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43921,8 +43712,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17483] = 2, - ACTIONS(3489), 7, + [18165] = 2, + ACTIONS(3426), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43930,13 +43721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3487), 45, + ACTIONS(3424), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -43976,8 +43768,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17540] = 2, - ACTIONS(3493), 7, + [18223] = 2, + ACTIONS(3434), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -43985,13 +43777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3491), 45, + ACTIONS(3432), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44031,8 +43824,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17597] = 2, - ACTIONS(3501), 7, + [18281] = 2, + ACTIONS(3438), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44040,13 +43833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3499), 45, + ACTIONS(3436), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44086,8 +43880,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17654] = 2, - ACTIONS(3509), 7, + [18339] = 2, + ACTIONS(3442), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44095,13 +43889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3507), 45, + ACTIONS(3440), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44141,8 +43936,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17711] = 2, - ACTIONS(3529), 7, + [18397] = 2, + ACTIONS(3446), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44150,13 +43945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3527), 45, + ACTIONS(3444), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44196,8 +43992,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17768] = 2, - ACTIONS(3335), 7, + [18455] = 2, + ACTIONS(3450), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44205,13 +44001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3333), 45, + ACTIONS(3448), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44251,8 +44048,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17825] = 2, - ACTIONS(3533), 7, + [18513] = 2, + ACTIONS(3454), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44260,13 +44057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3531), 45, + ACTIONS(3452), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44306,8 +44104,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17882] = 2, - ACTIONS(3537), 7, + [18571] = 2, + ACTIONS(3458), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44315,13 +44113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3535), 45, + ACTIONS(3456), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44361,8 +44160,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17939] = 2, - ACTIONS(3545), 7, + [18629] = 2, + ACTIONS(3414), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44370,13 +44169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3543), 45, + ACTIONS(3412), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44416,8 +44216,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17996] = 2, - ACTIONS(3549), 7, + [18687] = 2, + ACTIONS(3410), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44425,13 +44225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3547), 45, + ACTIONS(3408), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44471,8 +44272,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18053] = 2, - ACTIONS(3553), 7, + [18745] = 2, + ACTIONS(3406), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44480,13 +44281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3551), 45, + ACTIONS(3404), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44526,8 +44328,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18110] = 2, - ACTIONS(3563), 7, + [18803] = 2, + ACTIONS(3402), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44535,13 +44337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3561), 45, + ACTIONS(3400), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44581,8 +44384,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18167] = 2, - ACTIONS(3567), 7, + [18861] = 2, + ACTIONS(3126), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44590,13 +44393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3565), 45, + ACTIONS(3124), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44636,8 +44440,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18224] = 2, - ACTIONS(3571), 7, + [18919] = 2, + ACTIONS(3474), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44645,13 +44449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3569), 45, + ACTIONS(3472), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44691,8 +44496,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18281] = 2, - ACTIONS(3575), 7, + [18977] = 2, + ACTIONS(3478), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44700,13 +44505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3573), 45, + ACTIONS(3476), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44746,8 +44552,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18338] = 2, - ACTIONS(3579), 7, + [19035] = 2, + ACTIONS(3482), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44755,13 +44561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3577), 45, + ACTIONS(3480), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44801,8 +44608,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18395] = 2, - ACTIONS(3583), 7, + [19093] = 2, + ACTIONS(3486), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44810,13 +44617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3581), 45, + ACTIONS(3484), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44856,8 +44664,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18452] = 2, - ACTIONS(3632), 7, + [19151] = 2, + ACTIONS(3490), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44865,13 +44673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 45, + ACTIONS(3488), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44911,8 +44720,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18509] = 2, - ACTIONS(3640), 7, + [19209] = 2, + ACTIONS(3494), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44920,13 +44729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 45, + ACTIONS(3492), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -44966,8 +44776,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18566] = 2, - ACTIONS(3636), 7, + [19267] = 2, + ACTIONS(3498), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -44975,13 +44785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 45, + ACTIONS(3496), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45021,8 +44832,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18623] = 2, - ACTIONS(3614), 7, + [19325] = 2, + ACTIONS(3373), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45030,13 +44841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3612), 45, + ACTIONS(3371), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45076,8 +44888,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18680] = 2, - ACTIONS(3608), 7, + [19383] = 2, + ACTIONS(3369), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45085,13 +44897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 45, + ACTIONS(3367), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45131,8 +44944,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18737] = 2, - ACTIONS(3593), 7, + [19441] = 2, + ACTIONS(3458), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45140,13 +44953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3591), 45, + ACTIONS(3456), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45186,27 +45000,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18794] = 2, - ACTIONS(3597), 7, + [19499] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3510), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3595), 45, - sym__code_span_start, + STATE(337), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3235), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -45234,15 +45063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [18851] = 2, - ACTIONS(3601), 7, + [19571] = 2, + ACTIONS(3361), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45250,13 +45072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3599), 45, + ACTIONS(3359), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45296,8 +45119,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18908] = 2, - ACTIONS(3640), 7, + [19629] = 2, + ACTIONS(3357), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45305,13 +45128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 45, + ACTIONS(3355), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45351,8 +45175,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18965] = 2, - ACTIONS(3601), 7, + [19687] = 2, + ACTIONS(3134), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45360,13 +45184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3599), 45, + ACTIONS(3132), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45406,8 +45231,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19022] = 2, - ACTIONS(3608), 7, + [19745] = 2, + ACTIONS(3303), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45415,13 +45240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 45, + ACTIONS(3301), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45461,8 +45287,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19079] = 2, - ACTIONS(3614), 7, + [19803] = 2, + ACTIONS(3268), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45470,13 +45296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3612), 45, + ACTIONS(3266), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45516,8 +45343,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19136] = 2, - ACTIONS(3636), 7, + [19861] = 2, + ACTIONS(3210), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45525,13 +45352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 45, + ACTIONS(3208), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45571,8 +45399,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19193] = 2, - ACTIONS(3640), 7, + [19919] = 2, + ACTIONS(3206), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45580,13 +45408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 45, + ACTIONS(3204), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45626,8 +45455,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19250] = 2, - ACTIONS(3597), 7, + [19977] = 2, + ACTIONS(3202), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45635,13 +45464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3595), 45, + ACTIONS(3200), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45681,8 +45511,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19307] = 2, - ACTIONS(3593), 7, + [20035] = 2, + ACTIONS(3225), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45690,13 +45520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3591), 45, + ACTIONS(3223), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45736,8 +45567,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19364] = 2, - ACTIONS(3583), 7, + [20093] = 2, + ACTIONS(3233), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45745,13 +45576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3581), 45, + ACTIONS(3231), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45791,8 +45623,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19421] = 2, - ACTIONS(3632), 7, + [20151] = 2, + ACTIONS(3260), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45800,13 +45632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 45, + ACTIONS(3258), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45846,8 +45679,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19478] = 2, - ACTIONS(3628), 7, + [20209] = 2, + ACTIONS(3264), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45855,13 +45688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 45, + ACTIONS(3262), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45901,8 +45735,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19535] = 2, - ACTIONS(3624), 7, + [20267] = 2, + ACTIONS(3130), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45910,13 +45744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 45, + ACTIONS(3128), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -45956,8 +45791,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19592] = 2, - ACTIONS(3377), 7, + [20325] = 2, + ACTIONS(3291), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -45965,13 +45800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3375), 45, + ACTIONS(3289), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46011,8 +45847,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19649] = 2, - ACTIONS(3392), 7, + [20383] = 2, + ACTIONS(3329), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46020,13 +45856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3390), 45, + ACTIONS(3327), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46066,8 +45903,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19706] = 2, - ACTIONS(3427), 7, + [20441] = 2, + ACTIONS(3336), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46075,13 +45912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3425), 45, + ACTIONS(3334), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46121,8 +45959,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19763] = 2, - ACTIONS(3431), 7, + [20499] = 2, + ACTIONS(3345), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46130,13 +45968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3429), 45, + ACTIONS(3343), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46176,8 +46015,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19820] = 2, - ACTIONS(3454), 7, + [20557] = 2, + ACTIONS(3349), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46185,13 +46024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3452), 45, + ACTIONS(3347), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46231,8 +46071,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19877] = 2, - ACTIONS(3465), 7, + [20615] = 2, + ACTIONS(3365), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46240,13 +46080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3463), 45, + ACTIONS(3363), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46286,8 +46127,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19934] = 2, - ACTIONS(3505), 7, + [20673] = 2, + ACTIONS(3474), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46295,13 +46136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3503), 45, + ACTIONS(3472), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46341,8 +46183,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [19991] = 2, - ACTIONS(3513), 7, + [20731] = 2, + ACTIONS(3126), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46350,13 +46192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3511), 45, + ACTIONS(3124), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46396,8 +46239,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20048] = 2, - ACTIONS(3331), 7, + [20789] = 2, + ACTIONS(3402), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46405,13 +46248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3329), 45, + ACTIONS(3400), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46451,8 +46295,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20105] = 2, - ACTIONS(3541), 7, + [20847] = 2, + ACTIONS(3406), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46460,13 +46304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3539), 45, + ACTIONS(3404), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46506,8 +46351,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20162] = 2, - ACTIONS(3579), 7, + [20905] = 2, + ACTIONS(3410), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46515,13 +46360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3577), 45, + ACTIONS(3408), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46561,8 +46407,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20219] = 2, - ACTIONS(3624), 7, + [20963] = 4, + ACTIONS(1471), 1, + sym__last_token_punctuation, + ACTIONS(3512), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3116), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46570,17 +46421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 45, + ACTIONS(114), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -46607,7 +46457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -46616,8 +46465,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20276] = 2, - ACTIONS(3435), 7, + [21025] = 2, + ACTIONS(3414), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46625,13 +46474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3433), 45, + ACTIONS(3412), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, + ts_builtin_sym_end, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46671,27 +46521,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20333] = 2, - ACTIONS(3575), 7, + [21083] = 9, + ACTIONS(3161), 1, + sym__backslash_escape, + ACTIONS(3171), 1, + sym__newline_token, + ACTIONS(3173), 1, + sym__whitespace_ge_2, + ACTIONS(3175), 1, + aux_sym__whitespace_token1, + ACTIONS(3514), 1, + anon_sym_RBRACK, + ACTIONS(3167), 3, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3573), 45, - sym__code_span_start, + STATE(474), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3316), 11, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__strikethrough_close, - sym__latex_span_start, - sym__backslash_escape, + sym__unclosed_span, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(3169), 27, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -46719,15 +46584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [20390] = 2, - ACTIONS(3571), 7, + [21155] = 3, + ACTIONS(3138), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3141), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46735,17 +46596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3569), 45, + ACTIONS(3136), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -46772,7 +46633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -46781,8 +46641,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20447] = 2, - ACTIONS(3567), 7, + [21215] = 2, + ACTIONS(3145), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46790,13 +46650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3565), 45, + ACTIONS(3143), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46836,8 +46697,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20504] = 2, - ACTIONS(3563), 7, + [21273] = 3, + ACTIONS(3149), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46845,17 +46709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3561), 45, + ACTIONS(3147), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -46882,7 +46746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -46891,8 +46754,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20561] = 2, - ACTIONS(3628), 7, + [21333] = 2, + ACTIONS(3188), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46900,13 +46763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 45, + ACTIONS(3186), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -46946,8 +46810,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20618] = 2, - ACTIONS(3632), 7, + [21391] = 2, + ACTIONS(3194), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -46955,13 +46819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 45, + ACTIONS(3192), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, - ts_builtin_sym_end, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47001,8 +46866,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20675] = 2, - ACTIONS(3553), 7, + [21449] = 2, + ACTIONS(3218), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47010,13 +46875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3551), 45, + ACTIONS(3216), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47056,8 +46922,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20732] = 2, - ACTIONS(3549), 7, + [21507] = 2, + ACTIONS(3248), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47065,13 +46931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3547), 45, + ACTIONS(3246), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47111,8 +46978,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20789] = 2, - ACTIONS(3545), 7, + [21565] = 2, + ACTIONS(3256), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47120,13 +46987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3543), 45, + ACTIONS(3254), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47166,8 +47034,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20846] = 2, - ACTIONS(3537), 7, + [21623] = 2, + ACTIONS(3272), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47175,13 +47043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3535), 45, + ACTIONS(3270), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47221,8 +47090,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20903] = 2, - ACTIONS(3533), 7, + [21681] = 2, + ACTIONS(3278), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47230,13 +47099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3531), 45, + ACTIONS(3276), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47276,11 +47146,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20960] = 3, - ACTIONS(3339), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3342), 7, + [21739] = 2, + ACTIONS(3295), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47288,16 +47155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3337), 43, + ACTIONS(3293), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -47324,6 +47193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -47332,8 +47202,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21019] = 2, - ACTIONS(3346), 7, + [21797] = 2, + ACTIONS(3299), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47341,13 +47211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3344), 45, + ACTIONS(3297), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47387,11 +47258,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21076] = 3, - ACTIONS(3350), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3353), 7, + [21855] = 2, + ACTIONS(3307), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47399,16 +47267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 43, + ACTIONS(3305), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -47435,6 +47305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -47443,8 +47314,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21135] = 2, - ACTIONS(3357), 7, + [21913] = 2, + ACTIONS(3311), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47452,13 +47323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3355), 45, + ACTIONS(3309), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47498,8 +47370,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21192] = 2, - ACTIONS(3361), 7, + [21971] = 2, + ACTIONS(3325), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47507,13 +47379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3359), 45, + ACTIONS(3323), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47553,8 +47426,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21249] = 2, - ACTIONS(3335), 7, + [22029] = 2, + ACTIONS(3420), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47562,13 +47435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3333), 45, + ACTIONS(3418), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47608,8 +47482,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21306] = 2, - ACTIONS(3373), 7, + [22087] = 2, + ACTIONS(3426), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47617,13 +47491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3371), 45, + ACTIONS(3424), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47663,8 +47538,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21363] = 2, - ACTIONS(3403), 7, + [22145] = 2, + ACTIONS(3434), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47672,13 +47547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3401), 45, + ACTIONS(3432), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47718,8 +47594,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21420] = 2, - ACTIONS(3411), 7, + [22203] = 2, + ACTIONS(3438), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47727,13 +47603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3409), 45, + ACTIONS(3436), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47773,8 +47650,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21477] = 2, - ACTIONS(3415), 7, + [22261] = 2, + ACTIONS(3442), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47782,13 +47659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3413), 45, + ACTIONS(3440), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47828,8 +47706,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21534] = 2, - ACTIONS(3419), 7, + [22319] = 2, + ACTIONS(3446), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47837,13 +47715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3417), 45, + ACTIONS(3444), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47883,8 +47762,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21591] = 2, - ACTIONS(3423), 7, + [22377] = 2, + ACTIONS(3450), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47892,13 +47771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3421), 45, + ACTIONS(3448), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47938,8 +47818,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21648] = 2, - ACTIONS(3517), 7, + [22435] = 2, + ACTIONS(3454), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -47947,13 +47827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3515), 45, + ACTIONS(3452), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -47993,8 +47874,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21705] = 2, - ACTIONS(3439), 7, + [22493] = 2, + ACTIONS(3458), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48002,13 +47883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3437), 45, + ACTIONS(3456), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48048,8 +47930,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21762] = 2, - ACTIONS(3443), 7, + [22551] = 2, + ACTIONS(3414), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48057,13 +47939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3441), 45, + ACTIONS(3412), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48103,8 +47986,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21819] = 2, - ACTIONS(3447), 7, + [22609] = 2, + ACTIONS(3410), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48112,13 +47995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3445), 45, + ACTIONS(3408), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48158,8 +48042,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21876] = 2, - ACTIONS(3458), 7, + [22667] = 2, + ACTIONS(3406), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48167,13 +48051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3456), 45, + ACTIONS(3404), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48213,8 +48098,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21933] = 2, - ACTIONS(3529), 7, + [22725] = 2, + ACTIONS(3402), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48222,13 +48107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3527), 45, + ACTIONS(3400), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48268,8 +48154,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21990] = 2, - ACTIONS(3469), 7, + [22783] = 2, + ACTIONS(3474), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48277,13 +48163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3467), 45, + ACTIONS(3472), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48323,8 +48210,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22047] = 2, - ACTIONS(3477), 7, + [22841] = 2, + ACTIONS(3478), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48332,13 +48219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3475), 45, + ACTIONS(3476), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48378,8 +48266,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22104] = 2, - ACTIONS(3481), 7, + [22899] = 2, + ACTIONS(3482), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48387,13 +48275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3479), 45, + ACTIONS(3480), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48433,8 +48322,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22161] = 2, - ACTIONS(3489), 7, + [22957] = 2, + ACTIONS(3486), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48442,13 +48331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3487), 45, + ACTIONS(3484), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48488,8 +48378,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22218] = 2, - ACTIONS(3493), 7, + [23015] = 2, + ACTIONS(3490), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48497,13 +48387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3491), 45, + ACTIONS(3488), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48543,8 +48434,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22275] = 2, - ACTIONS(3501), 7, + [23073] = 2, + ACTIONS(3494), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48552,13 +48443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3499), 45, + ACTIONS(3492), 46, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48598,8 +48490,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22332] = 2, - ACTIONS(3509), 7, + [23131] = 2, + ACTIONS(3325), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48607,13 +48499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3507), 45, + ACTIONS(3323), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48653,8 +48545,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22389] = 2, - ACTIONS(3335), 7, + [23188] = 2, + ACTIONS(3303), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48662,12 +48554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3333), 44, + ACTIONS(3301), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48707,8 +48600,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22445] = 2, - ACTIONS(3423), 7, + [23245] = 4, + ACTIONS(3149), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_LBRACK, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48716,17 +48613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3421), 44, + ACTIONS(3147), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -48752,7 +48649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -48761,8 +48657,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22501] = 2, - ACTIONS(3419), 7, + [23306] = 3, + ACTIONS(3149), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48770,16 +48669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3417), 44, + ACTIONS(3147), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -48806,7 +48705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -48815,8 +48713,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22557] = 2, - ACTIONS(3411), 7, + [23365] = 4, + ACTIONS(3149), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_LBRACK, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48824,17 +48726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3409), 44, + ACTIONS(3147), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -48860,7 +48762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -48869,8 +48770,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22613] = 2, - ACTIONS(3427), 7, + [23426] = 4, + ACTIONS(3149), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_LBRACK, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48878,17 +48783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3425), 44, + ACTIONS(3147), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -48914,7 +48819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -48923,8 +48827,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22669] = 2, - ACTIONS(3431), 7, + [23487] = 2, + ACTIONS(3349), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48932,12 +48836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3429), 44, + ACTIONS(3347), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -48977,12 +48882,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22725] = 4, - ACTIONS(3350), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_LBRACK, - ACTIONS(3353), 7, + [23544] = 2, + ACTIONS(3345), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -48990,70 +48891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 42, + ACTIONS(3343), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_GT, - 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_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_RPAREN, - sym__newline_token, - sym_uri_autolink, - sym_email_autolink, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [22785] = 3, - ACTIONS(3350), 2, anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(3353), 7, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - aux_sym__whitespace_token1, - ACTIONS(3348), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__strikethrough_open, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -49080,6 +48928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -49088,12 +48937,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22843] = 4, - ACTIONS(3350), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_LBRACK, - ACTIONS(3353), 7, + [23601] = 2, + ACTIONS(3336), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49101,16 +48946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 42, + ACTIONS(3334), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -49136,6 +48983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -49144,8 +48992,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22903] = 2, - ACTIONS(3407), 7, + [23658] = 2, + ACTIONS(3329), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49153,12 +49001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3405), 44, + ACTIONS(3327), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49198,8 +49047,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22959] = 2, - ACTIONS(3369), 7, + [23715] = 2, + ACTIONS(3291), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49207,12 +49056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3367), 44, + ACTIONS(3289), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49252,8 +49102,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23015] = 2, - ACTIONS(3365), 7, + [23772] = 2, + ACTIONS(3130), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49261,12 +49111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3363), 44, + ACTIONS(3128), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49306,8 +49157,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23071] = 2, - ACTIONS(3541), 7, + [23829] = 2, + ACTIONS(3233), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49315,12 +49166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3539), 44, + ACTIONS(3231), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49360,8 +49212,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23127] = 2, - ACTIONS(3331), 7, + [23886] = 2, + ACTIONS(3225), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49369,12 +49221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3329), 44, + ACTIONS(3223), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49414,8 +49267,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23183] = 2, - ACTIONS(3513), 7, + [23943] = 2, + ACTIONS(3268), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49423,12 +49276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3511), 44, + ACTIONS(3266), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49468,8 +49322,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23239] = 2, - ACTIONS(3505), 7, + [24000] = 2, + ACTIONS(3194), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49477,12 +49331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3503), 44, + ACTIONS(3192), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49522,8 +49377,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23295] = 2, - ACTIONS(3465), 7, + [24057] = 2, + ACTIONS(3134), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49531,12 +49386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3463), 44, + ACTIONS(3132), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49576,8 +49432,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23351] = 2, - ACTIONS(3454), 7, + [24114] = 2, + ACTIONS(3256), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49585,12 +49441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3452), 44, + ACTIONS(3254), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49630,8 +49487,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23407] = 2, - ACTIONS(3392), 7, + [24171] = 2, + ACTIONS(3278), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49639,12 +49496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3390), 44, + ACTIONS(3276), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49684,8 +49542,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23463] = 2, - ACTIONS(3377), 7, + [24228] = 2, + ACTIONS(3498), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49693,12 +49551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3375), 44, + ACTIONS(3496), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49738,8 +49597,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23519] = 2, - ACTIONS(3640), 7, + [24285] = 2, + ACTIONS(3494), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49747,12 +49606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 44, + ACTIONS(3492), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49792,8 +49652,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23575] = 2, - ACTIONS(3636), 7, + [24342] = 2, + ACTIONS(3264), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49801,12 +49661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 44, + ACTIONS(3262), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49846,8 +49707,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23631] = 2, - ACTIONS(3614), 7, + [24399] = 2, + ACTIONS(3260), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49855,12 +49716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3612), 44, + ACTIONS(3258), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49900,8 +49762,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23687] = 2, - ACTIONS(3583), 7, + [24456] = 2, + ACTIONS(3490), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49909,12 +49771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3581), 44, + ACTIONS(3488), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -49954,8 +49817,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23743] = 2, - ACTIONS(3579), 7, + [24513] = 2, + ACTIONS(3486), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -49963,12 +49826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3577), 44, + ACTIONS(3484), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50008,8 +49872,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23799] = 2, - ACTIONS(3575), 7, + [24570] = 2, + ACTIONS(3202), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50017,12 +49881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3573), 44, + ACTIONS(3200), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50062,8 +49927,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23855] = 2, - ACTIONS(3571), 7, + [24627] = 2, + ACTIONS(3482), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50071,12 +49936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3569), 44, + ACTIONS(3480), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50116,8 +49982,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23911] = 2, - ACTIONS(3567), 7, + [24684] = 2, + ACTIONS(3206), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50125,12 +49991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3565), 44, + ACTIONS(3204), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50170,8 +50037,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23967] = 2, - ACTIONS(3563), 7, + [24741] = 2, + ACTIONS(3478), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50179,12 +50046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3561), 44, + ACTIONS(3476), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50224,8 +50092,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24023] = 2, - ACTIONS(3553), 7, + [24798] = 2, + ACTIONS(3474), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50233,12 +50101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3551), 44, + ACTIONS(3472), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50278,8 +50147,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24079] = 2, - ACTIONS(3439), 7, + [24855] = 2, + ACTIONS(3295), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50287,12 +50156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3437), 44, + ACTIONS(3293), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50332,8 +50202,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24135] = 2, - ACTIONS(3529), 7, + [24912] = 2, + ACTIONS(3299), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50341,12 +50211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3527), 44, + ACTIONS(3297), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50386,8 +50257,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24191] = 2, - ACTIONS(3361), 7, + [24969] = 2, + ACTIONS(3307), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50395,12 +50266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3359), 44, + ACTIONS(3305), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50440,12 +50312,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24247] = 4, - ACTIONS(3350), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_LBRACK, - ACTIONS(3353), 7, + [25026] = 2, + ACTIONS(3311), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50453,16 +50321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 42, + ACTIONS(3309), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -50488,6 +50358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym_uri_autolink, @@ -50496,8 +50367,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24307] = 2, - ACTIONS(3517), 7, + [25083] = 2, + ACTIONS(3458), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50505,12 +50376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3515), 44, + ACTIONS(3456), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50550,8 +50422,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24363] = 2, - ACTIONS(3509), 7, + [25140] = 2, + ACTIONS(3454), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50559,12 +50431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3507), 44, + ACTIONS(3452), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50604,8 +50477,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24419] = 2, - ACTIONS(3628), 7, + [25197] = 2, + ACTIONS(3450), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50613,12 +50486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 44, + ACTIONS(3448), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50658,8 +50532,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24475] = 2, - ACTIONS(3501), 7, + [25254] = 2, + ACTIONS(3446), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50667,12 +50541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3499), 44, + ACTIONS(3444), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50712,8 +50587,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24531] = 2, - ACTIONS(3493), 7, + [25311] = 2, + ACTIONS(3442), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50721,12 +50596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3491), 44, + ACTIONS(3440), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50766,8 +50642,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24587] = 2, - ACTIONS(3632), 7, + [25368] = 2, + ACTIONS(3438), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50775,12 +50651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 44, + ACTIONS(3436), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50820,8 +50697,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24643] = 2, - ACTIONS(3608), 7, + [25425] = 2, + ACTIONS(3210), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50829,12 +50706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 44, + ACTIONS(3208), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50874,8 +50752,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24699] = 2, - ACTIONS(3601), 7, + [25482] = 2, + ACTIONS(3357), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50883,12 +50761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3599), 44, + ACTIONS(3355), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50928,8 +50807,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24755] = 2, - ACTIONS(3489), 7, + [25539] = 2, + ACTIONS(3434), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50937,12 +50816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3487), 44, + ACTIONS(3432), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -50982,8 +50862,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24811] = 2, - ACTIONS(3624), 7, + [25596] = 2, + ACTIONS(3426), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -50991,12 +50871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 44, + ACTIONS(3424), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51036,8 +50917,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24867] = 2, - ACTIONS(3435), 7, + [25653] = 2, + ACTIONS(3365), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51045,12 +50926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3433), 44, + ACTIONS(3363), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51090,8 +50972,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24923] = 2, - ACTIONS(3481), 7, + [25710] = 2, + ACTIONS(3361), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51099,12 +50981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3479), 44, + ACTIONS(3359), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51144,8 +51027,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24979] = 2, - ACTIONS(3597), 7, + [25767] = 2, + ACTIONS(3414), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51153,12 +51036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3595), 44, + ACTIONS(3412), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51198,8 +51082,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25035] = 2, - ACTIONS(3477), 7, + [25824] = 2, + ACTIONS(3420), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51207,12 +51091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3475), 44, + ACTIONS(3418), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51252,8 +51137,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25091] = 2, - ACTIONS(3593), 7, + [25881] = 2, + ACTIONS(3410), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51261,12 +51146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3591), 44, + ACTIONS(3408), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51306,8 +51192,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25147] = 2, - ACTIONS(3469), 7, + [25938] = 2, + ACTIONS(3198), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51315,12 +51201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3467), 44, + ACTIONS(3196), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51360,8 +51247,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25203] = 2, - ACTIONS(3443), 7, + [25995] = 2, + ACTIONS(3369), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51369,12 +51256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3441), 44, + ACTIONS(3367), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51414,8 +51302,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25259] = 2, - ACTIONS(3458), 7, + [26052] = 2, + ACTIONS(3373), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51423,12 +51311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3456), 44, + ACTIONS(3371), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51468,8 +51357,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25315] = 2, - ACTIONS(3415), 7, + [26109] = 2, + ACTIONS(3126), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51477,12 +51366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3413), 44, + ACTIONS(3124), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51522,8 +51412,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25371] = 2, - ACTIONS(3549), 7, + [26166] = 2, + ACTIONS(3214), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51531,12 +51421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3547), 44, + ACTIONS(3212), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51576,8 +51467,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25427] = 2, - ACTIONS(3545), 7, + [26223] = 2, + ACTIONS(3252), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51585,12 +51476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3543), 44, + ACTIONS(3250), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51630,8 +51522,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25483] = 2, - ACTIONS(3537), 7, + [26280] = 2, + ACTIONS(3406), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51639,12 +51531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3535), 44, + ACTIONS(3404), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51684,11 +51577,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25539] = 3, - ACTIONS(3339), 2, + [26337] = 3, + ACTIONS(3138), 2, anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(3342), 7, + ACTIONS(3141), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51696,12 +51589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3337), 42, + ACTIONS(3136), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51739,8 +51633,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25597] = 2, - ACTIONS(3346), 7, + [26396] = 2, + ACTIONS(3145), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51748,12 +51642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3344), 44, + ACTIONS(3143), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51793,12 +51688,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25653] = 4, - ACTIONS(3350), 1, + [26453] = 4, + ACTIONS(3149), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3516), 1, anon_sym_LBRACK, - ACTIONS(3353), 7, + ACTIONS(3152), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51806,12 +51701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3348), 42, + ACTIONS(3147), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51849,8 +51745,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25713] = 2, - ACTIONS(3357), 7, + [26514] = 2, + ACTIONS(3188), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51858,12 +51754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3355), 44, + ACTIONS(3186), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51903,8 +51800,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25769] = 2, - ACTIONS(3533), 7, + [26571] = 2, + ACTIONS(3272), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51912,12 +51809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3531), 44, + ACTIONS(3270), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -51957,8 +51855,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25825] = 2, - ACTIONS(3447), 7, + [26628] = 2, + ACTIONS(3402), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -51966,12 +51864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3445), 44, + ACTIONS(3400), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52011,8 +51910,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25881] = 2, - ACTIONS(3373), 7, + [26685] = 2, + ACTIONS(3218), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52020,12 +51919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3371), 44, + ACTIONS(3216), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52065,8 +51965,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25937] = 2, - ACTIONS(3403), 7, + [26742] = 2, + ACTIONS(3248), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52074,12 +51974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3401), 44, + ACTIONS(3246), 45, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52119,8 +52020,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25993] = 2, - ACTIONS(3648), 7, + [26799] = 2, + ACTIONS(3520), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52128,13 +52029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3646), 43, + ACTIONS(3518), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52172,8 +52074,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26048] = 2, - ACTIONS(3652), 7, + [26855] = 2, + ACTIONS(3524), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52181,16 +52083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(3522), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52225,8 +52128,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26103] = 2, - ACTIONS(3656), 7, + [26911] = 3, + ACTIONS(3530), 1, + sym__emphasis_close_star, + ACTIONS(3528), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52234,16 +52139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 43, + ACTIONS(3526), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52278,8 +52183,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26158] = 2, - ACTIONS(3660), 7, + [26969] = 2, + ACTIONS(3534), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52287,16 +52192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3658), 43, + ACTIONS(3532), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52331,8 +52237,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26213] = 2, - ACTIONS(3664), 7, + [27025] = 2, + ACTIONS(3538), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52340,12 +52246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3662), 43, + ACTIONS(3536), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52384,10 +52291,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26268] = 3, - ACTIONS(3670), 1, - sym__emphasis_close_underscore, - ACTIONS(3668), 7, + [27081] = 2, + ACTIONS(3534), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52395,15 +52300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3666), 42, + ACTIONS(3532), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52438,8 +52345,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26325] = 2, - ACTIONS(3674), 7, + [27137] = 2, + ACTIONS(3542), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52447,12 +52354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3672), 43, + ACTIONS(3540), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52491,8 +52399,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26380] = 2, - ACTIONS(3678), 7, + [27193] = 3, + ACTIONS(3548), 1, + sym__emphasis_close_underscore, + ACTIONS(3546), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52500,16 +52410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3676), 43, + ACTIONS(3544), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52544,8 +52454,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26435] = 2, - ACTIONS(3682), 7, + [27251] = 2, + ACTIONS(3552), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52553,16 +52463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3680), 43, + ACTIONS(3550), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52597,8 +52508,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26490] = 2, - ACTIONS(3652), 7, + [27307] = 2, + ACTIONS(3520), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52606,16 +52517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(3518), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52650,10 +52562,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26545] = 3, - ACTIONS(3688), 1, - sym__emphasis_close_star, - ACTIONS(3686), 7, + [27363] = 2, + ACTIONS(3556), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52661,12 +52571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3684), 42, + ACTIONS(3554), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52704,10 +52616,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26602] = 3, - ACTIONS(3690), 1, - sym__emphasis_close_underscore, - ACTIONS(3668), 7, + [27419] = 2, + ACTIONS(3560), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52715,12 +52625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3666), 42, + ACTIONS(3558), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52758,8 +52670,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26659] = 2, - ACTIONS(3694), 7, + [27475] = 2, + ACTIONS(3560), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52767,12 +52679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3692), 43, + ACTIONS(3558), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52811,10 +52724,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26714] = 3, - ACTIONS(3696), 1, + [27531] = 3, + ACTIONS(3562), 1, sym__emphasis_close_star, - ACTIONS(3686), 7, + ACTIONS(3528), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52822,12 +52735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3684), 42, + ACTIONS(3526), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52865,10 +52779,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26771] = 3, - ACTIONS(3698), 1, + [27589] = 3, + ACTIONS(3564), 1, sym__emphasis_close_star, - ACTIONS(3686), 7, + ACTIONS(3528), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52876,12 +52790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3684), 42, + ACTIONS(3526), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -52919,8 +52834,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26828] = 2, - ACTIONS(3702), 7, + [27647] = 2, + ACTIONS(3542), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52928,16 +52843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3700), 43, + ACTIONS(3540), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -52972,8 +52888,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26883] = 2, - ACTIONS(3686), 7, + [27703] = 2, + ACTIONS(3534), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -52981,13 +52897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3684), 43, + ACTIONS(3532), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53025,8 +52942,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26938] = 2, - ACTIONS(3664), 7, + [27759] = 2, + ACTIONS(3538), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53034,13 +52951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3662), 43, + ACTIONS(3536), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53078,8 +52996,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26993] = 2, - ACTIONS(3664), 7, + [27815] = 3, + ACTIONS(3566), 1, + sym__emphasis_close_underscore, + ACTIONS(3546), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53087,13 +53007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3662), 43, + ACTIONS(3544), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53131,8 +53051,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27048] = 2, - ACTIONS(3660), 7, + [27873] = 2, + ACTIONS(3520), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53140,16 +53060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3658), 43, + ACTIONS(3518), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -53184,8 +53105,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27103] = 2, - ACTIONS(3656), 7, + [27929] = 2, + ACTIONS(3552), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53193,16 +53114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 43, + ACTIONS(3550), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -53237,8 +53159,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27158] = 2, - ACTIONS(3706), 7, + [27985] = 2, + ACTIONS(3570), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53246,12 +53168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 43, + ACTIONS(3568), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53290,10 +53213,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27213] = 3, - ACTIONS(3708), 1, - sym__emphasis_close_underscore, - ACTIONS(3668), 7, + [28041] = 2, + ACTIONS(3538), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53301,12 +53222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3666), 42, + ACTIONS(3536), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53344,10 +53267,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27270] = 3, - ACTIONS(3710), 1, - sym__emphasis_close_underscore, - ACTIONS(3668), 7, + [28097] = 2, + ACTIONS(3534), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53355,12 +53276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3666), 42, + ACTIONS(3532), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53398,8 +53321,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27327] = 2, - ACTIONS(3702), 7, + [28153] = 2, + ACTIONS(3542), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53407,13 +53330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3700), 43, + ACTIONS(3540), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53451,8 +53375,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27382] = 2, - ACTIONS(3664), 7, + [28209] = 2, + ACTIONS(3574), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53460,16 +53384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3662), 43, + ACTIONS(3572), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -53504,8 +53429,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27437] = 2, - ACTIONS(3660), 7, + [28265] = 2, + ACTIONS(3538), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53513,13 +53438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3658), 43, + ACTIONS(3536), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53557,8 +53483,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27492] = 2, - ACTIONS(3656), 7, + [28321] = 3, + ACTIONS(3576), 1, + sym__emphasis_close_underscore, + ACTIONS(3546), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53566,13 +53494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 43, + ACTIONS(3544), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53610,8 +53538,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27547] = 2, - ACTIONS(3694), 7, + [28379] = 2, + ACTIONS(3524), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53619,13 +53547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3692), 43, + ACTIONS(3522), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53663,8 +53592,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27602] = 2, - ACTIONS(3652), 7, + [28435] = 2, + ACTIONS(3560), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53672,13 +53601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(3558), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53716,8 +53646,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27657] = 2, - ACTIONS(3702), 7, + [28491] = 2, + ACTIONS(3556), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53725,13 +53655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3700), 43, + ACTIONS(3554), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53769,10 +53700,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27712] = 3, - ACTIONS(3712), 1, - sym__emphasis_close_star, - ACTIONS(3686), 7, + [28547] = 2, + ACTIONS(3524), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53780,12 +53709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3684), 42, + ACTIONS(3522), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53823,8 +53754,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27769] = 2, - ACTIONS(3694), 7, + [28603] = 2, + ACTIONS(3556), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53832,16 +53763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3692), 43, + ACTIONS(3554), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -53876,8 +53808,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27824] = 2, - ACTIONS(3652), 7, + [28659] = 3, + ACTIONS(3578), 1, + sym__emphasis_close_underscore, + ACTIONS(3546), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53885,13 +53819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(3544), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53929,8 +53863,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27879] = 2, - ACTIONS(3682), 7, + [28717] = 2, + ACTIONS(3542), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53938,13 +53872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3680), 43, + ACTIONS(3540), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -53982,8 +53917,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27934] = 2, - ACTIONS(3706), 7, + [28773] = 2, + ACTIONS(3582), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -53991,13 +53926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 43, + ACTIONS(3580), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54035,8 +53971,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27989] = 2, - ACTIONS(3682), 7, + [28829] = 2, + ACTIONS(3560), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54044,13 +53980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3680), 43, + ACTIONS(3558), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54088,8 +54025,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28044] = 2, - ACTIONS(3706), 7, + [28885] = 2, + ACTIONS(3552), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54097,13 +54034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 43, + ACTIONS(3550), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54141,8 +54079,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28099] = 2, - ACTIONS(3706), 7, + [28941] = 2, + ACTIONS(3552), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54150,13 +54088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 43, + ACTIONS(3550), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, sym__strikethrough_open, + sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54194,8 +54133,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28154] = 2, - ACTIONS(3682), 7, + [28997] = 2, + ACTIONS(3556), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54203,13 +54142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3680), 43, + ACTIONS(3554), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym__strikethrough_open, - sym__strikethrough_close, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54247,8 +54187,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28209] = 2, - ACTIONS(3694), 7, + [29053] = 2, + ACTIONS(3524), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54256,13 +54196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3692), 43, + ACTIONS(3522), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54300,8 +54241,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28264] = 2, - ACTIONS(3668), 7, + [29109] = 2, + ACTIONS(3520), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54309,13 +54250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3666), 43, + ACTIONS(3518), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54353,8 +54295,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28319] = 2, - ACTIONS(3656), 7, + [29165] = 2, + ACTIONS(3546), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54362,13 +54304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 43, + ACTIONS(3544), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54406,8 +54349,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28374] = 2, - ACTIONS(3702), 7, + [29221] = 2, + ACTIONS(3528), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54415,13 +54358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3700), 43, + ACTIONS(3526), 44, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54459,8 +54403,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28429] = 2, - ACTIONS(3660), 7, + [29277] = 3, + ACTIONS(3584), 1, + sym__emphasis_close_star, + ACTIONS(3528), 7, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, @@ -54468,13 +54414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__declaration_token1, aux_sym__whitespace_token1, - ACTIONS(3658), 43, + ACTIONS(3526), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym__strikethrough_open, sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -54512,46 +54458,46 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28484] = 16, - ACTIONS(3714), 1, + [29335] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(3602), 1, anon_sym_RPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - STATE(1097), 1, - sym_link_title, - STATE(1100), 1, + STATE(1047), 1, sym_link_destination, - ACTIONS(3724), 2, + STATE(1049), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(729), 3, + STATE(656), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + STATE(699), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -54577,30 +54523,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28565] = 3, - ACTIONS(3738), 1, - sym__last_token_punctuation, - ACTIONS(2879), 4, + [29416] = 16, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3592), 1, anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_DQUOTE, + ACTIONS(3598), 1, + anon_sym_SQUOTE, + ACTIONS(3600), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + sym__newline_token, + ACTIONS(3606), 1, + sym__whitespace_ge_2, + ACTIONS(3608), 1, + aux_sym__whitespace_token1, + ACTIONS(3610), 1, + anon_sym_RPAREN, + STATE(996), 1, + sym_link_destination, + STATE(997), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2866), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym__backslash_escape, + STATE(699), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3590), 25, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, 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, @@ -54619,56 +54588,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [29497] = 16, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3592), 1, + anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_DQUOTE, + ACTIONS(3598), 1, + anon_sym_SQUOTE, + ACTIONS(3600), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3604), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3606), 1, sym__whitespace_ge_2, + ACTIONS(3608), 1, + aux_sym__whitespace_token1, + ACTIONS(3612), 1, + anon_sym_RPAREN, + STATE(1082), 1, + sym_link_title, + STATE(1091), 1, + sym_link_destination, + ACTIONS(3596), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(699), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - [28620] = 16, - ACTIONS(3714), 1, + ACTIONS(3590), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + 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_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29578] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3740), 1, + ACTIONS(3614), 1, anon_sym_RPAREN, - STATE(1010), 1, - sym_link_destination, - STATE(1011), 1, + STATE(1100), 1, sym_link_title, - ACTIONS(3724), 2, + STATE(1101), 1, + sym_link_destination, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(675), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -54694,46 +54718,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28701] = 16, - ACTIONS(3714), 1, + [29659] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3742), 1, + ACTIONS(3616), 1, anon_sym_RPAREN, - STATE(1108), 1, - sym_link_title, - STATE(1109), 1, + STATE(1000), 1, sym_link_destination, - ACTIONS(3724), 2, + STATE(1001), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(653), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -54759,46 +54783,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28782] = 16, - ACTIONS(3714), 1, + [29740] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3744), 1, + ACTIONS(3618), 1, anon_sym_RPAREN, - STATE(1084), 1, - sym_link_title, - STATE(1096), 1, + STATE(1050), 1, sym_link_destination, - ACTIONS(3724), 2, + STATE(1070), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(658), 3, + STATE(646), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -54824,46 +54848,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28863] = 16, - ACTIONS(3714), 1, + [29821] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3746), 1, + ACTIONS(3620), 1, anon_sym_RPAREN, - STATE(1005), 1, + STATE(1026), 1, sym_link_title, - STATE(1007), 1, + STATE(1027), 1, sym_link_destination, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(729), 3, + STATE(663), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + STATE(699), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -54889,46 +54913,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28944] = 16, - ACTIONS(3714), 1, + [29902] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3748), 1, + ACTIONS(3622), 1, anon_sym_RPAREN, - STATE(1008), 1, - sym_link_destination, - STATE(1009), 1, + STATE(1023), 1, sym_link_title, - ACTIONS(3724), 2, + STATE(1024), 1, + sym_link_destination, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(661), 3, + STATE(664), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -54954,53 +54978,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29025] = 16, - ACTIONS(3714), 1, + [29983] = 15, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, - anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3628), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, - anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3632), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3634), 1, + anon_sym_RPAREN, + ACTIONS(3637), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3640), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3643), 1, aux_sym__whitespace_token1, - ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(1048), 1, - sym_link_title, - STATE(1049), 1, - sym_link_destination, - ACTIONS(3724), 2, + ACTIONS(3646), 1, + sym__last_token_punctuation, + STATE(843), 1, + sym__soft_line_break, + ACTIONS(3630), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, - sym_backslash_escape, + STATE(684), 2, + sym__whitespace, + aux_sym_link_title_repeat1, + STATE(695), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(868), 2, + sym_backslash_escape, sym__word, - STATE(729), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + ACTIONS(3624), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3626), 27, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -55019,46 +55042,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29106] = 16, - ACTIONS(3714), 1, + [30062] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3752), 1, + ACTIONS(3648), 1, anon_sym_RPAREN, - STATE(1016), 1, + STATE(1055), 1, sym_link_destination, - STATE(1017), 1, + STATE(1056), 1, sym_link_title, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(729), 3, + STATE(717), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55084,46 +55107,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29187] = 16, - ACTIONS(3714), 1, + [30143] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3754), 1, + ACTIONS(3650), 1, anon_sym_RPAREN, - STATE(1053), 1, + STATE(1033), 1, sym_link_destination, - STATE(1054), 1, + STATE(1037), 1, sym_link_title, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(667), 3, + STATE(661), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55149,52 +55172,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29268] = 15, - ACTIONS(3714), 1, + [30224] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3760), 1, + ACTIONS(3592), 1, + anon_sym_LT, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3764), 1, + ACTIONS(3598), 1, + anon_sym_SQUOTE, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3772), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3775), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3778), 1, - sym__last_token_punctuation, - STATE(855), 1, - sym__soft_line_break, - ACTIONS(3762), 2, + ACTIONS(3652), 1, + anon_sym_RPAREN, + STATE(1094), 1, + sym_link_title, + STATE(1096), 1, + sym_link_destination, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(689), 2, - sym__whitespace, - aux_sym_link_title_repeat1, - STATE(703), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(875), 2, + STATE(699), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(3756), 4, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3758), 27, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -55213,46 +55237,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29347] = 16, - ACTIONS(3714), 1, + [30305] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3780), 1, + ACTIONS(3654), 1, anon_sym_RPAREN, - STATE(1063), 1, + STATE(1045), 1, sym_link_destination, - STATE(1064), 1, + STATE(1046), 1, sym_link_title, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, + STATE(662), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(729), 3, + ACTIONS(3588), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3590), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + 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_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [30386] = 16, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3592), 1, + anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_DQUOTE, + ACTIONS(3598), 1, + anon_sym_SQUOTE, + ACTIONS(3600), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + sym__newline_token, + ACTIONS(3606), 1, + sym__whitespace_ge_2, + ACTIONS(3608), 1, + aux_sym__whitespace_token1, + ACTIONS(3656), 1, + anon_sym_RPAREN, + STATE(1040), 1, + sym_link_destination, + STATE(1041), 1, + sym_link_title, + ACTIONS(3596), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(647), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + STATE(699), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55278,49 +55367,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29428] = 15, - ACTIONS(3714), 1, + [30467] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3760), 1, + ACTIONS(3592), 1, + anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_DQUOTE, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3769), 1, + ACTIONS(3600), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3772), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3775), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3778), 1, - sym__last_token_punctuation, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3658), 1, anon_sym_RPAREN, - STATE(854), 1, - sym__soft_line_break, - ACTIONS(3786), 2, + STATE(1042), 1, + sym_link_destination, + STATE(1043), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(694), 2, + STATE(654), 3, sym__whitespace, - aux_sym_link_title_repeat2, - STATE(703), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(883), 2, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(699), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(3782), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3784), 27, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -55342,46 +55432,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29507] = 16, - ACTIONS(3714), 1, + [30548] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3793), 1, + ACTIONS(3660), 1, anon_sym_RPAREN, - STATE(1044), 1, - sym_link_title, - STATE(1083), 1, + STATE(1031), 1, sym_link_destination, - ACTIONS(3724), 2, + STATE(1032), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(677), 3, + STATE(648), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55407,46 +55497,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29588] = 16, - ACTIONS(3714), 1, + [30629] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3795), 1, + ACTIONS(3662), 1, anon_sym_RPAREN, - STATE(1067), 1, + STATE(1075), 1, sym_link_destination, - STATE(1068), 1, + STATE(1083), 1, sym_link_title, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(729), 3, + STATE(717), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55472,46 +55562,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29669] = 16, - ACTIONS(3714), 1, + [30710] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3797), 1, + ACTIONS(3664), 1, anon_sym_RPAREN, - STATE(1045), 1, - sym_link_title, - STATE(1046), 1, + STATE(1059), 1, sym_link_destination, - ACTIONS(3724), 2, + STATE(1060), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(729), 3, + STATE(717), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55537,46 +55627,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29750] = 16, - ACTIONS(3714), 1, + [30791] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3799), 1, + ACTIONS(3666), 1, anon_sym_RPAREN, - STATE(1099), 1, + STATE(986), 1, sym_link_destination, - STATE(1106), 1, + STATE(992), 1, sym_link_title, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(676), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55602,46 +55692,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29831] = 16, - ACTIONS(3714), 1, + [30872] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3801), 1, + ACTIONS(3668), 1, anon_sym_RPAREN, - STATE(1061), 1, - sym_link_title, - STATE(1065), 1, + STATE(1008), 1, sym_link_destination, - ACTIONS(3724), 2, + STATE(1016), 1, + sym_link_title, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(660), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + STATE(717), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55667,46 +55757,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29912] = 16, - ACTIONS(3714), 1, + [30953] = 16, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, + ACTIONS(3592), 1, anon_sym_LT, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3803), 1, + ACTIONS(3670), 1, anon_sym_RPAREN, - STATE(1050), 1, + STATE(984), 1, sym_link_destination, - STATE(1051), 1, + STATE(985), 1, sym_link_title, - ACTIONS(3724), 2, + ACTIONS(3596), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(664), 3, + STATE(649), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(700), 3, + STATE(699), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(3716), 4, + ACTIONS(3588), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3590), 25, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -55732,50 +55822,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29993] = 16, - ACTIONS(3714), 1, + [31034] = 15, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3720), 1, - anon_sym_LT, - ACTIONS(3722), 1, - anon_sym_DQUOTE, - ACTIONS(3726), 1, + ACTIONS(3628), 1, anon_sym_SQUOTE, - ACTIONS(3728), 1, - anon_sym_LPAREN, - ACTIONS(3732), 1, + ACTIONS(3637), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3640), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3643), 1, aux_sym__whitespace_token1, - ACTIONS(3805), 1, + ACTIONS(3646), 1, + sym__last_token_punctuation, + ACTIONS(3678), 1, + anon_sym_LPAREN, + ACTIONS(3680), 1, anon_sym_RPAREN, - STATE(1059), 1, - sym_link_title, - STATE(1060), 1, - sym_link_destination, - ACTIONS(3724), 2, + STATE(838), 1, + sym__soft_line_break, + ACTIONS(3676), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(668), 3, + STATE(688), 2, sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(700), 3, - sym_backslash_escape, + aux_sym_link_title_repeat2, + STATE(695), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(878), 2, + sym_backslash_escape, sym__word, - ACTIONS(3716), 4, + ACTIONS(3672), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3674), 27, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -55797,19 +55886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30074] = 3, - ACTIONS(3807), 1, + [31113] = 3, + ACTIONS(3683), 1, sym__last_token_whitespace, - ACTIONS(3165), 4, + ACTIONS(2975), 4, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3163), 43, - sym__code_span_start, + ACTIONS(2973), 42, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -55849,29 +55937,41 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [30129] = 3, - ACTIONS(3809), 1, - sym__last_token_whitespace, - ACTIONS(3292), 4, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + [31167] = 9, + ACTIONS(2710), 1, + sym__newline_token, + ACTIONS(2717), 1, + sym__whitespace_ge_2, + ACTIONS(2720), 1, aux_sym__whitespace_token1, - ACTIONS(3290), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3685), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2704), 2, anon_sym_RBRACK, + anon_sym_LT, + ACTIONS(3687), 2, + sym__word_no_digit, + sym__digits, + STATE(790), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 5, + sym__latex_span_close, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2707), 30, + anon_sym_LBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -55884,6 +55984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -55893,61 +55994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [30184] = 16, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3720), 1, + [31233] = 3, + ACTIONS(3690), 1, + sym__last_token_punctuation, + ACTIONS(2713), 4, anon_sym_LT, - ACTIONS(3722), 1, - anon_sym_DQUOTE, - ACTIONS(3726), 1, - anon_sym_SQUOTE, - ACTIONS(3728), 1, - anon_sym_LPAREN, - ACTIONS(3732), 1, - sym__newline_token, - ACTIONS(3734), 1, - sym__whitespace_ge_2, - ACTIONS(3736), 1, - aux_sym__whitespace_token1, - ACTIONS(3811), 1, - anon_sym_RPAREN, - STATE(1019), 1, - sym_link_destination, - STATE(1020), 1, - sym_link_title, - ACTIONS(3724), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(729), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + aux_sym__whitespace_token1, + ACTIONS(2698), 42, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(3718), 25, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, 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, @@ -55966,53 +56035,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30265] = 16, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3720), 1, - anon_sym_LT, - ACTIONS(3722), 1, - anon_sym_DQUOTE, - ACTIONS(3726), 1, - anon_sym_SQUOTE, - ACTIONS(3728), 1, anon_sym_LPAREN, - ACTIONS(3732), 1, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [31287] = 13, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3813), 1, + ACTIONS(3698), 1, + anon_sym_LPAREN, + ACTIONS(3700), 1, anon_sym_RPAREN, - STATE(1102), 1, - sym_link_title, - STATE(1104), 1, - sym_link_destination, - ACTIONS(3724), 2, + STATE(867), 1, + sym__soft_line_break, + ACTIONS(3696), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(700), 3, - sym_backslash_escape, + STATE(696), 2, + sym__whitespace, + aux_sym_link_title_repeat3, + STATE(830), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(865), 2, + sym_backslash_escape, sym__word, - STATE(729), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, + ACTIONS(3692), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + ACTIONS(3694), 28, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, 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, @@ -56031,53 +56106,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30346] = 16, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3720), 1, - anon_sym_LT, - ACTIONS(3722), 1, - anon_sym_DQUOTE, - ACTIONS(3726), 1, - anon_sym_SQUOTE, - ACTIONS(3728), 1, - anon_sym_LPAREN, - ACTIONS(3732), 1, + [31361] = 9, + ACTIONS(2710), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(2717), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(2720), 1, aux_sym__whitespace_token1, - ACTIONS(3815), 1, - anon_sym_RPAREN, - STATE(998), 1, - sym_link_destination, - STATE(999), 1, - sym_link_title, - ACTIONS(3724), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(700), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(729), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(3716), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3702), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2704), 2, + anon_sym_RBRACK, + anon_sym_LT, + ACTIONS(3704), 2, sym__word_no_digit, sym__digits, - ACTIONS(3718), 25, + STATE(795), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 5, + sym__code_span_close, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2707), 30, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -56089,6 +56153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -56096,20 +56161,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30427] = 2, - ACTIONS(3419), 4, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31427] = 9, + ACTIONS(2732), 1, + sym__newline_token, + ACTIONS(2737), 1, + sym__whitespace_ge_2, + ACTIONS(2740), 1, aux_sym__whitespace_token1, - ACTIONS(3417), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(3707), 1, + anon_sym_QMARK_GT, + ACTIONS(2729), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3709), 2, + sym__word_no_digit, + sym__digits, + STATE(793), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 5, + sym__code_span_close, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2726), 30, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -56117,6 +56198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -56127,8 +56209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -56138,28 +56220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [31493] = 9, + ACTIONS(2732), 1, sym__newline_token, + ACTIONS(2737), 1, + sym__whitespace_ge_2, + ACTIONS(2740), 1, + aux_sym__whitespace_token1, + ACTIONS(3712), 1, + anon_sym_QMARK_GT, + ACTIONS(2729), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3714), 2, + sym__word_no_digit, + sym__digits, + STATE(787), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 5, + sym__latex_span_close, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [30479] = 2, - ACTIONS(3411), 4, - anon_sym_LT, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3409), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__latex_span_start, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(2726), 30, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, @@ -56167,6 +56255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -56177,8 +56266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -56188,50 +56277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [30531] = 13, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3732), 1, - sym__newline_token, - ACTIONS(3734), 1, - sym__whitespace_ge_2, - ACTIONS(3736), 1, - aux_sym__whitespace_token1, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(3825), 1, - anon_sym_RPAREN, - STATE(884), 1, - sym__soft_line_break, - ACTIONS(3821), 2, + [31559] = 3, + ACTIONS(3717), 1, + sym__last_token_whitespace, + ACTIONS(2877), 4, + anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, - STATE(702), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(847), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(874), 2, - sym_backslash_escape, - sym__word, - ACTIONS(3817), 4, + aux_sym__whitespace_token1, + ACTIONS(2875), 42, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(3819), 28, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -56257,41 +56318,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30605] = 9, - ACTIONS(2898), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, sym__newline_token, - ACTIONS(2903), 1, - sym__whitespace_ge_2, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(3827), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2895), 2, - anon_sym_RBRACK, - anon_sym_LT, - ACTIONS(3829), 2, - sym__word_no_digit, - sym__digits, - STATE(814), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 5, - sym__code_span_close, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 30, - anon_sym_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [31613] = 2, + ACTIONS(3278), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3276), 42, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -56304,7 +56360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -56314,41 +56369,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [30671] = 9, - ACTIONS(2898), 1, sym__newline_token, - ACTIONS(2903), 1, - sym__whitespace_ge_2, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(3832), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(2895), 2, - anon_sym_RBRACK, - anon_sym_LT, - ACTIONS(3834), 2, - sym__word_no_digit, - sym__digits, - STATE(765), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 5, - sym__latex_span_close, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2892), 30, - anon_sym_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [31664] = 2, + ACTIONS(3311), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3309), 42, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__unclosed_span, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -56361,7 +56409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -56371,93 +56418,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [30737] = 9, - ACTIONS(2876), 1, sym__newline_token, - ACTIONS(2883), 1, - sym__whitespace_ge_2, - ACTIONS(2886), 1, - aux_sym__whitespace_token1, - ACTIONS(3837), 1, - anon_sym_QMARK_GT, - ACTIONS(2870), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3839), 2, - sym__word_no_digit, - sym__digits, - STATE(762), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 5, - sym__latex_span_close, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 30, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - 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_AT, - 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_LPAREN, - anon_sym_RPAREN, - [30803] = 9, - ACTIONS(2876), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [31715] = 10, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2883), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2886), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(3842), 1, - anon_sym_QMARK_GT, - ACTIONS(2870), 2, + ACTIONS(3722), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3844), 2, + ACTIONS(3725), 1, + anon_sym_DASH, + ACTIONS(3728), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3730), 2, sym__word_no_digit, sym__digits, - STATE(767), 4, + STATE(792), 3, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2866), 5, + ACTIONS(2698), 6, sym__code_span_close, + anon_sym_GT, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(2873), 30, + ACTIONS(3719), 29, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -56468,12 +56466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -56485,17 +56483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [30869] = 2, - ACTIONS(3443), 4, + [31782] = 2, + ACTIONS(3365), 4, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3441), 43, - sym__code_span_start, + ACTIONS(3363), 42, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -56535,17 +56532,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [30921] = 2, - ACTIONS(3435), 4, + [31833] = 2, + ACTIONS(3256), 4, anon_sym_LT, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3433), 43, - sym__code_span_start, + ACTIONS(3254), 42, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__latex_span_start, + sym__unclosed_span, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -56585,34 +56581,34 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [30973] = 10, - ACTIONS(2957), 1, + [31884] = 10, + ACTIONS(2787), 1, sym__newline_token, - ACTIONS(2962), 1, + ACTIONS(2792), 1, sym__whitespace_ge_2, - ACTIONS(2965), 1, + ACTIONS(2795), 1, aux_sym__whitespace_token1, - ACTIONS(3850), 1, + ACTIONS(3736), 1, anon_sym_LT, - ACTIONS(3853), 1, + ACTIONS(3739), 1, anon_sym_DASH, - ACTIONS(3856), 1, + ACTIONS(3742), 1, anon_sym_DASH_DASH_GT, - ACTIONS(3858), 2, + ACTIONS(3744), 2, sym__word_no_digit, sym__digits, - STATE(761), 3, + STATE(782), 3, sym__whitespace, sym__word, sym__soft_line_break, - ACTIONS(2866), 6, + ACTIONS(2698), 6, sym__latex_span_close, anon_sym_GT, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3847), 29, + ACTIONS(3733), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_BANG, @@ -56642,90 +56638,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [31040] = 10, - ACTIONS(2957), 1, - sym__newline_token, - ACTIONS(2962), 1, - sym__whitespace_ge_2, - ACTIONS(2965), 1, - aux_sym__whitespace_token1, - ACTIONS(3864), 1, - anon_sym_LT, - ACTIONS(3867), 1, - anon_sym_DASH, - ACTIONS(3870), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3872), 2, - sym__word_no_digit, - sym__digits, - STATE(735), 3, - sym__whitespace, - sym__word, - sym__soft_line_break, - ACTIONS(2866), 6, - sym__code_span_close, - anon_sym_GT, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3861), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - 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_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [31107] = 10, - ACTIONS(3714), 1, + [31951] = 10, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3879), 1, + ACTIONS(3751), 1, anon_sym_DQUOTE, - STATE(855), 1, + STATE(843), 1, sym__soft_line_break, - ACTIONS(3881), 2, + ACTIONS(3753), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3875), 4, + ACTIONS(3747), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(693), 4, + STATE(684), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat1, - ACTIONS(3877), 29, + ACTIONS(3749), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -56755,33 +56694,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [31173] = 10, - ACTIONS(3883), 1, + [32017] = 10, + ACTIONS(3755), 1, sym__backslash_escape, - ACTIONS(3895), 1, - anon_sym_SQUOTE, - ACTIONS(3897), 1, - sym__newline_token, - ACTIONS(3900), 1, - sym__whitespace_ge_2, - ACTIONS(3903), 1, + ACTIONS(3767), 1, + anon_sym_LPAREN, + ACTIONS(3770), 1, + anon_sym_RPAREN, + ACTIONS(3775), 1, aux_sym__whitespace_token1, - STATE(854), 1, - sym__soft_line_break, - ACTIONS(3892), 2, + ACTIONS(3777), 1, + sym__last_token_punctuation, + ACTIONS(3764), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3886), 4, + ACTIONS(3773), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3758), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(690), 4, + STATE(830), 4, sym_backslash_escape, - sym__whitespace, + sym__link_destination_parenthesis, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(3889), 29, + aux_sym_link_destination_repeat2, + ACTIONS(3761), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -56791,6 +56731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -56809,35 +56750,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [31239] = 10, - ACTIONS(3714), 1, + [32083] = 10, + ACTIONS(3779), 1, sym__backslash_escape, - ACTIONS(3732), 1, + ACTIONS(3788), 1, + anon_sym_DQUOTE, + ACTIONS(3793), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3796), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3799), 1, aux_sym__whitespace_token1, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - STATE(855), 1, + STATE(843), 1, sym__soft_line_break, - ACTIONS(3881), 2, + ACTIONS(3790), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3906), 4, + ACTIONS(3782), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(689), 4, + STATE(683), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat1, - ACTIONS(3877), 29, + ACTIONS(3785), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -56867,89 +56806,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [31305] = 10, - ACTIONS(3714), 1, + [32149] = 10, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3908), 1, - anon_sym_SQUOTE, - STATE(854), 1, - sym__soft_line_break, - ACTIONS(3914), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(3910), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(694), 4, - sym_backslash_escape, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(3912), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_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_LPAREN, - anon_sym_RPAREN, - [31371] = 10, - ACTIONS(3916), 1, - sym__backslash_escape, - ACTIONS(3925), 1, + ACTIONS(3804), 1, anon_sym_DQUOTE, - ACTIONS(3930), 1, - sym__newline_token, - ACTIONS(3933), 1, - sym__whitespace_ge_2, - ACTIONS(3936), 1, - aux_sym__whitespace_token1, - STATE(855), 1, + STATE(843), 1, sym__soft_line_break, - ACTIONS(3927), 2, + ACTIONS(3753), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3919), 4, + ACTIONS(3802), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(693), 4, + STATE(683), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat1, - ACTIONS(3922), 29, + ACTIONS(3749), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -56979,33 +56862,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [31437] = 10, - ACTIONS(3714), 1, + [32215] = 9, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3732), 1, - sym__newline_token, - ACTIONS(3734), 1, - sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3646), 1, + sym__last_token_punctuation, + ACTIONS(3698), 1, + anon_sym_LPAREN, + ACTIONS(3814), 1, aux_sym__whitespace_token1, - ACTIONS(3879), 1, - anon_sym_SQUOTE, - STATE(854), 1, - sym__soft_line_break, - ACTIONS(3914), 2, + ACTIONS(3810), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3939), 4, + ACTIONS(3812), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3806), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(690), 4, + STATE(695), 4, sym_backslash_escape, - sym__whitespace, + sym__link_destination_parenthesis, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(3912), 29, + aux_sym_link_destination_repeat2, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57015,6 +56898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -57033,36 +56917,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [31503] = 10, - ACTIONS(3941), 1, + [32279] = 10, + ACTIONS(3816), 1, sym__backslash_escape, - ACTIONS(3953), 1, + ACTIONS(3828), 1, anon_sym_LPAREN, - ACTIONS(3956), 1, + ACTIONS(3831), 1, anon_sym_RPAREN, - ACTIONS(3961), 1, + ACTIONS(3836), 1, aux_sym__whitespace_token1, - ACTIONS(3963), 1, + ACTIONS(3838), 1, sym__last_token_punctuation, - ACTIONS(3950), 2, + ACTIONS(3825), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3959), 2, + ACTIONS(3834), 2, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(3944), 4, + ACTIONS(3819), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(847), 4, + STATE(830), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(3947), 28, + ACTIONS(3822), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57091,34 +56973,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31569] = 10, - ACTIONS(3965), 1, + [32345] = 10, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3977), 1, - anon_sym_LPAREN, - ACTIONS(3980), 1, - anon_sym_RPAREN, - ACTIONS(3985), 1, + ACTIONS(3604), 1, + sym__newline_token, + ACTIONS(3606), 1, + sym__whitespace_ge_2, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3987), 1, - sym__last_token_punctuation, - ACTIONS(3974), 2, + ACTIONS(3751), 1, + anon_sym_SQUOTE, + STATE(838), 1, + sym__soft_line_break, + ACTIONS(3844), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3983), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(3968), 4, + ACTIONS(3840), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(847), 4, + STATE(688), 4, sym_backslash_escape, - sym__link_destination_parenthesis, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(3971), 28, + aux_sym_link_title_repeat2, + ACTIONS(3842), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57128,7 +57009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -57147,33 +57027,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31635] = 9, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3778), 1, - sym__last_token_punctuation, - ACTIONS(3823), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, - aux_sym__whitespace_token1, - ACTIONS(3993), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(3995), 3, anon_sym_RPAREN, + [32411] = 10, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3604), 1, sym__newline_token, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3989), 4, + ACTIONS(3608), 1, + aux_sym__whitespace_token1, + ACTIONS(3804), 1, + anon_sym_SQUOTE, + STATE(838), 1, + sym__soft_line_break, + ACTIONS(3844), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3846), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(703), 4, + STATE(689), 4, sym_backslash_escape, - sym__link_destination_parenthesis, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + aux_sym_link_title_repeat2, + ACTIONS(3842), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57183,7 +57065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -57202,30 +57083,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31699] = 6, - ACTIONS(2879), 1, - anon_sym_LT, - ACTIONS(3059), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32477] = 10, + ACTIONS(3848), 1, + sym__backslash_escape, + ACTIONS(3860), 1, + anon_sym_SQUOTE, + ACTIONS(3862), 1, sym__newline_token, - ACTIONS(3062), 1, + ACTIONS(3865), 1, sym__whitespace_ge_2, - ACTIONS(3065), 1, + ACTIONS(3868), 1, aux_sym__whitespace_token1, - STATE(840), 2, - sym__whitespace, + STATE(838), 1, sym__soft_line_break, - ACTIONS(2866), 38, - sym__code_span_close, + ACTIONS(3857), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3851), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(3854), 29, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -57237,7 +57132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -57247,25 +57141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [32543] = 6, + ACTIONS(2884), 1, sym__word_no_digit, - sym__digits, - [31756] = 6, - ACTIONS(3146), 1, - sym__word_no_digit, - ACTIONS(3999), 1, + ACTIONS(3871), 1, anon_sym_SLASH, - ACTIONS(4002), 1, + ACTIONS(3874), 1, sym__last_token_punctuation, - STATE(957), 1, + STATE(958), 1, sym__tag_name, - ACTIONS(2879), 2, + ACTIONS(2713), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(2866), 38, + ACTIONS(2698), 38, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -57304,31 +57192,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, sym__digits, - [31813] = 8, - ACTIONS(3714), 1, + [32600] = 8, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3823), 1, + ACTIONS(3698), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3880), 1, aux_sym__whitespace_token1, - ACTIONS(3993), 2, + ACTIONS(3810), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(3995), 3, + ACTIONS(3878), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(3989), 4, + ACTIONS(3876), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(703), 4, + STATE(692), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57357,20 +57245,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31874] = 6, - ACTIONS(3146), 1, + [32661] = 8, + ACTIONS(3882), 1, + sym__backslash_escape, + ACTIONS(3894), 1, + anon_sym_LPAREN, + ACTIONS(3899), 1, + aux_sym__whitespace_token1, + ACTIONS(3891), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3897), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3885), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, - ACTIONS(4004), 1, + sym__digits, + STATE(692), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3888), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + 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, - ACTIONS(4007), 1, - sym__last_token_punctuation, - STATE(956), 1, - sym__tag_name, - ACTIONS(2879), 2, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [32722] = 6, + ACTIONS(2713), 1, anon_sym_LT, + ACTIONS(2896), 1, + sym__newline_token, + ACTIONS(2899), 1, + sym__whitespace_ge_2, + ACTIONS(2902), 1, aux_sym__whitespace_token1, - ACTIONS(2866), 38, - sym__code_span_close, + STATE(848), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2698), 38, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -57386,6 +57327,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, @@ -57401,40 +57343,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, - [31931] = 10, - ACTIONS(3714), 1, + [32779] = 8, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3732), 1, - sym__newline_token, - ACTIONS(3734), 1, - sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3698), 1, + anon_sym_LPAREN, + ACTIONS(3905), 1, aux_sym__whitespace_token1, - ACTIONS(3879), 1, - anon_sym_RPAREN, - STATE(884), 1, - sym__soft_line_break, - ACTIONS(4013), 2, + ACTIONS(3810), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4009), 4, + ACTIONS(3903), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3901), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(707), 4, + STATE(691), 4, sym_backslash_escape, - sym__whitespace, + sym__link_destination_parenthesis, sym__word, - aux_sym_link_title_repeat3, - ACTIONS(4011), 28, + aux_sym_link_destination_repeat2, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57463,31 +57402,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31996] = 8, - ACTIONS(3714), 1, + [32840] = 8, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3823), 1, + ACTIONS(3698), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, + ACTIONS(3905), 1, aux_sym__whitespace_token1, - ACTIONS(3993), 2, + ACTIONS(3810), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4017), 3, + ACTIONS(3903), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4015), 4, + ACTIONS(3876), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(706), 4, + STATE(692), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57516,33 +57455,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32057] = 10, - ACTIONS(3714), 1, + [32901] = 10, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3732), 1, + ACTIONS(3604), 1, sym__newline_token, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3908), 1, + ACTIONS(3804), 1, anon_sym_RPAREN, - STATE(884), 1, + STATE(867), 1, sym__soft_line_break, - ACTIONS(4013), 2, + ACTIONS(3911), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4021), 4, + ACTIONS(3907), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(702), 4, + STATE(698), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat3, - ACTIONS(4011), 28, + ACTIONS(3909), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57571,31 +57510,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32122] = 8, - ACTIONS(3714), 1, + [32966] = 10, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(4019), 1, + ACTIONS(3604), 1, + sym__newline_token, + ACTIONS(3606), 1, + sym__whitespace_ge_2, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(3993), 2, + ACTIONS(3751), 1, + anon_sym_RPAREN, + STATE(867), 1, + sym__soft_line_break, + ACTIONS(3911), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4017), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4023), 4, + ACTIONS(3913), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(709), 4, + STATE(696), 4, sym_backslash_escape, - sym__link_destination_parenthesis, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + aux_sym_link_title_repeat3, + ACTIONS(3909), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57624,31 +57565,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32183] = 8, - ACTIONS(4025), 1, + [33031] = 10, + ACTIONS(3915), 1, sym__backslash_escape, - ACTIONS(4037), 1, - anon_sym_LPAREN, - ACTIONS(4042), 1, - aux_sym__whitespace_token1, - ACTIONS(4034), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4040), 3, + ACTIONS(3927), 1, anon_sym_RPAREN, + ACTIONS(3929), 1, sym__newline_token, + ACTIONS(3932), 1, sym__whitespace_ge_2, - ACTIONS(4028), 4, + ACTIONS(3935), 1, + aux_sym__whitespace_token1, + STATE(867), 1, + sym__soft_line_break, + ACTIONS(3924), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3918), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(706), 4, + STATE(698), 4, sym_backslash_escape, - sym__link_destination_parenthesis, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4031), 28, + aux_sym_link_title_repeat3, + ACTIONS(3921), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57677,33 +57620,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32244] = 10, - ACTIONS(4044), 1, + [33096] = 8, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(4056), 1, - anon_sym_RPAREN, - ACTIONS(4058), 1, - sym__newline_token, - ACTIONS(4061), 1, - sym__whitespace_ge_2, - ACTIONS(4064), 1, + ACTIONS(3698), 1, + anon_sym_LPAREN, + ACTIONS(3814), 1, aux_sym__whitespace_token1, - STATE(884), 1, - sym__soft_line_break, - ACTIONS(4053), 2, + ACTIONS(3810), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4047), 4, + ACTIONS(3812), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3806), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(707), 4, + STATE(695), 4, sym_backslash_escape, - sym__whitespace, + sym__link_destination_parenthesis, sym__word, - aux_sym_link_title_repeat3, - ACTIONS(4050), 28, + aux_sym_link_destination_repeat2, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57732,20 +57673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32309] = 6, - ACTIONS(2879), 1, + [33157] = 6, + ACTIONS(2884), 1, + sym__word_no_digit, + ACTIONS(3938), 1, + anon_sym_SLASH, + ACTIONS(3941), 1, + sym__last_token_punctuation, + STATE(952), 1, + sym__tag_name, + ACTIONS(2713), 2, anon_sym_LT, - ACTIONS(3059), 1, - sym__newline_token, - ACTIONS(3062), 1, - sym__whitespace_ge_2, - ACTIONS(3065), 1, aux_sym__whitespace_token1, - STATE(842), 2, - sym__whitespace, - sym__soft_line_break, - ACTIONS(2866), 38, - sym__latex_span_close, + ACTIONS(2698), 38, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -57761,7 +57702,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, @@ -57777,46 +57717,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__declaration_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__word_no_digit, + sym__whitespace_ge_2, sym__digits, - [32366] = 8, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(4069), 1, - aux_sym__whitespace_token1, - ACTIONS(3993), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4067), 3, - anon_sym_RPAREN, + [33214] = 6, + ACTIONS(2713), 1, + anon_sym_LT, + ACTIONS(2896), 1, sym__newline_token, + ACTIONS(2899), 1, sym__whitespace_ge_2, - ACTIONS(4015), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(706), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + ACTIONS(2902), 1, + aux_sym__whitespace_token1, + STATE(846), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2698), 38, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -57829,6 +57759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -57836,16 +57767,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32427] = 3, - ACTIONS(4007), 1, - sym__last_token_punctuation, - ACTIONS(2879), 2, - anon_sym_LT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [33271] = 9, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3949), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(2866), 40, - sym__code_span_close, + ACTIONS(3957), 1, + sym__last_token_punctuation, + ACTIONS(3955), 2, + sym__word_no_digit, + sym__digits, + STATE(771), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -57857,7 +57811,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, @@ -57875,36 +57828,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [32477] = 9, - ACTIONS(4073), 1, + [33333] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4077), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4085), 1, + ACTIONS(3959), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3963), 1, sym__last_token_punctuation, - ACTIONS(4083), 2, + ACTIONS(3961), 2, sym__word_no_digit, sym__digits, - STATE(829), 4, + STATE(773), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -57936,31 +57881,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32539] = 9, - ACTIONS(4073), 1, + [33395] = 3, + ACTIONS(3874), 1, + sym__last_token_punctuation, + ACTIONS(2713), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(2698), 40, + sym__latex_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH, - ACTIONS(4075), 1, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + 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_LPAREN, + anon_sym_RPAREN, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4087), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4091), 1, - sym__last_token_punctuation, - ACTIONS(4089), 2, sym__word_no_digit, sym__digits, - STATE(797), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + [33445] = 3, + ACTIONS(3965), 1, + sym__last_token_whitespace, + ACTIONS(2975), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(2973), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -57972,6 +57949,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, @@ -57989,31 +57967,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32601] = 9, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4093), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4097), 1, - sym__last_token_punctuation, - ACTIONS(4095), 2, sym__word_no_digit, sym__digits, - STATE(750), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + [33495] = 3, + ACTIONS(3941), 1, + sym__last_token_punctuation, + ACTIONS(2713), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(2698), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -58025,6 +57996,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, @@ -58042,37 +58014,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32663] = 8, - ACTIONS(4099), 1, - sym__backslash_escape, - ACTIONS(4108), 1, - anon_sym_GT, - ACTIONS(4113), 1, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4116), 1, - aux_sym__whitespace_token1, - ACTIONS(4110), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4102), 4, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(714), 5, - sym_backslash_escape, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(4105), 28, + [33545] = 3, + ACTIONS(3967), 1, + sym__last_token_whitespace, + ACTIONS(2877), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(2875), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -58085,6 +58051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -58094,28 +58061,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32723] = 9, - ACTIONS(4073), 1, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [33595] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4119), 1, + ACTIONS(3969), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4123), 1, + ACTIONS(3973), 1, sym__last_token_punctuation, - ACTIONS(4121), 2, + ACTIONS(3971), 2, sym__word_no_digit, sym__digits, - STATE(824), 4, + STATE(750), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58147,28 +58122,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32785] = 9, - ACTIONS(4073), 1, + [33657] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4125), 1, + ACTIONS(3975), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4129), 1, + ACTIONS(3979), 1, sym__last_token_punctuation, - ACTIONS(4127), 2, + ACTIONS(3977), 2, sym__word_no_digit, sym__digits, - STATE(796), 4, + STATE(811), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58200,28 +58175,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32847] = 9, - ACTIONS(4073), 1, + [33719] = 8, + ACTIONS(3981), 1, + sym__backslash_escape, + ACTIONS(3990), 1, + anon_sym_GT, + ACTIONS(3995), 1, + sym__whitespace_ge_2, + ACTIONS(3998), 1, + aux_sym__whitespace_token1, + ACTIONS(3992), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3984), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(710), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(3987), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, - ACTIONS(4075), 1, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33779] = 9, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4131), 1, + ACTIONS(4001), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4135), 1, + ACTIONS(4005), 1, sym__last_token_punctuation, - ACTIONS(4133), 2, + ACTIONS(4003), 2, sym__word_no_digit, sym__digits, - STATE(803), 4, + STATE(801), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58253,28 +58280,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32909] = 9, - ACTIONS(4073), 1, + [33841] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4137), 1, + ACTIONS(4007), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4141), 1, + ACTIONS(4011), 1, sym__last_token_punctuation, - ACTIONS(4139), 2, + ACTIONS(4009), 2, sym__word_no_digit, sym__digits, - STATE(759), 4, + STATE(823), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58306,28 +58333,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [32971] = 9, - ACTIONS(4073), 1, + [33903] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4143), 1, + ACTIONS(4013), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4147), 1, + ACTIONS(4017), 1, sym__last_token_punctuation, - ACTIONS(4145), 2, + ACTIONS(4015), 2, sym__word_no_digit, sym__digits, - STATE(811), 4, + STATE(768), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58359,16 +58386,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33033] = 3, - ACTIONS(4149), 1, - sym__last_token_whitespace, - ACTIONS(3292), 2, - anon_sym_LT, + [33965] = 9, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3290), 40, - sym__code_span_close, + ACTIONS(4019), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4023), 1, + sym__last_token_punctuation, + ACTIONS(4021), 2, + sym__word_no_digit, + sym__digits, + STATE(727), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -58380,7 +58422,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, @@ -58398,50 +58439,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [34027] = 9, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [33083] = 8, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3734), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4155), 1, - anon_sym_GT, - ACTIONS(4157), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4151), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4025), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4029), 1, + sym__last_token_punctuation, + ACTIONS(4027), 2, sym__word_no_digit, sym__digits, - STATE(726), 5, - sym_backslash_escape, - sym__text_no_angle, + STATE(775), 4, sym__whitespace, sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(4153), 28, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -58449,6 +58482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -58458,28 +58492,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33143] = 9, - ACTIONS(4073), 1, + [34089] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4159), 1, + ACTIONS(4031), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4163), 1, + ACTIONS(4035), 1, sym__last_token_punctuation, - ACTIONS(4161), 2, + ACTIONS(4033), 2, sym__word_no_digit, sym__digits, - STATE(781), 4, + STATE(814), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58511,28 +58545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33205] = 9, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, + [34151] = 6, + ACTIONS(4041), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4044), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4047), 1, aux_sym__whitespace_token1, - ACTIONS(4165), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4169), 1, - sym__last_token_punctuation, - ACTIONS(4167), 2, - sym__word_no_digit, - sym__digits, - STATE(786), 4, + ACTIONS(4039), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(717), 3, sym__whitespace, - sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym_inline_link_repeat1, + ACTIONS(4037), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58542,11 +58572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -58554,7 +58584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -58564,28 +58593,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33267] = 9, - ACTIONS(4073), 1, + sym__word_no_digit, + sym__digits, + [34207] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4171), 1, + ACTIONS(4050), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4175), 1, + ACTIONS(4054), 1, sym__last_token_punctuation, - ACTIONS(4173), 2, + ACTIONS(4052), 2, sym__word_no_digit, sym__digits, - STATE(818), 4, + STATE(822), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58617,28 +58648,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33329] = 9, - ACTIONS(4073), 1, + [34269] = 9, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4177), 1, + ACTIONS(4056), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4181), 1, + ACTIONS(4060), 1, sym__last_token_punctuation, - ACTIONS(4179), 2, + ACTIONS(4058), 2, sym__word_no_digit, sym__digits, - STATE(739), 4, + STATE(761), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -58670,30 +58701,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33391] = 8, - ACTIONS(3714), 1, + [34331] = 8, + ACTIONS(3586), 1, sym__backslash_escape, - ACTIONS(3734), 1, + ACTIONS(3606), 1, sym__whitespace_ge_2, - ACTIONS(3736), 1, + ACTIONS(3608), 1, + aux_sym__whitespace_token1, + ACTIONS(4066), 1, + anon_sym_GT, + ACTIONS(4068), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4062), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(721), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(4064), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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_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_LPAREN, + anon_sym_RPAREN, + [34391] = 8, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3606), 1, + sym__whitespace_ge_2, + ACTIONS(3608), 1, aux_sym__whitespace_token1, - ACTIONS(4185), 1, + ACTIONS(4072), 1, anon_sym_GT, - ACTIONS(4157), 2, + ACTIONS(4068), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4183), 4, + ACTIONS(4070), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(714), 5, + STATE(710), 5, sym_backslash_escape, sym__text_no_angle, sym__whitespace, sym__word, aux_sym_link_destination_repeat1, - ACTIONS(4153), 28, + ACTIONS(4064), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_BANG, @@ -58722,16 +58805,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33451] = 3, - ACTIONS(4002), 1, - sym__last_token_punctuation, - ACTIONS(2879), 2, - anon_sym_LT, + [34451] = 9, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(2866), 40, - sym__latex_span_close, + ACTIONS(4074), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4078), 1, + sym__last_token_punctuation, + ACTIONS(4076), 2, + sym__word_no_digit, + sym__digits, + STATE(749), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -58743,7 +58841,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, @@ -58761,24 +58858,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [34513] = 9, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3951), 1, sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4080), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4084), 1, + sym__last_token_punctuation, + ACTIONS(4082), 2, sym__word_no_digit, sym__digits, - [33501] = 3, - ACTIONS(4187), 1, - sym__last_token_whitespace, - ACTIONS(3165), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(3163), 40, - sym__code_span_close, + STATE(760), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -58790,7 +58894,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, @@ -58808,41 +58911,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [33551] = 6, - ACTIONS(4193), 1, - sym__newline_token, - ACTIONS(4196), 1, - sym__whitespace_ge_2, - ACTIONS(4199), 1, + [34575] = 3, + ACTIONS(4086), 1, + sym__last_token_whitespace, + ACTIONS(2877), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4191), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(729), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4189), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(2875), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -58855,6 +58940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -58864,15 +58950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [33607] = 3, - ACTIONS(4202), 1, + [34625] = 3, + ACTIONS(4088), 1, sym__last_token_whitespace, - ACTIONS(3165), 2, + ACTIONS(2975), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3163), 40, + ACTIONS(2973), 40, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -58913,16 +59005,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [33657] = 3, - ACTIONS(4204), 1, - sym__last_token_whitespace, - ACTIONS(3292), 2, - anon_sym_LT, + [34675] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, + sym__newline_token, + ACTIONS(4094), 1, + anon_sym_QMARK_GT, + ACTIONS(4096), 1, + sym__whitespace_ge_2, + ACTIONS(4098), 1, aux_sym__whitespace_token1, - ACTIONS(3290), 40, - sym__latex_span_close, + ACTIONS(4100), 2, + sym__word_no_digit, + sym__digits, + STATE(809), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -58940,7 +59045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -58952,36 +59056,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [33707] = 9, - ACTIONS(4073), 1, + [34734] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4206), 1, + ACTIONS(4050), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4210), 1, - sym__last_token_punctuation, - ACTIONS(4208), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(801), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -59013,31 +59107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33769] = 9, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [34793] = 2, + ACTIONS(3278), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4212), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4216), 1, - sym__last_token_punctuation, - ACTIONS(4214), 2, - sym__word_no_digit, - sym__digits, - STATE(795), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3276), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59049,6 +59126,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, @@ -59066,29 +59144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33831] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4218), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4220), 2, sym__word_no_digit, sym__digits, - STATE(793), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + [34840] = 2, + ACTIONS(3295), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(3293), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59100,6 +59171,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, @@ -59117,29 +59189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33890] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4077), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4083), 2, sym__word_no_digit, sym__digits, - STATE(829), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + [34887] = 2, + ACTIONS(3299), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(3297), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59151,6 +59216,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, @@ -59168,29 +59234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [33949] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4131), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4133), 2, sym__word_no_digit, sym__digits, - STATE(803), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + [34934] = 2, + ACTIONS(3307), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(3305), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59202,6 +59261,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, @@ -59219,29 +59279,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34008] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4222), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + [34981] = 2, + ACTIONS(3311), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(3309), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59253,6 +59306,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, @@ -59270,12 +59324,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34067] = 2, - ACTIONS(3533), 2, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35028] = 2, + ACTIONS(3414), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3531), 40, - sym__code_span_close, + ACTIONS(3412), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -59315,29 +59377,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34114] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [35075] = 2, + ACTIONS(3410), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4137), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3408), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59349,6 +59396,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, @@ -59366,11 +59414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34173] = 2, - ACTIONS(3411), 2, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35122] = 2, + ACTIONS(3406), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3409), 40, + ACTIONS(3404), 40, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -59411,11 +59467,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34220] = 2, - ACTIONS(3597), 2, + [35169] = 2, + ACTIONS(3402), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3595), 40, + ACTIONS(3400), 40, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -59456,29 +59512,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34267] = 8, - ACTIONS(4229), 1, - anon_sym_QMARK, - ACTIONS(4232), 1, - sym__newline_token, - ACTIONS(4235), 1, - anon_sym_QMARK_GT, - ACTIONS(4237), 1, - sym__whitespace_ge_2, - ACTIONS(4240), 1, + [35216] = 2, + ACTIONS(3126), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4243), 2, - sym__word_no_digit, - sym__digits, - STATE(742), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(4226), 31, + ACTIONS(3124), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59496,6 +59537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -59507,12 +59549,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34326] = 2, - ACTIONS(3335), 2, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35263] = 2, + ACTIONS(3373), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3333), 40, - sym__code_span_close, + ACTIONS(3371), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -59552,11 +59602,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34373] = 2, - ACTIONS(3593), 2, + [35310] = 2, + ACTIONS(3369), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3591), 40, + ACTIONS(3367), 40, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -59597,12 +59647,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34420] = 2, - ACTIONS(3443), 2, + [35357] = 2, + ACTIONS(3361), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3441), 40, - sym__code_span_close, + ACTIONS(3359), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -59642,28 +59692,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34467] = 8, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, - sym__newline_token, - ACTIONS(4248), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4250), 1, - sym__whitespace_ge_2, - ACTIONS(4252), 1, + [35404] = 2, + ACTIONS(3357), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4254), 2, - sym__word_no_digit, - sym__digits, - STATE(757), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + ACTIONS(3355), 40, + sym__latex_span_close, anon_sym_LBRACK, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59693,29 +59729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34526] = 8, - ACTIONS(4256), 1, - anon_sym_QMARK, - ACTIONS(4258), 1, sym__newline_token, - ACTIONS(4260), 1, - anon_sym_QMARK_GT, - ACTIONS(4262), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4264), 1, - aux_sym__whitespace_token1, - ACTIONS(4266), 2, sym__word_no_digit, sym__digits, - STATE(742), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + [35451] = 2, + ACTIONS(3210), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(3208), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59733,6 +59762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -59744,12 +59774,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34585] = 2, - ACTIONS(3439), 2, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35498] = 2, + ACTIONS(3206), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3437), 40, - sym__code_span_close, + ACTIONS(3204), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -59789,11 +59827,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34632] = 2, - ACTIONS(3608), 2, + [35545] = 2, + ACTIONS(3202), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3606), 40, + ACTIONS(3200), 40, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -59834,29 +59872,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34679] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [35592] = 2, + ACTIONS(3260), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4087), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3258), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -59868,6 +59891,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, @@ -59885,11 +59909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34738] = 2, - ACTIONS(3549), 2, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35639] = 2, + ACTIONS(3264), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3547), 40, + ACTIONS(3262), 40, sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -59930,26 +59962,26 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [34785] = 8, - ACTIONS(4073), 1, + [35686] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4268), 1, + ACTIONS(4104), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4270), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(764), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -59981,14 +60013,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34844] = 2, - ACTIONS(3545), 2, - anon_sym_LT, + [35745] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3543), 40, - sym__latex_span_close, + ACTIONS(4106), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4108), 2, + sym__word_no_digit, + sym__digits, + STATE(747), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -60000,7 +60047,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, @@ -60018,34 +60064,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [35804] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3951), 1, sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4106), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - [34891] = 8, - ACTIONS(4073), 1, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + 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_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [35863] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4087), 1, + ACTIONS(4074), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4089), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(797), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60077,26 +60166,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [34950] = 8, - ACTIONS(4073), 1, + [35922] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4143), 1, + ACTIONS(4074), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4145), 2, + ACTIONS(4076), 2, sym__word_no_digit, sym__digits, - STATE(811), 4, + STATE(749), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60128,26 +60217,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35009] = 8, - ACTIONS(4275), 1, + [35981] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4278), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4281), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4283), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4286), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4289), 2, + ACTIONS(4110), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4272), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60179,26 +60268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35068] = 8, - ACTIONS(4235), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4295), 1, + [36040] = 8, + ACTIONS(2702), 1, anon_sym_RBRACK, - ACTIONS(4298), 1, + ACTIONS(4112), 1, sym__newline_token, - ACTIONS(4301), 1, + ACTIONS(4114), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4116), 1, sym__whitespace_ge_2, - ACTIONS(4304), 1, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(4307), 2, + ACTIONS(4120), 2, sym__word_no_digit, sym__digits, - STATE(757), 4, + STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(4292), 31, + ACTIONS(2700), 31, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -60230,14 +60319,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35127] = 2, - ACTIONS(3537), 2, - anon_sym_LT, + [36099] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, + sym__newline_token, + ACTIONS(4096), 1, + sym__whitespace_ge_2, + ACTIONS(4098), 1, aux_sym__whitespace_token1, - ACTIONS(3535), 40, - sym__code_span_close, + ACTIONS(4122), 1, + anon_sym_QMARK_GT, + ACTIONS(4100), 2, + sym__word_no_digit, + sym__digits, + STATE(809), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -60255,7 +60359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -60267,34 +60370,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [35174] = 8, - ACTIONS(4073), 1, + [36158] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4268), 1, + ACTIONS(3969), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(3971), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(750), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60326,12 +60421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35233] = 2, - ACTIONS(3517), 2, + [36217] = 2, + ACTIONS(3256), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3515), 40, - sym__code_span_close, + ACTIONS(3254), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -60371,26 +60466,26 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [35280] = 8, - ACTIONS(4073), 1, + [36264] = 8, + ACTIONS(4127), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(4130), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4133), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4135), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4138), 1, aux_sym__whitespace_token1, - ACTIONS(4159), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4161), 2, + ACTIONS(4141), 2, sym__word_no_digit, sym__digits, - STATE(781), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(4124), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60422,26 +60517,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35339] = 8, - ACTIONS(4256), 1, + [36323] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4144), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + 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, - ACTIONS(4258), 1, + anon_sym_AT, + 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_LPAREN, + anon_sym_RPAREN, + [36382] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4262), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4264), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4310), 1, - anon_sym_QMARK_GT, - ACTIONS(4266), 2, + ACTIONS(4146), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4148), 2, sym__word_no_digit, sym__digits, - STATE(742), 4, + STATE(758), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60456,12 +60602,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + 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_LPAREN, + anon_sym_RPAREN, + [36441] = 8, + ACTIONS(3945), 1, anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4146), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + 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_BSLASH, anon_sym_CARET, @@ -60473,26 +60670,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35398] = 8, - ACTIONS(4073), 1, + [36500] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4312), 1, + ACTIONS(4080), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60524,26 +60721,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35457] = 8, - ACTIONS(4073), 1, + [36559] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4314), 1, + ACTIONS(4080), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4082), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(760), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60575,27 +60772,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35516] = 8, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, + [36618] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4250), 1, + ACTIONS(3949), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4252), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4316), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4254), 2, + ACTIONS(3955), 2, sym__word_no_digit, sym__digits, - STATE(757), 4, + STATE(771), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -60608,7 +60806,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, @@ -60626,14 +60823,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35575] = 2, - ACTIONS(3537), 2, - anon_sym_LT, + [36677] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, + sym__newline_token, + ACTIONS(4096), 1, + sym__whitespace_ge_2, + ACTIONS(4098), 1, aux_sym__whitespace_token1, - ACTIONS(3535), 40, - sym__latex_span_close, + ACTIONS(4150), 1, + anon_sym_QMARK_GT, + ACTIONS(4100), 2, + sym__word_no_digit, + sym__digits, + STATE(809), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -60651,7 +60863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -60663,36 +60874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [36736] = 8, + ACTIONS(2702), 1, + anon_sym_RBRACK, + ACTIONS(4112), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [35622] = 8, - ACTIONS(4256), 1, - anon_sym_QMARK, - ACTIONS(4258), 1, - sym__newline_token, - ACTIONS(4262), 1, + ACTIONS(4116), 1, sym__whitespace_ge_2, - ACTIONS(4264), 1, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(4318), 1, - anon_sym_QMARK_GT, - ACTIONS(4266), 2, + ACTIONS(4152), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4120), 2, sym__word_no_digit, sym__digits, - STATE(742), 4, + STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + ACTIONS(2700), 31, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -60711,6 +60913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -60722,27 +60925,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35681] = 8, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, + [36795] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4250), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4252), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4320), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4254), 2, + ACTIONS(4154), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4156), 2, sym__word_no_digit, sym__digits, - STATE(757), 4, + STATE(752), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -60755,7 +60959,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, @@ -60773,28 +60976,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35740] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, + [36854] = 8, + ACTIONS(2702), 1, + anon_sym_RBRACK, + ACTIONS(4112), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4116), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(4165), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4167), 2, + ACTIONS(4158), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4120), 2, sym__word_no_digit, sym__digits, - STATE(786), 4, + STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(2700), 31, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -60807,6 +61009,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, @@ -60824,14 +61027,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35799] = 2, - ACTIONS(3431), 2, - anon_sym_LT, + [36913] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3429), 40, - sym__latex_span_close, + ACTIONS(3959), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -60843,7 +61061,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, @@ -60861,34 +61078,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [36972] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [35846] = 8, - ACTIONS(4256), 1, - anon_sym_QMARK, - ACTIONS(4258), 1, - sym__newline_token, - ACTIONS(4262), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4264), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4322), 1, - anon_sym_QMARK_GT, - ACTIONS(4266), 2, + ACTIONS(4056), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4058), 2, sym__word_no_digit, sym__digits, - STATE(742), 4, + STATE(761), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -60903,12 +61112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -60920,14 +61129,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [35905] = 2, - ACTIONS(3533), 2, - anon_sym_LT, + [37031] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3531), 40, - sym__latex_span_close, + ACTIONS(4025), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4027), 2, + sym__word_no_digit, + sym__digits, + STATE(775), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -60939,7 +61163,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, @@ -60957,22 +61180,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [37090] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3951), 1, sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - [35952] = 2, - ACTIONS(3423), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(3421), 40, - sym__code_span_close, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -60984,7 +61214,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, @@ -61002,34 +61231,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [35999] = 8, - ACTIONS(4073), 1, + [37149] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4093), 1, + ACTIONS(4013), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4095), 2, + ACTIONS(4015), 2, sym__word_no_digit, sym__digits, - STATE(750), 4, + STATE(768), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -61061,14 +61282,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36058] = 2, - ACTIONS(3632), 2, - anon_sym_LT, + [37208] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3630), 40, - sym__latex_span_close, + ACTIONS(4154), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61080,7 +61316,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, @@ -61098,22 +61333,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [37267] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4096), 1, sym__whitespace_ge_2, + ACTIONS(4098), 1, + aux_sym__whitespace_token1, + ACTIONS(4160), 1, + anon_sym_QMARK_GT, + ACTIONS(4100), 2, sym__word_no_digit, sym__digits, - [36105] = 2, - ACTIONS(3628), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(3626), 40, - sym__latex_span_close, + STATE(809), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61131,7 +61373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -61143,35 +61384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [37326] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [36152] = 8, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, - sym__newline_token, - ACTIONS(4250), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4252), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4324), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4254), 2, + ACTIONS(4162), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -61184,7 +61418,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, @@ -61202,26 +61435,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36211] = 8, - ACTIONS(4073), 1, + [37385] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4326), 1, + ACTIONS(4162), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4164), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(780), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -61253,14 +61486,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36270] = 2, - ACTIONS(3335), 2, - anon_sym_LT, + [37444] = 8, + ACTIONS(2702), 1, + anon_sym_RBRACK, + ACTIONS(4112), 1, + sym__newline_token, + ACTIONS(4116), 1, + sym__whitespace_ge_2, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(3333), 40, - sym__latex_span_close, + ACTIONS(4166), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4120), 2, + sym__word_no_digit, + sym__digits, + STATE(799), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2700), 31, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61290,20 +61537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [36317] = 2, - ACTIONS(3419), 2, + [37503] = 2, + ACTIONS(3194), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3417), 40, - sym__code_span_close, + ACTIONS(3192), 40, + sym__latex_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -61343,29 +61582,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [36364] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [37550] = 2, + ACTIONS(3210), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4165), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3208), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61377,6 +61601,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, @@ -61394,26 +61619,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36423] = 8, - ACTIONS(4073), 1, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37597] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4177), 1, + ACTIONS(4168), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4179), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(739), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -61445,72 +61678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36482] = 2, - ACTIONS(3601), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(3599), 40, - sym__latex_span_close, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, + [37656] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3951), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [36529] = 8, - ACTIONS(2929), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, - sym__newline_token, - ACTIONS(4250), 1, - sym__whitespace_ge_2, - ACTIONS(4252), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4328), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4254), 2, + ACTIONS(3959), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3961), 2, sym__word_no_digit, sym__digits, - STATE(757), 4, + STATE(773), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -61523,7 +61712,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, @@ -61541,26 +61729,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36588] = 8, - ACTIONS(4073), 1, + [37715] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4330), 1, + ACTIONS(4001), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4332), 2, + ACTIONS(4003), 2, sym__word_no_digit, sym__digits, - STATE(737), 4, + STATE(801), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -61592,29 +61780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36647] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [37774] = 2, + ACTIONS(3264), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4218), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3262), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61626,6 +61799,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, @@ -61643,29 +61817,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36706] = 8, - ACTIONS(4256), 1, - anon_sym_QMARK, - ACTIONS(4258), 1, sym__newline_token, - ACTIONS(4262), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4264), 1, - aux_sym__whitespace_token1, - ACTIONS(4334), 1, - anon_sym_QMARK_GT, - ACTIONS(4266), 2, sym__word_no_digit, sym__digits, - STATE(742), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + [37821] = 2, + ACTIONS(3260), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(3258), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61683,6 +61850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -61694,63 +61862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [36765] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4336), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4338), 2, sym__word_no_digit, sym__digits, - STATE(763), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - 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_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [36824] = 2, - ACTIONS(3443), 2, + [37868] = 2, + ACTIONS(3202), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3441), 40, - sym__latex_span_close, + ACTIONS(3200), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -61790,12 +61915,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [36871] = 2, - ACTIONS(3439), 2, + [37915] = 2, + ACTIONS(3206), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3437), 40, - sym__latex_span_close, + ACTIONS(3204), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -61835,14 +61960,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [36918] = 2, - ACTIONS(3517), 2, - anon_sym_LT, + [37962] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, + sym__newline_token, + ACTIONS(4096), 1, + sym__whitespace_ge_2, + ACTIONS(4098), 1, aux_sym__whitespace_token1, - ACTIONS(3515), 40, - sym__latex_span_close, + ACTIONS(4170), 1, + anon_sym_QMARK_GT, + ACTIONS(4100), 2, + sym__word_no_digit, + sym__digits, + STATE(809), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61860,7 +62000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -61872,20 +62011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [36965] = 2, - ACTIONS(3423), 2, + [38021] = 2, + ACTIONS(3357), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3421), 40, - sym__latex_span_close, + ACTIONS(3355), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -61925,29 +62056,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37012] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [38068] = 2, + ACTIONS(3361), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4340), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3359), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -61959,6 +62075,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, @@ -61976,79 +62093,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37071] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4342), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4344), 2, sym__word_no_digit, sym__digits, - STATE(778), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, - anon_sym_LBRACK, + [38115] = 8, + ACTIONS(2702), 1, anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - 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_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [37130] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(4112), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4116), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(4342), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4172), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4120), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(2700), 31, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -62061,6 +62134,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, @@ -62078,29 +62152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37189] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [38174] = 2, + ACTIONS(3369), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4330), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3367), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -62112,6 +62171,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, @@ -62129,26 +62189,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37248] = 8, - ACTIONS(4073), 1, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [38221] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4336), 1, + ACTIONS(4031), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4033), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(814), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -62180,26 +62248,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37307] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, + [38280] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4096), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4098), 1, aux_sym__whitespace_token1, - ACTIONS(4119), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4121), 2, + ACTIONS(4174), 1, + anon_sym_QMARK_GT, + ACTIONS(4100), 2, sym__word_no_digit, sym__digits, - STATE(824), 4, + STATE(809), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -62214,12 +62282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -62231,26 +62299,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37366] = 8, - ACTIONS(4073), 1, + [38339] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4346), 1, + ACTIONS(4007), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4009), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(823), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -62282,28 +62350,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37425] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, + [38398] = 8, + ACTIONS(2702), 1, + anon_sym_RBRACK, + ACTIONS(4112), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4116), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(4348), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4350), 2, + ACTIONS(4176), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4120), 2, sym__word_no_digit, sym__digits, STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(2700), 31, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -62316,6 +62383,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, @@ -62333,29 +62401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37484] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [38457] = 2, + ACTIONS(3373), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4348), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3371), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -62367,6 +62420,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, @@ -62384,12 +62438,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37543] = 2, - ACTIONS(3624), 2, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [38504] = 2, + ACTIONS(3126), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3622), 40, - sym__latex_span_close, + ACTIONS(3124), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -62429,29 +62491,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37590] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + [38551] = 2, + ACTIONS(3402), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4352), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, - sym__word_no_digit, - sym__digits, - STATE(756), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3400), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -62463,6 +62510,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, @@ -62480,28 +62528,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37649] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, sym__newline_token, - ACTIONS(4079), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [38598] = 8, + ACTIONS(4181), 1, + anon_sym_RBRACK, + ACTIONS(4184), 1, + sym__newline_token, + ACTIONS(4187), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4189), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4192), 1, aux_sym__whitespace_token1, - ACTIONS(4137), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4139), 2, + ACTIONS(4195), 2, sym__word_no_digit, sym__digits, - STATE(759), 4, + STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(4178), 31, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -62514,6 +62569,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, @@ -62531,12 +62587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [37708] = 2, - ACTIONS(3419), 2, + [38657] = 2, + ACTIONS(3406), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3417), 40, - sym__latex_span_close, + ACTIONS(3404), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -62576,11 +62632,62 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37755] = 2, - ACTIONS(3411), 2, + [38704] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4007), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + 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_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [38763] = 2, + ACTIONS(3410), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3409), 40, + ACTIONS(3408), 40, sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -62621,11 +62728,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37802] = 2, - ACTIONS(3431), 2, + [38810] = 2, + ACTIONS(3414), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3429), 40, + ACTIONS(3412), 40, sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -62666,12 +62773,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37849] = 2, - ACTIONS(3361), 2, + [38857] = 2, + ACTIONS(3311), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3359), 40, - sym__latex_span_close, + ACTIONS(3309), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -62711,11 +62818,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37896] = 2, - ACTIONS(3545), 2, + [38904] = 2, + ACTIONS(3307), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3543), 40, + ACTIONS(3305), 40, sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -62756,29 +62863,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [37943] = 8, - ACTIONS(4256), 1, - anon_sym_QMARK, - ACTIONS(4258), 1, - sym__newline_token, - ACTIONS(4262), 1, - sym__whitespace_ge_2, - ACTIONS(4264), 1, + [38951] = 2, + ACTIONS(3299), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4354), 1, - anon_sym_QMARK_GT, - ACTIONS(4266), 2, - sym__word_no_digit, - sym__digits, - STATE(742), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + ACTIONS(3297), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -62796,6 +62888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -62807,26 +62900,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38002] = 8, - ACTIONS(4073), 1, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [38998] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4131), 1, + ACTIONS(4050), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4052), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(822), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -62858,26 +62959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38061] = 8, - ACTIONS(4073), 1, + [39057] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4356), 1, + ACTIONS(4198), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -62909,14 +63010,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38120] = 2, - ACTIONS(3427), 2, - anon_sym_LT, + [39116] = 8, + ACTIONS(4187), 1, + anon_sym_QMARK_GT, + ACTIONS(4203), 1, + anon_sym_QMARK, + ACTIONS(4206), 1, + sym__newline_token, + ACTIONS(4209), 1, + sym__whitespace_ge_2, + ACTIONS(4212), 1, aux_sym__whitespace_token1, - ACTIONS(3425), 40, - sym__code_span_close, + ACTIONS(4215), 2, + sym__word_no_digit, + sym__digits, + STATE(809), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(4200), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -62934,7 +63050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -62946,34 +63061,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [38167] = 8, - ACTIONS(2929), 1, + [39175] = 8, + ACTIONS(2702), 1, anon_sym_RBRACK, - ACTIONS(4246), 1, + ACTIONS(4112), 1, sym__newline_token, - ACTIONS(4250), 1, + ACTIONS(4116), 1, sym__whitespace_ge_2, - ACTIONS(4252), 1, + ACTIONS(4118), 1, aux_sym__whitespace_token1, - ACTIONS(4358), 1, + ACTIONS(4218), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4254), 2, + ACTIONS(4120), 2, sym__word_no_digit, sym__digits, - STATE(757), 4, + STATE(799), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + ACTIONS(2700), 31, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -63005,14 +63112,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38226] = 2, - ACTIONS(3361), 2, - anon_sym_LT, + [39234] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3359), 40, - sym__code_span_close, + ACTIONS(4220), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -63024,7 +63146,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, @@ -63042,19 +63163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [38273] = 2, - ACTIONS(3624), 2, + [39293] = 2, + ACTIONS(3295), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3622), 40, + ACTIONS(3293), 40, sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -63095,14 +63208,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [38320] = 2, - ACTIONS(3549), 2, - anon_sym_LT, + [39340] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3547), 40, - sym__code_span_close, + ACTIONS(3975), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3977), 2, + sym__word_no_digit, + sym__digits, + STATE(811), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -63114,7 +63242,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, @@ -63132,34 +63259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [38367] = 8, - ACTIONS(4073), 1, + [39399] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4206), 1, + ACTIONS(3975), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63191,11 +63310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38426] = 2, - ACTIONS(3593), 2, + [39458] = 2, + ACTIONS(3278), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3591), 40, + ACTIONS(3276), 40, sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -63236,14 +63355,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [38473] = 2, - ACTIONS(3597), 2, - anon_sym_LT, + [39505] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3595), 40, - sym__code_span_close, + ACTIONS(4220), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4222), 2, + sym__word_no_digit, + sym__digits, + STATE(826), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -63255,7 +63389,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, @@ -63273,19 +63406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [38520] = 2, - ACTIONS(3628), 2, + [39564] = 2, + ACTIONS(3256), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3626), 40, + ACTIONS(3254), 40, sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, @@ -63326,77 +63451,26 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [38567] = 8, - ACTIONS(4073), 1, + [39611] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4206), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4208), 2, - sym__word_no_digit, - sym__digits, - STATE(801), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - 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_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [38626] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4125), 1, + ACTIONS(4224), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4127), 2, + ACTIONS(4226), 2, sym__word_no_digit, sym__digits, - STATE(796), 4, + STATE(808), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63428,26 +63502,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38685] = 8, - ACTIONS(4073), 1, + [39670] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4125), 1, + ACTIONS(4228), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63479,12 +63553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38744] = 2, - ACTIONS(3427), 2, + [39729] = 2, + ACTIONS(3194), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(3425), 40, - sym__latex_span_close, + ACTIONS(3192), 40, + sym__code_span_close, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, @@ -63524,14 +63598,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [38791] = 2, - ACTIONS(3632), 2, - anon_sym_LT, + [39776] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3630), 40, - sym__code_span_close, + ACTIONS(4230), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4232), 2, + sym__word_no_digit, + sym__digits, + STATE(819), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -63543,7 +63632,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, @@ -63561,34 +63649,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [38838] = 8, - ACTIONS(4073), 1, + [39835] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4352), 1, + ACTIONS(4230), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4360), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(812), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63620,26 +63700,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38897] = 8, - ACTIONS(4073), 1, + [39894] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4212), 1, + ACTIONS(4224), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4214), 2, + ACTIONS(4102), 2, sym__word_no_digit, sym__digits, - STATE(795), 4, + STATE(757), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63671,26 +63751,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [38956] = 8, - ACTIONS(4073), 1, - anon_sym_DASH, - ACTIONS(4075), 1, + [39953] = 8, + ACTIONS(4090), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4096), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4098), 1, aux_sym__whitespace_token1, - ACTIONS(4212), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4224), 2, + ACTIONS(4234), 1, + anon_sym_QMARK_GT, + ACTIONS(4100), 2, sym__word_no_digit, sym__digits, - STATE(756), 4, + STATE(809), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(2746), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63705,12 +63785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -63722,26 +63802,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39015] = 8, - ACTIONS(4073), 1, + [40012] = 8, + ACTIONS(3945), 1, anon_sym_DASH, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4171), 1, + ACTIONS(4019), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4173), 2, + ACTIONS(4021), 2, sym__word_no_digit, sym__digits, - STATE(818), 4, + STATE(727), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__html_comment_repeat1, - ACTIONS(4071), 31, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -63773,14 +63853,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39074] = 2, - ACTIONS(3601), 2, - anon_sym_LT, + [40071] = 8, + ACTIONS(3945), 1, + anon_sym_DASH, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(3599), 40, - sym__code_span_close, + ACTIONS(4236), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4102), 2, + sym__word_no_digit, + sym__digits, + STATE(757), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3943), 31, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -63792,7 +63887,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, @@ -63810,39 +63904,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [40130] = 7, + ACTIONS(4240), 1, + anon_sym_DQUOTE, + ACTIONS(4242), 1, sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4244), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [39121] = 8, - ACTIONS(2929), 1, - anon_sym_RBRACK, ACTIONS(4246), 1, - sym__newline_token, - ACTIONS(4250), 1, - sym__whitespace_ge_2, - ACTIONS(4252), 1, aux_sym__whitespace_token1, - ACTIONS(4362), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4254), 2, + ACTIONS(4248), 2, sym__word_no_digit, sym__digits, - STATE(757), 4, + STATE(853), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2927), 31, + aux_sym__attribute_value_repeat2, + ACTIONS(4238), 31, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -63869,30 +63953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39180] = 8, - ACTIONS(4256), 1, - anon_sym_QMARK, - ACTIONS(4258), 1, + [40186] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4262), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4264), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4364), 1, - anon_sym_QMARK_GT, - ACTIONS(4266), 2, + ACTIONS(4252), 1, + anon_sym_GT, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(742), 4, + STATE(855), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__processing_instruction_repeat1, - ACTIONS(2868), 31, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -63909,6 +63990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -63920,21 +64002,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39239] = 2, - ACTIONS(3608), 2, - anon_sym_LT, + [40242] = 6, + ACTIONS(4262), 1, + anon_sym_LPAREN, + ACTIONS(4266), 1, aux_sym__whitespace_token1, - ACTIONS(3606), 40, - sym__code_span_close, + ACTIONS(4268), 1, + sym__last_token_punctuation, + ACTIONS(4259), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4264), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4256), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -63947,7 +64040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -63955,43 +64047,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__declaration_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [39286] = 7, - ACTIONS(4369), 1, - anon_sym_GT, - ACTIONS(4371), 1, - sym__newline_token, - ACTIONS(4374), 1, - sym__whitespace_ge_2, - ACTIONS(4377), 1, - aux_sym__whitespace_token1, - ACTIONS(4380), 2, + [40296] = 7, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3698), 1, + anon_sym_LPAREN, + ACTIONS(4270), 1, + anon_sym_RPAREN, + ACTIONS(3810), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3876), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(835), 4, - sym__whitespace, + STATE(692), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4366), 31, + aux_sym_link_destination_repeat2, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -64004,7 +64092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -64012,31 +64099,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [39342] = 7, - ACTIONS(4386), 1, - anon_sym_DQUOTE, - ACTIONS(4388), 1, + [40352] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4391), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4394), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4397), 2, + ACTIONS(4272), 1, + anon_sym_GT, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(836), 4, + STATE(855), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__attribute_value_repeat2, - ACTIONS(4383), 31, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -64063,24 +64148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39398] = 7, - ACTIONS(4402), 1, - anon_sym_GT, - ACTIONS(4404), 1, + [40408] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4410), 2, + ACTIONS(4274), 1, + anon_sym_GT, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(835), 4, + STATE(855), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -64112,29 +64197,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39454] = 7, - ACTIONS(4404), 1, + [40464] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4416), 2, + ACTIONS(4276), 1, + anon_sym_GT, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(836), 4, + STATE(855), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__attribute_value_repeat2, - ACTIONS(4412), 31, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -64161,36 +64246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39510] = 7, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(4420), 1, - anon_sym_RPAREN, - ACTIONS(3993), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4418), 4, - sym_entity_reference, - sym_numeric_character_reference, + [40520] = 7, + ACTIONS(4242), 1, + sym__newline_token, + ACTIONS(4244), 1, + sym__whitespace_ge_2, + ACTIONS(4246), 1, + aux_sym__whitespace_token1, + ACTIONS(4278), 1, + anon_sym_GT, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(847), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(855), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -64203,6 +64285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -64210,34 +64293,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39566] = 7, - ACTIONS(4404), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [40576] = 7, + ACTIONS(4283), 1, + anon_sym_SQUOTE, + ACTIONS(4285), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4288), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4291), 1, aux_sym__whitespace_token1, - ACTIONS(4422), 1, - anon_sym_GT, - ACTIONS(4424), 2, + ACTIONS(4294), 2, sym__word_no_digit, sym__digits, - STATE(863), 4, + STATE(835), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + aux_sym__attribute_value_repeat1, + ACTIONS(4280), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -64259,24 +64344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39622] = 7, - ACTIONS(4404), 1, + [40632] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4426), 1, + ACTIONS(4297), 1, anon_sym_GT, - ACTIONS(4410), 2, + ACTIONS(4299), 2, sym__word_no_digit, sym__digits, - STATE(835), 4, + STATE(831), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -64308,29 +64393,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39678] = 7, - ACTIONS(4404), 1, + [40688] = 7, + ACTIONS(4304), 1, + anon_sym_DQUOTE, + ACTIONS(4306), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4309), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4312), 1, aux_sym__whitespace_token1, - ACTIONS(4428), 1, - anon_sym_GT, - ACTIONS(4430), 2, + ACTIONS(4315), 2, sym__word_no_digit, sym__digits, - STATE(853), 4, + STATE(837), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + aux_sym__attribute_value_repeat2, + ACTIONS(4301), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, + anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -64357,19 +64442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [39734] = 5, - ACTIONS(4439), 1, - aux_sym__whitespace_token1, - ACTIONS(4442), 1, - sym__last_token_punctuation, - ACTIONS(4434), 2, + [40744] = 4, + ACTIONS(4318), 1, + sym__newline_token, + STATE(1143), 1, + sym__soft_line_break, + ACTIONS(3836), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4436), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4432), 34, + aux_sym__whitespace_token1, + ACTIONS(3834), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64402,16 +64484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, + anon_sym_RPAREN, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [39786] = 3, - ACTIONS(4442), 1, + [40794] = 3, + ACTIONS(3838), 1, sym__last_token_punctuation, - ACTIONS(4434), 3, + ACTIONS(3836), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4432), 37, + ACTIONS(3834), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64449,32 +64533,33 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [39834] = 6, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4452), 1, - aux_sym__whitespace_token1, - ACTIONS(4454), 1, - sym__last_token_punctuation, - ACTIONS(4447), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4450), 2, + [40842] = 7, + ACTIONS(4242), 1, sym__newline_token, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4444), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4246), 1, + aux_sym__whitespace_token1, + ACTIONS(4321), 1, + anon_sym_GT, + ACTIONS(4323), 2, + sym__word_no_digit, + sym__digits, + STATE(834), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -64487,6 +64572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -64494,17 +64580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [39888] = 3, - ACTIONS(4456), 1, - sym__last_token_whitespace, - ACTIONS(3165), 3, + [40898] = 3, + ACTIONS(4331), 1, + sym__last_token_punctuation, + ACTIONS(4328), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3163), 37, + ACTIONS(4325), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64542,36 +64627,33 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [39936] = 7, - ACTIONS(3714), 1, - sym__backslash_escape, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(4458), 1, - anon_sym_RPAREN, - ACTIONS(3993), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4015), 4, - sym_entity_reference, - sym_numeric_character_reference, + [40946] = 7, + ACTIONS(4242), 1, + sym__newline_token, + ACTIONS(4244), 1, + sym__whitespace_ge_2, + ACTIONS(4246), 1, + aux_sym__whitespace_token1, + ACTIONS(4333), 1, + anon_sym_GT, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(706), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(855), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(3991), 28, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -64584,6 +64666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -64591,14 +64674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39992] = 3, - ACTIONS(4460), 1, - sym__last_token_whitespace, - ACTIONS(3292), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + [41002] = 4, + ACTIONS(4335), 1, + sym__newline_token, + STATE(1136), 1, + sym__soft_line_break, + ACTIONS(3775), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3290), 37, + ACTIONS(3773), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64632,18 +64719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [40040] = 3, - ACTIONS(3987), 1, + [41052] = 3, + ACTIONS(3777), 1, sym__last_token_punctuation, - ACTIONS(3985), 3, + ACTIONS(3775), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3983), 37, + ACTIONS(3773), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64681,33 +64767,31 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [40088] = 7, - ACTIONS(4404), 1, + [41100] = 5, + ACTIONS(4343), 1, + aux_sym__whitespace_token1, + ACTIONS(4346), 1, + sym__last_token_punctuation, + ACTIONS(4338), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4340), 3, + anon_sym_RPAREN, sym__newline_token, - ACTIONS(4406), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, - aux_sym__whitespace_token1, - ACTIONS(4462), 1, - anon_sym_GT, - ACTIONS(4464), 2, - sym__word_no_digit, - sym__digits, - STATE(837), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4262), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -64720,7 +64804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -64729,35 +64812,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, - anon_sym_RPAREN, - [40144] = 7, - ACTIONS(4404), 1, + sym__word_no_digit, + sym__digits, + [41152] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4468), 1, - anon_sym_SQUOTE, - ACTIONS(4470), 2, + ACTIONS(4348), 1, + anon_sym_GT, + ACTIONS(4350), 2, sym__word_no_digit, sym__digits, - STATE(864), 4, + STATE(832), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__attribute_value_repeat1, - ACTIONS(4466), 31, + aux_sym__declaration_repeat1, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, - anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -64779,24 +64863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40200] = 7, - ACTIONS(4404), 1, + [41208] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4472), 1, + ACTIONS(4352), 1, anon_sym_GT, - ACTIONS(4410), 2, + ACTIONS(4254), 2, sym__word_no_digit, sym__digits, - STATE(835), 4, + STATE(855), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -64828,24 +64912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40256] = 7, - ACTIONS(4404), 1, + [41264] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4474), 1, + ACTIONS(4354), 1, anon_sym_GT, - ACTIONS(4410), 2, + ACTIONS(4356), 2, sym__word_no_digit, sym__digits, - STATE(835), 4, + STATE(842), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -64877,16 +64961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40312] = 4, - ACTIONS(4476), 1, - sym__newline_token, - STATE(1150), 1, - sym__soft_line_break, - ACTIONS(3961), 3, + [41320] = 3, + ACTIONS(4364), 1, + sym__last_token_punctuation, + ACTIONS(4361), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3959), 36, + ACTIONS(4358), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64920,19 +65002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [40362] = 4, - ACTIONS(4479), 1, - sym__newline_token, - STATE(1158), 1, - sym__soft_line_break, - ACTIONS(3985), 3, + [41368] = 3, + ACTIONS(4366), 1, + sym__last_token_whitespace, + ACTIONS(2975), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3983), 36, + ACTIONS(2973), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -64966,37 +65047,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [40412] = 7, - ACTIONS(4404), 1, + [41416] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4482), 1, - anon_sym_GT, - ACTIONS(4410), 2, + ACTIONS(4370), 1, + anon_sym_SQUOTE, + ACTIONS(4372), 2, sym__word_no_digit, sym__digits, STATE(835), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + aux_sym__attribute_value_repeat1, + ACTIONS(4368), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -65018,17 +65100,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40468] = 3, - ACTIONS(4490), 1, - sym__last_token_punctuation, - ACTIONS(4487), 3, + [41472] = 7, + ACTIONS(3586), 1, + sym__backslash_escape, + ACTIONS(3698), 1, + anon_sym_LPAREN, + ACTIONS(4376), 1, + anon_sym_RPAREN, + ACTIONS(3810), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4484), 37, - sym__backslash_escape, + ACTIONS(4374), 4, sym_entity_reference, sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(830), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3808), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65057,30 +65149,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, + [41528] = 7, + ACTIONS(4242), 1, sym__newline_token, + ACTIONS(4244), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [40516] = 7, - ACTIONS(4404), 1, - sym__newline_token, - ACTIONS(4406), 1, - sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4468), 1, + ACTIONS(4370), 1, anon_sym_DQUOTE, - ACTIONS(4492), 2, + ACTIONS(4378), 2, sym__word_no_digit, sym__digits, - STATE(838), 4, + STATE(837), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__attribute_value_repeat2, - ACTIONS(4412), 31, + ACTIONS(4238), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65112,34 +65198,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40572] = 7, - ACTIONS(4404), 1, + [41584] = 7, + ACTIONS(4240), 1, + anon_sym_SQUOTE, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4494), 1, - anon_sym_GT, - ACTIONS(4496), 2, + ACTIONS(4380), 2, sym__word_no_digit, sym__digits, - STATE(856), 4, + STATE(851), 4, sym__whitespace, sym__word, sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + aux_sym__attribute_value_repeat1, + ACTIONS(4368), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -65161,24 +65247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40628] = 7, - ACTIONS(4404), 1, + [41640] = 7, + ACTIONS(4385), 1, + anon_sym_GT, + ACTIONS(4387), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4390), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4393), 1, aux_sym__whitespace_token1, - ACTIONS(4498), 1, - anon_sym_GT, - ACTIONS(4500), 2, + ACTIONS(4396), 2, sym__word_no_digit, sym__digits, - STATE(852), 4, + STATE(855), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4382), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65210,24 +65296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40684] = 7, - ACTIONS(4505), 1, - anon_sym_SQUOTE, - ACTIONS(4507), 1, - sym__newline_token, - ACTIONS(4510), 1, - sym__whitespace_ge_2, - ACTIONS(4513), 1, + [41696] = 3, + ACTIONS(4346), 1, + sym__last_token_punctuation, + ACTIONS(4338), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4516), 2, - sym__word_no_digit, - sym__digits, - STATE(861), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__attribute_value_repeat1, - ACTIONS(4502), 31, + ACTIONS(4262), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65237,7 +65316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -65249,7 +65328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -65259,73 +65337,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40740] = 7, - ACTIONS(4404), 1, sym__newline_token, - ACTIONS(4406), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, - aux_sym__whitespace_token1, - ACTIONS(4519), 1, - anon_sym_GT, - ACTIONS(4521), 2, sym__word_no_digit, sym__digits, - STATE(841), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__declaration_repeat1, - ACTIONS(4400), 31, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - 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_QMARK, - anon_sym_AT, - 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_LPAREN, - anon_sym_RPAREN, - [40796] = 7, - ACTIONS(4404), 1, + [41744] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4523), 1, + ACTIONS(4399), 1, anon_sym_GT, - ACTIONS(4410), 2, + ACTIONS(4401), 2, sym__word_no_digit, sym__digits, - STATE(835), 4, + STATE(828), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65357,73 +65390,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40852] = 7, - ACTIONS(4404), 1, - sym__newline_token, - ACTIONS(4406), 1, - sym__whitespace_ge_2, - ACTIONS(4408), 1, - aux_sym__whitespace_token1, - ACTIONS(4414), 1, - anon_sym_SQUOTE, - ACTIONS(4525), 2, - sym__word_no_digit, - sym__digits, - STATE(861), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - aux_sym__attribute_value_repeat1, - ACTIONS(4466), 31, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [40908] = 7, - ACTIONS(4404), 1, + [41800] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4527), 1, + ACTIONS(4403), 1, anon_sym_GT, - ACTIONS(4410), 2, + ACTIONS(4405), 2, sym__word_no_digit, sym__digits, - STATE(835), 4, + STATE(833), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65455,14 +65439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [40964] = 3, - ACTIONS(4535), 1, - sym__last_token_punctuation, - ACTIONS(4532), 3, + [41856] = 3, + ACTIONS(4407), 1, + sym__last_token_whitespace, + ACTIONS(2877), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4529), 37, + ACTIONS(2875), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65500,24 +65484,24 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41012] = 7, - ACTIONS(4404), 1, + [41904] = 7, + ACTIONS(4242), 1, sym__newline_token, - ACTIONS(4406), 1, + ACTIONS(4244), 1, sym__whitespace_ge_2, - ACTIONS(4408), 1, + ACTIONS(4246), 1, aux_sym__whitespace_token1, - ACTIONS(4537), 1, + ACTIONS(4409), 1, anon_sym_GT, - ACTIONS(4539), 2, + ACTIONS(4411), 2, sym__word_no_digit, sym__digits, - STATE(865), 4, + STATE(847), 4, sym__whitespace, sym__word, sym__soft_line_break, aux_sym__declaration_repeat1, - ACTIONS(4400), 31, + ACTIONS(4250), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -65549,14 +65533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [41068] = 3, - ACTIONS(3963), 1, - sym__last_token_punctuation, - ACTIONS(3961), 3, + [41960] = 2, + ACTIONS(4413), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3959), 37, + ACTIONS(3860), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65594,12 +65576,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41116] = 2, - ACTIONS(4541), 3, + [42005] = 2, + ACTIONS(4415), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3895), 37, + ACTIONS(3788), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65637,12 +65619,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41161] = 2, - ACTIONS(4545), 3, + [42050] = 2, + ACTIONS(3365), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4543), 37, + ACTIONS(3363), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65680,12 +65662,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41206] = 2, - ACTIONS(4549), 3, + [42095] = 2, + ACTIONS(4419), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4547), 37, + ACTIONS(4417), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65723,12 +65705,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41251] = 2, - ACTIONS(3435), 3, + [42140] = 5, + ACTIONS(4262), 1, + anon_sym_LPAREN, + ACTIONS(4266), 1, + aux_sym__whitespace_token1, + ACTIONS(4259), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3433), 37, + ACTIONS(4264), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4256), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65760,20 +65748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41296] = 3, - ACTIONS(4551), 1, - sym__last_token_punctuation, - ACTIONS(4452), 3, + [42191] = 4, + ACTIONS(4428), 1, + aux_sym__whitespace_token1, + ACTIONS(4423), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4450), 36, + ACTIONS(4425), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4421), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65805,23 +65793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, + anon_sym_LPAREN, sym__word_no_digit, sym__digits, - [41343] = 5, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4452), 1, - aux_sym__whitespace_token1, - ACTIONS(4447), 2, + [42240] = 4, + ACTIONS(4431), 1, + sym__newline_token, + STATE(1158), 1, + sym__soft_line_break, + ACTIONS(4266), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4450), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4444), 34, + aux_sym__whitespace_token1, + ACTIONS(4264), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65854,14 +65838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_RPAREN, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41394] = 2, - ACTIONS(4532), 3, + [42289] = 2, + ACTIONS(4361), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4529), 37, + ACTIONS(4358), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65899,12 +65884,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41439] = 2, - ACTIONS(4556), 3, + [42334] = 5, + ACTIONS(3897), 1, + anon_sym_LPAREN, + ACTIONS(4440), 1, + aux_sym__whitespace_token1, + ACTIONS(3927), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4437), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4553), 37, + ACTIONS(4434), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65936,18 +65927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41484] = 2, - ACTIONS(4559), 3, + [42385] = 2, + ACTIONS(3899), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3925), 37, + ACTIONS(3897), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -65985,12 +65973,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41529] = 2, - ACTIONS(4042), 3, + [42430] = 2, + ACTIONS(4423), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4040), 37, + ACTIONS(4421), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66028,12 +66016,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41574] = 2, - ACTIONS(3419), 3, + [42475] = 2, + ACTIONS(4444), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3417), 37, + ACTIONS(4442), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66071,12 +66059,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41619] = 2, - ACTIONS(3443), 3, + [42520] = 3, + ACTIONS(4446), 1, + sym__last_token_punctuation, + ACTIONS(4266), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3441), 37, + ACTIONS(4264), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66108,18 +66098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41664] = 2, - ACTIONS(4564), 3, + [42567] = 2, + ACTIONS(4450), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4561), 37, + ACTIONS(4448), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66157,17 +66146,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41709] = 4, - ACTIONS(4574), 1, - aux_sym__whitespace_token1, - ACTIONS(4569), 2, + [42612] = 2, + ACTIONS(3311), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4571), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4567), 34, + aux_sym__whitespace_token1, + ACTIONS(3309), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66200,14 +66184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41758] = 2, - ACTIONS(4487), 3, + [42657] = 2, + ACTIONS(4455), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4484), 37, + ACTIONS(4452), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66245,16 +66232,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41803] = 4, - ACTIONS(4577), 1, - sym__newline_token, - STATE(1159), 1, - sym__soft_line_break, - ACTIONS(4452), 3, + [42702] = 2, + ACTIONS(3278), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4450), 35, + ACTIONS(3276), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66286,16 +66269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41852] = 2, - ACTIONS(4569), 3, + [42747] = 2, + ACTIONS(4328), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4567), 37, + ACTIONS(4325), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66333,18 +66318,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41897] = 5, - ACTIONS(4040), 1, - anon_sym_LPAREN, - ACTIONS(4586), 1, - aux_sym__whitespace_token1, - ACTIONS(4056), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(4583), 2, + [42792] = 2, + ACTIONS(4461), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4580), 34, + aux_sym__whitespace_token1, + ACTIONS(4458), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66376,15 +66355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41948] = 2, - ACTIONS(4590), 3, + [42837] = 2, + ACTIONS(4440), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4588), 37, + ACTIONS(3927), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -66416,20 +66398,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [41993] = 3, - ACTIONS(4592), 1, - sym__last_token_whitespace, - ACTIONS(3165), 2, - anon_sym_RBRACK, + [42881] = 2, + ACTIONS(4466), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3163), 36, + ACTIONS(4464), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -66437,7 +66421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -66450,7 +66433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -66458,21 +66440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42039] = 3, - ACTIONS(4598), 1, + [42925] = 3, + ACTIONS(4472), 1, sym__last_token_punctuation, - ACTIONS(4596), 2, - anon_sym_RBRACK, + ACTIONS(4470), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4594), 36, + ACTIONS(4468), 36, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -66491,7 +66472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -66504,34 +66484,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_RBRACK_RBRACK_GT, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42085] = 3, - ACTIONS(4604), 1, + [42971] = 3, + ACTIONS(4476), 1, sym__last_token_punctuation, - ACTIONS(4602), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(4474), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4600), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4133), 36, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -66539,6 +66516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -66548,21 +66526,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42131] = 2, - ACTIONS(4608), 3, + [43017] = 3, + ACTIONS(4482), 1, + sym__last_token_punctuation, + ACTIONS(4480), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4606), 36, + ACTIONS(4478), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -66588,18 +66569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42175] = 3, - ACTIONS(4610), 1, - sym__last_token_whitespace, - ACTIONS(3292), 2, + [43063] = 3, + ACTIONS(4484), 1, + sym__last_token_punctuation, + ACTIONS(4470), 2, anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(3290), 36, + ACTIONS(4468), 36, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -66636,13 +66617,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42221] = 3, - ACTIONS(4612), 1, + [43109] = 3, + ACTIONS(4486), 1, sym__last_token_whitespace, - ACTIONS(3292), 2, - anon_sym_DASH, + ACTIONS(2877), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(3290), 36, + ACTIONS(2875), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -66657,12 +66638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -66675,61 +66656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_DASH_DASH_GT, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42267] = 2, - ACTIONS(4586), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4056), 36, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, + [43155] = 3, + ACTIONS(4488), 1, + sym__last_token_whitespace, + ACTIONS(2975), 2, anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - 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_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_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [42311] = 3, - ACTIONS(4614), 1, - sym__last_token_punctuation, - ACTIONS(4596), 2, - anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4594), 36, + ACTIONS(2973), 36, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -66748,6 +66686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -66760,17 +66699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_QMARK_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42357] = 3, - ACTIONS(4616), 1, + [43201] = 3, + ACTIONS(4490), 1, sym__last_token_whitespace, - ACTIONS(3165), 2, + ACTIONS(2975), 2, anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(3163), 36, + ACTIONS(2973), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -66807,13 +66746,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42403] = 3, - ACTIONS(4618), 1, - sym__last_token_whitespace, - ACTIONS(3292), 2, - anon_sym_QMARK, + [43247] = 3, + ACTIONS(4496), 1, + sym__last_token_punctuation, + ACTIONS(4494), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(3290), 36, + ACTIONS(4492), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -66828,12 +66767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -66846,19 +66785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_QMARK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42449] = 3, - ACTIONS(4624), 1, - sym__last_token_punctuation, - ACTIONS(4622), 2, - anon_sym_DASH, + [43293] = 3, + ACTIONS(4498), 1, + sym__last_token_whitespace, + ACTIONS(2877), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4620), 36, + ACTIONS(2875), 36, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -66871,6 +66809,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, @@ -66889,17 +66828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_DASH_DASH_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42495] = 3, - ACTIONS(4626), 1, + [43339] = 3, + ACTIONS(4500), 1, sym__last_token_whitespace, - ACTIONS(3165), 2, + ACTIONS(2877), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(3163), 36, + ACTIONS(2875), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -66936,13 +66875,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42541] = 3, - ACTIONS(4630), 1, - sym__last_token_punctuation, - ACTIONS(4628), 2, + [43385] = 3, + ACTIONS(4502), 1, + sym__last_token_whitespace, + ACTIONS(2975), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4281), 36, + ACTIONS(2973), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -66979,21 +66918,21 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42587] = 6, - ACTIONS(4075), 1, + [43431] = 6, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4624), 2, + ACTIONS(4496), 2, sym__word_no_digit, sym__digits, STATE(907), 3, sym__whitespace, sym__word, sym__soft_line_break, - ACTIONS(4632), 31, + ACTIONS(4504), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67025,12 +66964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [42639] = 3, - ACTIONS(3165), 1, + [43483] = 2, + ACTIONS(3278), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4634), 1, - sym__last_token_whitespace, - ACTIONS(3163), 36, + ACTIONS(3276), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67051,7 +66989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -67064,14 +67001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42684] = 2, - ACTIONS(3443), 2, - anon_sym_DASH, + [43526] = 2, + ACTIONS(3311), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(3441), 36, + ACTIONS(3309), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67086,12 +67024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -67104,15 +67042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_DASH_DASH_GT, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42727] = 2, - ACTIONS(4636), 2, - anon_sym_QMARK, + [43569] = 3, + ACTIONS(4508), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 36, + ACTIONS(4510), 1, + sym__last_token_punctuation, + ACTIONS(4506), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67133,6 +67072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -67145,15 +67085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42770] = 2, - ACTIONS(3419), 2, + [43614] = 2, + ACTIONS(3278), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(3417), 36, + ACTIONS(3276), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67190,11 +67129,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42813] = 2, - ACTIONS(3443), 2, + [43657] = 2, + ACTIONS(4512), 2, anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(3441), 36, + ACTIONS(4187), 36, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -67231,25 +67170,28 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42856] = 2, - ACTIONS(4628), 2, - anon_sym_DASH, + [43700] = 2, + ACTIONS(4516), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4281), 36, + ACTIONS(4514), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -67257,7 +67199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -67267,17 +67208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42899] = 3, - ACTIONS(4640), 1, + [43743] = 2, + ACTIONS(3311), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4642), 1, - sym__last_token_punctuation, - ACTIONS(4638), 36, + ACTIONS(3309), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67292,7 +67230,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, @@ -67311,15 +67248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42944] = 2, - ACTIONS(3419), 2, - anon_sym_RBRACK, + [43786] = 3, + ACTIONS(4520), 1, aux_sym__whitespace_token1, - ACTIONS(3417), 36, + ACTIONS(4522), 1, + sym__last_token_punctuation, + ACTIONS(4518), 36, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -67351,17 +67291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [42987] = 2, - ACTIONS(4646), 2, - anon_sym_DASH, + [43831] = 2, + ACTIONS(3278), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4644), 36, + ACTIONS(3276), 36, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -67374,6 +67312,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, @@ -67392,18 +67331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_DASH_DASH_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43030] = 3, - ACTIONS(4650), 1, + [43874] = 2, + ACTIONS(3311), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4652), 1, - sym__last_token_punctuation, - ACTIONS(4648), 36, + ACTIONS(3309), 36, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -67435,14 +67372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43075] = 2, - ACTIONS(3419), 2, - anon_sym_QMARK, + [43917] = 2, + ACTIONS(4526), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(3417), 36, + ACTIONS(4524), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67457,12 +67395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -67475,16 +67413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_QMARK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43118] = 3, - ACTIONS(4656), 1, + [43960] = 2, + ACTIONS(4512), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4658), 1, - sym__last_token_punctuation, - ACTIONS(4654), 36, + ACTIONS(4187), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67505,7 +67442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -67518,15 +67454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43163] = 2, - ACTIONS(4636), 2, - anon_sym_RBRACK, + [44003] = 3, + ACTIONS(4530), 1, aux_sym__whitespace_token1, - ACTIONS(4235), 36, + ACTIONS(4532), 1, + sym__last_token_punctuation, + ACTIONS(4528), 36, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -67558,32 +67497,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43206] = 2, - ACTIONS(4662), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [44048] = 2, + ACTIONS(4474), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4660), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4133), 36, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -67591,6 +67526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -67600,14 +67536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43249] = 2, - ACTIONS(3443), 2, - anon_sym_QMARK, + [44091] = 3, + ACTIONS(2877), 1, aux_sym__whitespace_token1, - ACTIONS(3441), 36, + ACTIONS(4534), 1, + sym__last_token_whitespace, + ACTIONS(2875), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67628,6 +67567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_QMARK, anon_sym_AT, anon_sym_BSLASH, anon_sym_CARET, @@ -67640,16 +67580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43292] = 3, - ACTIONS(3292), 1, + [44136] = 3, + ACTIONS(2975), 1, aux_sym__whitespace_token1, - ACTIONS(4664), 1, + ACTIONS(4536), 1, sym__last_token_whitespace, - ACTIONS(3290), 36, + ACTIONS(2973), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67686,10 +67625,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43337] = 2, - ACTIONS(3443), 1, + [44181] = 2, + ACTIONS(4538), 1, aux_sym__whitespace_token1, - ACTIONS(3441), 36, + ACTIONS(4304), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67726,10 +67665,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43379] = 2, - ACTIONS(3419), 1, + [44223] = 2, + ACTIONS(4540), 1, aux_sym__whitespace_token1, - ACTIONS(3417), 36, + ACTIONS(4283), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67766,10 +67705,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43421] = 2, - ACTIONS(4666), 1, + [44265] = 2, + ACTIONS(3311), 1, aux_sym__whitespace_token1, - ACTIONS(4386), 36, + ACTIONS(3309), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67806,10 +67745,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43463] = 2, - ACTIONS(4668), 1, + [44307] = 2, + ACTIONS(3278), 1, aux_sym__whitespace_token1, - ACTIONS(4505), 36, + ACTIONS(3276), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67846,10 +67785,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43505] = 2, - ACTIONS(4670), 1, + [44349] = 2, + ACTIONS(4542), 1, aux_sym__whitespace_token1, - ACTIONS(4369), 36, + ACTIONS(4385), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67886,8 +67825,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [43547] = 1, - ACTIONS(4672), 31, + [44391] = 1, + ACTIONS(4544), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67919,8 +67858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43581] = 1, - ACTIONS(4674), 31, + [44425] = 1, + ACTIONS(4546), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67952,8 +67891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43615] = 1, - ACTIONS(4676), 31, + [44459] = 1, + ACTIONS(4548), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -67985,8 +67924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43649] = 1, - ACTIONS(4678), 31, + [44493] = 1, + ACTIONS(4550), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -68018,8 +67957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43683] = 1, - ACTIONS(4680), 31, + [44527] = 1, + ACTIONS(4552), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -68051,8 +67990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43717] = 1, - ACTIONS(4682), 31, + [44561] = 1, + ACTIONS(4554), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -68084,8 +68023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43751] = 1, - ACTIONS(4684), 31, + [44595] = 1, + ACTIONS(4556), 31, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT, @@ -68117,5998 +68056,5959 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [43785] = 5, - ACTIONS(4686), 1, + [44629] = 5, + ACTIONS(4558), 1, sym__newline_token, - ACTIONS(4689), 1, + ACTIONS(4561), 1, sym__whitespace_ge_2, - ACTIONS(4692), 1, + ACTIONS(4564), 1, aux_sym__whitespace_token1, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4189), 6, + ACTIONS(4037), 6, anon_sym_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, - [43808] = 9, - ACTIONS(4075), 1, + [44652] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4573), 1, anon_sym_RPAREN, - STATE(1078), 1, + STATE(1003), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [43838] = 9, - ACTIONS(4075), 1, + [44682] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4575), 1, anon_sym_RPAREN, - STATE(1036), 1, + STATE(1039), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [43868] = 9, - ACTIONS(4075), 1, + [44712] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(4577), 1, anon_sym_RPAREN, - STATE(993), 1, + STATE(1085), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [43898] = 9, - ACTIONS(4075), 1, + [44742] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4579), 1, anon_sym_RPAREN, - STATE(1087), 1, + STATE(1018), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [43928] = 9, - ACTIONS(4075), 1, + [44772] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4709), 1, + ACTIONS(4581), 1, anon_sym_RPAREN, - STATE(1080), 1, + STATE(1025), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [43958] = 9, - ACTIONS(4075), 1, + [44802] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4711), 1, + ACTIONS(4583), 1, anon_sym_RPAREN, - STATE(995), 1, + STATE(988), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [43988] = 9, - ACTIONS(4075), 1, + [44832] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4585), 1, anon_sym_RPAREN, - STATE(1029), 1, + STATE(1072), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44018] = 9, - ACTIONS(4075), 1, + [44862] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4715), 1, + ACTIONS(4587), 1, anon_sym_RPAREN, - STATE(1074), 1, + STATE(1089), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44048] = 9, - ACTIONS(4075), 1, + [44892] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4589), 1, anon_sym_RPAREN, - STATE(1091), 1, + STATE(1021), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44078] = 9, - ACTIONS(4075), 1, + [44922] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4591), 1, anon_sym_RPAREN, - STATE(1022), 1, + STATE(1028), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44108] = 9, - ACTIONS(4075), 1, + [44952] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4593), 1, anon_sym_RPAREN, - STATE(1071), 1, + STATE(1086), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44138] = 9, - ACTIONS(4075), 1, + [44982] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, + ACTIONS(4595), 1, anon_sym_RPAREN, - STATE(990), 1, + STATE(1063), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44168] = 9, - ACTIONS(4075), 1, + [45012] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4725), 1, + ACTIONS(4597), 1, anon_sym_RPAREN, - STATE(1027), 1, + STATE(1078), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44198] = 9, - ACTIONS(4075), 1, + [45042] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4727), 1, + ACTIONS(4599), 1, anon_sym_RPAREN, - STATE(1024), 1, + STATE(1066), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44228] = 9, - ACTIONS(4075), 1, + [45072] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4729), 1, + ACTIONS(4601), 1, anon_sym_RPAREN, - STATE(1094), 1, + STATE(1004), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44258] = 9, - ACTIONS(4075), 1, + [45102] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4603), 1, anon_sym_RPAREN, - STATE(1034), 1, + STATE(981), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44288] = 9, - ACTIONS(4075), 1, + [45132] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4733), 1, + ACTIONS(4605), 1, anon_sym_RPAREN, - STATE(989), 1, + STATE(982), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44318] = 9, - ACTIONS(4075), 1, + [45162] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4735), 1, + ACTIONS(4607), 1, anon_sym_RPAREN, - STATE(1014), 1, + STATE(1011), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44348] = 9, - ACTIONS(4075), 1, + [45192] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4609), 1, anon_sym_RPAREN, - STATE(1032), 1, + STATE(1013), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44378] = 9, - ACTIONS(4075), 1, + [45222] = 9, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4695), 1, + ACTIONS(4567), 1, anon_sym_DQUOTE, - ACTIONS(4697), 1, + ACTIONS(4569), 1, anon_sym_SQUOTE, - ACTIONS(4699), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - ACTIONS(4739), 1, + ACTIONS(4611), 1, anon_sym_RPAREN, - STATE(1043), 1, + STATE(1067), 1, sym_link_title, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44408] = 7, - ACTIONS(4741), 1, + [45252] = 7, + ACTIONS(4613), 1, anon_sym_GT, - ACTIONS(4743), 1, + ACTIONS(4615), 1, anon_sym_SLASH, - ACTIONS(4745), 1, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - STATE(967), 2, + STATE(944), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(986), 3, + STATE(963), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44433] = 8, - ACTIONS(4751), 1, - anon_sym_DQUOTE, - ACTIONS(4753), 1, - anon_sym_SQUOTE, - ACTIONS(4755), 1, - sym__newline_token, - ACTIONS(4757), 1, - aux_sym__attribute_value_token1, - ACTIONS(4759), 1, - sym__whitespace_ge_2, - ACTIONS(4761), 1, - aux_sym__whitespace_token1, - STATE(1115), 1, - sym__attribute_value, - STATE(968), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [44460] = 7, - ACTIONS(4745), 1, + [45277] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4763), 1, + ACTIONS(4623), 1, anon_sym_GT, - ACTIONS(4765), 1, + ACTIONS(4625), 1, anon_sym_SLASH, - STATE(951), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(980), 3, + STATE(972), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44485] = 7, - ACTIONS(4745), 1, + [45302] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4767), 1, + ACTIONS(4627), 1, anon_sym_GT, - ACTIONS(4769), 1, + ACTIONS(4629), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(949), 2, sym__attribute, aux_sym__open_tag_repeat1, STATE(976), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44510] = 7, - ACTIONS(4745), 1, + [45327] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4771), 1, + ACTIONS(4631), 1, anon_sym_GT, - ACTIONS(4773), 1, + ACTIONS(4633), 1, anon_sym_SLASH, - STATE(966), 2, + STATE(950), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(973), 3, + STATE(977), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44535] = 7, - ACTIONS(4745), 1, + [45352] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4775), 1, + ACTIONS(4635), 1, anon_sym_GT, - ACTIONS(4777), 1, + ACTIONS(4637), 1, anon_sym_SLASH, - STATE(954), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, STATE(970), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44560] = 7, - ACTIONS(4745), 1, + [45377] = 8, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4641), 1, + anon_sym_SQUOTE, + ACTIONS(4643), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4645), 1, + aux_sym__attribute_value_token1, + ACTIONS(4647), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4649), 1, aux_sym__whitespace_token1, - ACTIONS(4779), 1, + STATE(1110), 1, + sym__attribute_value, + STATE(975), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [45404] = 7, + ACTIONS(4617), 1, + sym__newline_token, + ACTIONS(4619), 1, + sym__whitespace_ge_2, + ACTIONS(4621), 1, + aux_sym__whitespace_token1, + ACTIONS(4651), 1, anon_sym_GT, - ACTIONS(4781), 1, + ACTIONS(4653), 1, anon_sym_SLASH, - STATE(965), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(981), 3, + STATE(980), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44585] = 7, - ACTIONS(4745), 1, + [45429] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4783), 1, + ACTIONS(4655), 1, anon_sym_GT, - ACTIONS(4785), 1, + ACTIONS(4657), 1, anon_sym_SLASH, - STATE(969), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(987), 3, + STATE(968), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44610] = 8, - ACTIONS(4751), 1, + [45454] = 8, + ACTIONS(4639), 1, anon_sym_DQUOTE, - ACTIONS(4753), 1, + ACTIONS(4641), 1, anon_sym_SQUOTE, - ACTIONS(4755), 1, + ACTIONS(4643), 1, sym__newline_token, - ACTIONS(4759), 1, + ACTIONS(4647), 1, sym__whitespace_ge_2, - ACTIONS(4761), 1, + ACTIONS(4649), 1, aux_sym__whitespace_token1, - ACTIONS(4787), 1, + ACTIONS(4659), 1, aux_sym__attribute_value_token1, - STATE(1118), 1, + STATE(1106), 1, sym__attribute_value, - STATE(960), 3, + STATE(948), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [45481] = 7, + ACTIONS(4617), 1, + sym__newline_token, + ACTIONS(4619), 1, + sym__whitespace_ge_2, + ACTIONS(4621), 1, + aux_sym__whitespace_token1, + ACTIONS(4661), 1, + anon_sym_GT, + ACTIONS(4663), 1, + anon_sym_SLASH, + STATE(954), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(962), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44637] = 8, - ACTIONS(4751), 1, + [45506] = 8, + ACTIONS(4639), 1, anon_sym_DQUOTE, - ACTIONS(4753), 1, + ACTIONS(4641), 1, anon_sym_SQUOTE, - ACTIONS(4755), 1, + ACTIONS(4643), 1, sym__newline_token, - ACTIONS(4757), 1, - aux_sym__attribute_value_token1, - ACTIONS(4759), 1, + ACTIONS(4647), 1, sym__whitespace_ge_2, - ACTIONS(4761), 1, + ACTIONS(4649), 1, aux_sym__whitespace_token1, - STATE(1115), 1, + ACTIONS(4659), 1, + aux_sym__attribute_value_token1, + STATE(1106), 1, sym__attribute_value, - STATE(977), 3, + STATE(975), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44664] = 7, - ACTIONS(4745), 1, + [45533] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4789), 1, + ACTIONS(4665), 1, anon_sym_GT, - ACTIONS(4791), 1, + ACTIONS(4667), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(974), 3, + STATE(973), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44689] = 7, - ACTIONS(4745), 1, + [45558] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4793), 1, + ACTIONS(4669), 1, anon_sym_GT, - ACTIONS(4795), 1, + ACTIONS(4671), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(947), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(983), 3, + STATE(978), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44714] = 7, - ACTIONS(4745), 1, + [45583] = 6, + ACTIONS(4675), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4678), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4681), 1, aux_sym__whitespace_token1, - ACTIONS(4797), 1, + ACTIONS(4673), 2, anon_sym_GT, - ACTIONS(4799), 1, anon_sym_SLASH, - STATE(962), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(979), 3, + STATE(1029), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44739] = 7, - ACTIONS(4745), 1, + [45606] = 8, + ACTIONS(4639), 1, + anon_sym_DQUOTE, + ACTIONS(4641), 1, + anon_sym_SQUOTE, + ACTIONS(4643), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4647), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4649), 1, aux_sym__whitespace_token1, - ACTIONS(4801), 1, - anon_sym_GT, - ACTIONS(4803), 1, - anon_sym_SLASH, - STATE(961), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(971), 3, + ACTIONS(4684), 1, + aux_sym__attribute_value_token1, + STATE(1107), 1, + sym__attribute_value, + STATE(953), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44764] = 7, - ACTIONS(4745), 1, + [45633] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4805), 1, + ACTIONS(4686), 1, anon_sym_GT, - ACTIONS(4807), 1, + ACTIONS(4688), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(960), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(972), 3, + STATE(967), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44789] = 7, - ACTIONS(4745), 1, + [45658] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4809), 1, + ACTIONS(4690), 1, anon_sym_GT, - ACTIONS(4811), 1, + ACTIONS(4692), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(982), 3, + STATE(974), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44814] = 6, - ACTIONS(4815), 1, + [45683] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4818), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4821), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4813), 2, + ACTIONS(4694), 1, anon_sym_GT, + ACTIONS(4696), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(956), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1001), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [44837] = 8, - ACTIONS(4751), 1, - anon_sym_DQUOTE, - ACTIONS(4753), 1, - anon_sym_SQUOTE, - ACTIONS(4755), 1, - sym__newline_token, - ACTIONS(4759), 1, - sym__whitespace_ge_2, - ACTIONS(4761), 1, - aux_sym__whitespace_token1, - ACTIONS(4824), 1, - aux_sym__attribute_value_token1, - STATE(1117), 1, - sym__attribute_value, - STATE(977), 3, + STATE(966), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44864] = 7, - ACTIONS(4745), 1, + [45708] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4826), 1, + ACTIONS(4698), 1, anon_sym_GT, - ACTIONS(4828), 1, + ACTIONS(4700), 1, anon_sym_SLASH, - STATE(967), 2, + STATE(959), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(984), 3, + STATE(969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44889] = 7, - ACTIONS(4745), 1, + [45733] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4767), 1, + ACTIONS(4665), 1, anon_sym_GT, - ACTIONS(4769), 1, + ACTIONS(4667), 1, anon_sym_SLASH, - ACTIONS(4830), 1, + ACTIONS(4702), 1, sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44913] = 7, - ACTIONS(4745), 1, + [45757] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4789), 1, + ACTIONS(4623), 1, anon_sym_GT, - ACTIONS(4791), 1, + ACTIONS(4625), 1, anon_sym_SLASH, - ACTIONS(4830), 1, + ACTIONS(4702), 1, sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44937] = 7, - ACTIONS(4745), 1, - sym__newline_token, - ACTIONS(4747), 1, - sym__whitespace_ge_2, - ACTIONS(4749), 1, + [45781] = 4, + ACTIONS(4708), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - sym__attribute_name, - ACTIONS(4832), 1, + STATE(979), 1, + aux_sym__tag_name_repeat1, + ACTIONS(4706), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(4704), 4, anon_sym_GT, - ACTIONS(4834), 1, anon_sym_SLASH, - STATE(978), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [44961] = 7, - ACTIONS(4745), 1, sym__newline_token, - ACTIONS(4747), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + [45799] = 5, + ACTIONS(4710), 1, + sym__newline_token, + ACTIONS(4713), 1, + sym__whitespace_ge_2, + ACTIONS(4716), 1, aux_sym__whitespace_token1, - ACTIONS(4809), 1, + ACTIONS(4037), 3, anon_sym_GT, - ACTIONS(4811), 1, anon_sym_SLASH, - ACTIONS(4830), 1, sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [44985] = 7, - ACTIONS(4745), 1, + [45819] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4702), 1, sym__attribute_name, - ACTIONS(4836), 1, + ACTIONS(4719), 1, anon_sym_GT, - ACTIONS(4838), 1, + ACTIONS(4721), 1, anon_sym_SLASH, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45009] = 4, - ACTIONS(4844), 1, - aux_sym__whitespace_token1, - STATE(988), 1, - aux_sym__tag_name_repeat1, - ACTIONS(4842), 3, - anon_sym_DASH, - sym__word_no_digit, - sym__digits, - ACTIONS(4840), 4, - anon_sym_GT, - anon_sym_SLASH, + [45843] = 7, + ACTIONS(4617), 1, sym__newline_token, + ACTIONS(4619), 1, sym__whitespace_ge_2, - [45027] = 7, - ACTIONS(4745), 1, - sym__newline_token, - ACTIONS(4747), 1, - sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - sym__attribute_name, - ACTIONS(4846), 1, + ACTIONS(4694), 1, anon_sym_GT, - ACTIONS(4848), 1, + ACTIONS(4696), 1, anon_sym_SLASH, - STATE(978), 3, + ACTIONS(4702), 1, + sym__attribute_name, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45051] = 5, - ACTIONS(4850), 1, + [45867] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4853), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4856), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4189), 3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - STATE(977), 3, + ACTIONS(4702), 1, + sym__attribute_name, + ACTIONS(4723), 1, + anon_sym_GT, + ACTIONS(4725), 1, + anon_sym_SLASH, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45071] = 5, - ACTIONS(4859), 1, + [45891] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4862), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4865), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4189), 3, + ACTIONS(4690), 1, anon_sym_GT, + ACTIONS(4692), 1, anon_sym_SLASH, + ACTIONS(4702), 1, sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45091] = 7, - ACTIONS(4745), 1, + [45915] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4793), 1, + ACTIONS(4702), 1, + sym__attribute_name, + ACTIONS(4727), 1, anon_sym_GT, - ACTIONS(4795), 1, + ACTIONS(4729), 1, anon_sym_SLASH, - ACTIONS(4830), 1, - sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45115] = 7, - ACTIONS(4741), 1, + [45939] = 4, + ACTIONS(4736), 1, + aux_sym__whitespace_token1, + STATE(971), 1, + aux_sym__tag_name_repeat1, + ACTIONS(4733), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(4731), 4, anon_sym_GT, - ACTIONS(4743), 1, anon_sym_SLASH, - ACTIONS(4745), 1, sym__newline_token, - ACTIONS(4747), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + [45957] = 7, + ACTIONS(4617), 1, + sym__newline_token, + ACTIONS(4619), 1, + sym__whitespace_ge_2, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4702), 1, sym__attribute_name, - STATE(978), 3, + ACTIONS(4738), 1, + anon_sym_GT, + ACTIONS(4740), 1, + anon_sym_SLASH, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45139] = 7, - ACTIONS(4745), 1, + [45981] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4805), 1, + ACTIONS(4702), 1, + sym__attribute_name, + ACTIONS(4742), 1, anon_sym_GT, - ACTIONS(4807), 1, + ACTIONS(4744), 1, anon_sym_SLASH, - ACTIONS(4830), 1, - sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45163] = 7, - ACTIONS(4745), 1, + [46005] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4702), 1, sym__attribute_name, - ACTIONS(4868), 1, + ACTIONS(4746), 1, anon_sym_GT, - ACTIONS(4870), 1, + ACTIONS(4748), 1, anon_sym_SLASH, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45187] = 7, - ACTIONS(4745), 1, + [46029] = 5, + ACTIONS(4750), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4753), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4756), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - sym__attribute_name, - ACTIONS(4872), 1, - anon_sym_GT, - ACTIONS(4874), 1, - anon_sym_SLASH, - STATE(978), 3, + ACTIONS(4037), 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + STATE(975), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45211] = 7, - ACTIONS(4745), 1, + [46049] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - sym__attribute_name, - ACTIONS(4876), 1, + ACTIONS(4651), 1, anon_sym_GT, - ACTIONS(4878), 1, + ACTIONS(4653), 1, anon_sym_SLASH, - STATE(978), 3, + ACTIONS(4702), 1, + sym__attribute_name, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45235] = 4, - ACTIONS(4885), 1, - aux_sym__whitespace_token1, - STATE(985), 1, - aux_sym__tag_name_repeat1, - ACTIONS(4882), 3, - anon_sym_DASH, - sym__word_no_digit, - sym__digits, - ACTIONS(4880), 4, - anon_sym_GT, - anon_sym_SLASH, - sym__newline_token, - sym__whitespace_ge_2, - [45253] = 7, - ACTIONS(4745), 1, + [46073] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - sym__attribute_name, - ACTIONS(4887), 1, + ACTIONS(4655), 1, anon_sym_GT, - ACTIONS(4889), 1, + ACTIONS(4657), 1, anon_sym_SLASH, - STATE(978), 3, + ACTIONS(4702), 1, + sym__attribute_name, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45277] = 7, - ACTIONS(4745), 1, + [46097] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4826), 1, + ACTIONS(4635), 1, anon_sym_GT, - ACTIONS(4828), 1, + ACTIONS(4637), 1, anon_sym_SLASH, - ACTIONS(4830), 1, + ACTIONS(4702), 1, sym__attribute_name, - STATE(978), 3, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45301] = 4, - ACTIONS(4895), 1, + [46121] = 4, + ACTIONS(4763), 1, aux_sym__whitespace_token1, - STATE(985), 1, + STATE(971), 1, aux_sym__tag_name_repeat1, - ACTIONS(4893), 3, + ACTIONS(4761), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(4891), 4, + ACTIONS(4759), 4, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__whitespace_ge_2, - [45319] = 5, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4717), 1, - anon_sym_RPAREN, - STATE(1092), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [45337] = 5, - ACTIONS(4075), 1, + [46139] = 7, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4897), 1, - anon_sym_RPAREN, - STATE(1081), 3, + ACTIONS(4702), 1, + sym__attribute_name, + ACTIONS(4765), 1, + anon_sym_GT, + ACTIONS(4767), 1, + anon_sym_SLASH, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45355] = 5, - ACTIONS(4075), 1, + [46163] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4711), 1, + ACTIONS(4609), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1012), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45373] = 5, - ACTIONS(4075), 1, + [46181] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4899), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1073), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45391] = 5, - ACTIONS(4075), 1, + [46199] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4899), 1, + ACTIONS(4589), 1, anon_sym_RPAREN, - STATE(996), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45409] = 5, - ACTIONS(4075), 1, - sym__newline_token, - ACTIONS(4079), 1, - sym__whitespace_ge_2, - ACTIONS(4081), 1, - aux_sym__whitespace_token1, - ACTIONS(4901), 1, + [46217] = 5, + ACTIONS(3616), 1, anon_sym_RPAREN, - STATE(930), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [45427] = 5, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4901), 1, - anon_sym_RPAREN, - STATE(997), 3, + STATE(938), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45445] = 5, - ACTIONS(4075), 1, + [46235] = 5, + ACTIONS(3616), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4903), 1, - anon_sym_RPAREN, - STATE(930), 3, + STATE(999), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45463] = 5, - ACTIONS(4075), 1, + [46253] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4905), 1, + ACTIONS(4583), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(926), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45481] = 5, - ACTIONS(4075), 1, + [46271] = 3, + ACTIONS(2877), 1, + aux_sym__whitespace_token1, + ACTIONS(4771), 1, + sym__last_token_whitespace, + ACTIONS(2875), 5, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__attribute_name, + sym__whitespace_ge_2, + [46285] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4737), 1, + ACTIONS(4579), 1, anon_sym_RPAREN, - STATE(946), 3, + STATE(1017), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45499] = 5, - ACTIONS(4075), 1, + [46303] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4737), 1, + ACTIONS(4579), 1, anon_sym_RPAREN, - STATE(1038), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45517] = 5, - ACTIONS(4075), 1, + [46321] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4907), 1, - anon_sym_EQ, - STATE(930), 3, + ACTIONS(4773), 1, + anon_sym_GT, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45535] = 5, - ACTIONS(4745), 1, + [46339] = 3, + ACTIONS(2877), 1, + aux_sym__whitespace_token1, + ACTIONS(4775), 1, + sym__last_token_whitespace, + ACTIONS(2875), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [46353] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4747), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4749), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - sym__attribute_name, - STATE(978), 3, + ACTIONS(4583), 1, + anon_sym_RPAREN, + STATE(989), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45553] = 5, - ACTIONS(4075), 1, + [46371] = 3, + ACTIONS(2975), 1, + aux_sym__whitespace_token1, + ACTIONS(4777), 1, + sym__last_token_whitespace, + ACTIONS(2973), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [46385] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4909), 1, + ACTIONS(4779), 1, anon_sym_GT, - STATE(1041), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45571] = 5, - ACTIONS(4075), 1, + [46403] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4911), 1, + ACTIONS(4601), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45589] = 5, - ACTIONS(4075), 1, + [46421] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4913), 1, + ACTIONS(4601), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(940), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45607] = 5, - ACTIONS(4075), 1, + [46439] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4735), 1, + ACTIONS(4601), 1, anon_sym_RPAREN, - STATE(1021), 3, + STATE(1006), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45625] = 5, - ACTIONS(4075), 1, + [46457] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4915), 1, - anon_sym_GT, - STATE(1013), 3, + ACTIONS(4573), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45643] = 5, - ACTIONS(4075), 1, + [46475] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4735), 1, + ACTIONS(4603), 1, anon_sym_RPAREN, - STATE(932), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45661] = 5, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [46493] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(940), 3, + ACTIONS(4603), 1, + anon_sym_RPAREN, + STATE(941), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45679] = 5, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [46511] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1015), 3, + ACTIONS(4603), 1, + anon_sym_RPAREN, + STATE(1009), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45697] = 5, - ACTIONS(3811), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [46529] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(944), 3, + ACTIONS(4781), 1, + anon_sym_GT, + STATE(1061), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45715] = 5, - ACTIONS(3811), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [46547] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1018), 3, + ACTIONS(4577), 1, + anon_sym_RPAREN, + STATE(1092), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45733] = 5, - ACTIONS(4075), 1, + [46565] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4735), 1, + ACTIONS(4607), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1010), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45751] = 5, - ACTIONS(4075), 1, + [46583] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4917), 1, - anon_sym_GT, - STATE(930), 3, + ACTIONS(4583), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45769] = 5, - ACTIONS(4075), 1, + [46601] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4703), 1, + ACTIONS(4607), 1, anon_sym_RPAREN, - STATE(1037), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45787] = 5, - ACTIONS(4075), 1, + [46619] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4719), 1, + ACTIONS(4577), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45805] = 5, - ACTIONS(4075), 1, + [46637] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4719), 1, + ACTIONS(4573), 1, anon_sym_RPAREN, - STATE(943), 3, + STATE(925), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45823] = 5, - ACTIONS(4075), 1, + [46655] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4719), 1, + ACTIONS(4609), 1, anon_sym_RPAREN, - STATE(1023), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45841] = 5, - ACTIONS(4075), 1, + [46673] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4727), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45859] = 5, - ACTIONS(4075), 1, + [46691] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4727), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(937), 3, + STATE(1014), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45877] = 5, - ACTIONS(4075), 1, + [46709] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4727), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - STATE(1025), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45895] = 5, - ACTIONS(4075), 1, + [46727] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4703), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1015), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45913] = 5, - ACTIONS(4075), 1, + [46745] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4725), 1, + ACTIONS(4787), 1, anon_sym_RPAREN, - STATE(1026), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45931] = 5, - ACTIONS(4075), 1, + [46763] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4725), 1, + ACTIONS(4789), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45949] = 5, - ACTIONS(4075), 1, + [46781] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4713), 1, + ACTIONS(4573), 1, anon_sym_RPAREN, - STATE(1028), 3, + STATE(1007), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45967] = 5, - ACTIONS(4075), 1, + [46799] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4713), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [45985] = 5, - ACTIONS(4075), 1, + [46817] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4919), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1084), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46003] = 5, - ACTIONS(4075), 1, + [46835] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4919), 1, - anon_sym_RPAREN, - STATE(1030), 3, + ACTIONS(4793), 1, + anon_sym_GT, + STATE(1057), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46021] = 5, - ACTIONS(4075), 1, + [46853] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4921), 1, + ACTIONS(4575), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46039] = 5, - ACTIONS(4075), 1, + [46871] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4921), 1, + ACTIONS(4591), 1, anon_sym_RPAREN, - STATE(1031), 3, + STATE(1034), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46057] = 5, - ACTIONS(4075), 1, + [46889] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4923), 1, + ACTIONS(4591), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46075] = 5, - ACTIONS(4075), 1, + [46907] = 5, + ACTIONS(3668), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4925), 1, - anon_sym_RPAREN, - STATE(930), 3, + STATE(998), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46093] = 5, - ACTIONS(4075), 1, + [46925] = 5, + ACTIONS(3668), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4731), 1, - anon_sym_RPAREN, - STATE(1035), 3, + STATE(923), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46111] = 5, - ACTIONS(4075), 1, + [46943] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4737), 1, + ACTIONS(4575), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1038), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46129] = 5, - ACTIONS(4075), 1, + [46961] = 5, + ACTIONS(3666), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4927), 1, - anon_sym_RPAREN, - STATE(1003), 3, + STATE(1005), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46147] = 5, - ACTIONS(4075), 1, + [46979] = 5, + ACTIONS(3666), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4927), 1, - anon_sym_RPAREN, - STATE(930), 3, + STATE(928), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46165] = 5, - ACTIONS(4075), 1, + [46997] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4929), 1, + ACTIONS(4795), 1, anon_sym_RPAREN, - STATE(1004), 3, + STATE(1044), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46183] = 5, - ACTIONS(4075), 1, + [47015] = 5, + ACTIONS(4617), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4929), 1, - anon_sym_RPAREN, - STATE(930), 3, + ACTIONS(4702), 1, + sym__attribute_name, + STATE(965), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46201] = 5, - ACTIONS(4075), 1, + [47033] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4731), 1, - anon_sym_RPAREN, - STATE(930), 3, + ACTIONS(4797), 1, + anon_sym_GT, + STATE(994), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46219] = 5, - ACTIONS(4075), 1, + [47051] = 5, + ACTIONS(3614), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4931), 1, - anon_sym_EQ, - STATE(1000), 3, + STATE(930), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46237] = 5, - ACTIONS(4075), 1, + [47069] = 5, + ACTIONS(3614), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4933), 1, - anon_sym_GT, - STATE(1056), 3, + STATE(1098), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46255] = 5, - ACTIONS(4075), 1, + [47087] = 5, + ACTIONS(3662), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4935), 1, - anon_sym_GT, - STATE(930), 3, + STATE(931), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46273] = 5, - ACTIONS(4075), 1, + [47105] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4705), 1, + ACTIONS(4795), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46291] = 5, - ACTIONS(4075), 1, + [47123] = 3, + ACTIONS(2975), 1, + aux_sym__whitespace_token1, + ACTIONS(4799), 1, + sym__last_token_whitespace, + ACTIONS(2973), 5, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__attribute_name, + sym__whitespace_ge_2, + [47137] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4705), 1, - anon_sym_RPAREN, - STATE(992), 3, + ACTIONS(4801), 1, + anon_sym_GT, + STATE(1048), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46309] = 5, - ACTIONS(3815), 1, + [47155] = 5, + ACTIONS(3662), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1033), 3, + STATE(983), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46327] = 5, - ACTIONS(4075), 1, + [47173] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4701), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - STATE(991), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46345] = 5, - ACTIONS(4075), 1, + [47191] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4701), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - STATE(936), 3, + STATE(1051), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46363] = 5, - ACTIONS(4075), 1, + [47209] = 5, + ACTIONS(3612), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4701), 1, - anon_sym_RPAREN, - STATE(930), 3, + STATE(927), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46381] = 5, - ACTIONS(4075), 1, + [47227] = 5, + ACTIONS(3612), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4739), 1, - anon_sym_RPAREN, - STATE(1042), 3, + STATE(1093), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46399] = 5, - ACTIONS(4075), 1, + [47245] = 5, + ACTIONS(3648), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4739), 1, - anon_sym_RPAREN, - STATE(933), 3, + STATE(934), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46417] = 5, - ACTIONS(3780), 1, + [47263] = 5, + ACTIONS(3648), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(941), 3, + STATE(1054), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46435] = 5, - ACTIONS(3780), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [47281] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1062), 3, + ACTIONS(4805), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46453] = 5, - ACTIONS(4075), 1, + [47299] = 5, + ACTIONS(3664), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4739), 1, - anon_sym_RPAREN, - STATE(930), 3, + STATE(936), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46471] = 5, - ACTIONS(3795), 1, + [47317] = 5, + ACTIONS(3664), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(938), 3, + STATE(1058), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46489] = 5, - ACTIONS(3795), 1, + [47335] = 5, + ACTIONS(3652), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1066), 3, + STATE(933), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46507] = 3, - ACTIONS(3292), 1, - aux_sym__whitespace_token1, - ACTIONS(4937), 1, - sym__last_token_whitespace, - ACTIONS(3290), 5, - anon_sym_GT, - anon_sym_SLASH, - sym__newline_token, - sym__attribute_name, - sym__whitespace_ge_2, - [46521] = 5, - ACTIONS(4075), 1, + [47353] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4939), 1, + ACTIONS(4807), 1, anon_sym_GT, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46539] = 3, - ACTIONS(3165), 1, - aux_sym__whitespace_token1, - ACTIONS(4941), 1, - sym__last_token_whitespace, - ACTIONS(3163), 5, - anon_sym_GT, - anon_sym_SLASH, - sym__newline_token, - sym__attribute_name, - sym__whitespace_ge_2, - [46553] = 5, - ACTIONS(4075), 1, + [47371] = 5, + ACTIONS(3652), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4943), 1, - anon_sym_GT, - STATE(930), 3, + STATE(1099), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46571] = 5, - ACTIONS(3797), 1, + [47389] = 5, + ACTIONS(3610), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1047), 3, + STATE(937), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46589] = 5, - ACTIONS(3797), 1, + [47407] = 5, + ACTIONS(3947), 1, + sym__newline_token, + ACTIONS(3951), 1, + sym__whitespace_ge_2, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4809), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, + STATE(922), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [47425] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(931), 3, + ACTIONS(4811), 1, + anon_sym_EQ, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46607] = 5, - ACTIONS(3750), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [47443] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1052), 3, + ACTIONS(4813), 1, + anon_sym_GT, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46625] = 5, - ACTIONS(4075), 1, + [47461] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4721), 1, + ACTIONS(4595), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46643] = 5, - ACTIONS(4075), 1, + [47479] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4721), 1, + ACTIONS(4595), 1, anon_sym_RPAREN, - STATE(942), 3, + STATE(939), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46661] = 5, - ACTIONS(4075), 1, + [47497] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4721), 1, + ACTIONS(4595), 1, anon_sym_RPAREN, - STATE(1073), 3, + STATE(1065), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46679] = 5, - ACTIONS(3750), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [47515] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(950), 3, + ACTIONS(4815), 1, + anon_sym_GT, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46697] = 5, - ACTIONS(4075), 1, + [47533] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4715), 1, + ACTIONS(4599), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46715] = 5, - ACTIONS(4075), 1, + [47551] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4715), 1, + ACTIONS(4599), 1, anon_sym_RPAREN, - STATE(935), 3, + STATE(929), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46733] = 5, - ACTIONS(4075), 1, + [47569] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4715), 1, + ACTIONS(4599), 1, anon_sym_RPAREN, - STATE(1076), 3, + STATE(1068), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46751] = 3, - ACTIONS(3165), 1, - aux_sym__whitespace_token1, - ACTIONS(4945), 1, - sym__last_token_whitespace, - ACTIONS(3163), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + [47587] = 5, + ACTIONS(3947), 1, sym__newline_token, - aux_sym__attribute_value_token1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - [46765] = 3, - ACTIONS(3292), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4947), 1, - sym__last_token_whitespace, - ACTIONS(3290), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4817), 1, + anon_sym_GT, + STATE(922), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [47605] = 5, + ACTIONS(3947), 1, sym__newline_token, - aux_sym__attribute_value_token1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - [46779] = 5, - ACTIONS(4075), 1, + ACTIONS(3953), 1, + aux_sym__whitespace_token1, + ACTIONS(4819), 1, + anon_sym_RPAREN, + STATE(922), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [47623] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4723), 1, + ACTIONS(4605), 1, anon_sym_RPAREN, - STATE(1077), 3, + STATE(1069), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46797] = 5, - ACTIONS(4075), 1, + [47641] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4949), 1, - anon_sym_GT, - STATE(1058), 3, + ACTIONS(4821), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46815] = 5, - ACTIONS(4075), 1, + [47659] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4723), 1, + ACTIONS(4605), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46833] = 5, - ACTIONS(4075), 1, + [47677] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4709), 1, + ACTIONS(4585), 1, anon_sym_RPAREN, - STATE(1079), 3, + STATE(1071), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46851] = 5, - ACTIONS(4075), 1, + [47695] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4951), 1, - anon_sym_GT, - STATE(930), 3, + ACTIONS(4823), 1, + anon_sym_RPAREN, + STATE(1062), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46869] = 5, - ACTIONS(4075), 1, + [47713] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4709), 1, + ACTIONS(4585), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46887] = 5, - ACTIONS(4075), 1, + [47731] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4897), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46905] = 5, - ACTIONS(4075), 1, + [47749] = 5, + ACTIONS(3610), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4711), 1, - anon_sym_RPAREN, - STATE(994), 3, + STATE(995), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46923] = 5, - ACTIONS(4075), 1, + [47767] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4953), 1, + ACTIONS(4825), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46941] = 5, - ACTIONS(4075), 1, + [47785] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4953), 1, + ACTIONS(4825), 1, anon_sym_RPAREN, - STATE(1082), 3, + STATE(1074), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46959] = 5, - ACTIONS(4075), 1, + [47803] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4955), 1, + ACTIONS(4827), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46977] = 5, - ACTIONS(4075), 1, + [47821] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4957), 1, + ACTIONS(4829), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [46995] = 5, - ACTIONS(3815), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [47839] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(949), 3, + ACTIONS(4589), 1, + anon_sym_RPAREN, + STATE(932), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47013] = 5, - ACTIONS(3746), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [47857] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1012), 3, + ACTIONS(4831), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47031] = 5, - ACTIONS(4075), 1, + [47875] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4959), 1, + ACTIONS(4823), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47049] = 5, - ACTIONS(4075), 1, + [47893] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4961), 1, + ACTIONS(4833), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1064), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47067] = 5, - ACTIONS(4075), 1, + [47911] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4963), 1, + ACTIONS(4833), 1, anon_sym_RPAREN, - STATE(1085), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47085] = 5, - ACTIONS(4075), 1, + [47929] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4963), 1, + ACTIONS(4611), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47103] = 5, - ACTIONS(4075), 1, + [47947] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4965), 1, + ACTIONS(4835), 1, anon_sym_GT, - STATE(1098), 3, + STATE(1090), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47121] = 5, - ACTIONS(4075), 1, + [47965] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4967), 1, - anon_sym_GT, - STATE(1107), 3, + ACTIONS(4581), 1, + anon_sym_RPAREN, + STATE(1020), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47139] = 5, - ACTIONS(4075), 1, + [47983] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4969), 1, + ACTIONS(4589), 1, anon_sym_RPAREN, - STATE(1086), 3, + STATE(1022), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47157] = 5, - ACTIONS(4075), 1, + [48001] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4969), 1, + ACTIONS(4837), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47175] = 5, - ACTIONS(4075), 1, + [48019] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4707), 1, + ACTIONS(4839), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(1076), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47193] = 5, - ACTIONS(4075), 1, + [48037] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4707), 1, + ACTIONS(4611), 1, anon_sym_RPAREN, - STATE(1088), 3, + STATE(1077), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47211] = 5, - ACTIONS(4075), 1, + [48055] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4717), 1, + ACTIONS(4597), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47229] = 5, - ACTIONS(3746), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [48073] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(948), 3, + ACTIONS(4841), 1, + anon_sym_EQ, + STATE(1052), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47247] = 5, - ACTIONS(4075), 1, + [48091] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4729), 1, + ACTIONS(4597), 1, anon_sym_RPAREN, - STATE(1093), 3, + STATE(1079), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47265] = 5, - ACTIONS(4075), 1, + [48109] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4971), 1, + ACTIONS(4843), 1, anon_sym_GT, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47283] = 5, - ACTIONS(3813), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [48127] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(947), 3, + ACTIONS(4581), 1, + anon_sym_RPAREN, + STATE(924), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47301] = 5, - ACTIONS(4075), 1, + [48145] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4729), 1, + ACTIONS(4839), 1, anon_sym_RPAREN, - STATE(934), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47319] = 5, - ACTIONS(4075), 1, + [48163] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4729), 1, + ACTIONS(4581), 1, anon_sym_RPAREN, - STATE(930), 3, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47337] = 5, - ACTIONS(4075), 1, + [48181] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4733), 1, + ACTIONS(4593), 1, anon_sym_RPAREN, - STATE(1095), 3, + STATE(1080), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47355] = 5, - ACTIONS(4075), 1, + [48199] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4973), 1, + ACTIONS(4845), 1, anon_sym_GT, - STATE(1075), 3, + STATE(990), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47373] = 5, - ACTIONS(4075), 1, + [48217] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4733), 1, + ACTIONS(4593), 1, anon_sym_RPAREN, - STATE(939), 3, + STATE(942), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47391] = 5, - ACTIONS(4075), 1, + [48235] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4733), 1, - anon_sym_RPAREN, - STATE(930), 3, + ACTIONS(4847), 1, + anon_sym_GT, + STATE(1053), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47409] = 5, - ACTIONS(3813), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [48253] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1105), 3, + ACTIONS(4587), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47427] = 5, - ACTIONS(4075), 1, + [48271] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - ACTIONS(4975), 1, - anon_sym_GT, - STATE(930), 3, + ACTIONS(4593), 1, + anon_sym_RPAREN, + STATE(922), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47445] = 5, - ACTIONS(3730), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [48289] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(1101), 3, + ACTIONS(4587), 1, + anon_sym_RPAREN, + STATE(1087), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47463] = 5, - ACTIONS(3730), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + [48307] = 5, + ACTIONS(3947), 1, sym__newline_token, - ACTIONS(4079), 1, + ACTIONS(3951), 1, sym__whitespace_ge_2, - ACTIONS(4081), 1, + ACTIONS(3953), 1, aux_sym__whitespace_token1, - STATE(945), 3, + ACTIONS(4587), 1, + anon_sym_RPAREN, + STATE(935), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [47481] = 2, - ACTIONS(3443), 1, - aux_sym__whitespace_token1, - ACTIONS(3441), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym__newline_token, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - [47492] = 2, - ACTIONS(3419), 1, + [48325] = 2, + ACTIONS(3278), 1, aux_sym__whitespace_token1, - ACTIONS(3417), 5, + ACTIONS(3276), 5, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__attribute_name, sym__whitespace_ge_2, - [47503] = 2, - ACTIONS(3419), 1, + [48336] = 2, + ACTIONS(3311), 1, aux_sym__whitespace_token1, - ACTIONS(3417), 5, + ACTIONS(3309), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, sym__newline_token, aux_sym__attribute_value_token1, sym__whitespace_ge_2, - [47514] = 2, - ACTIONS(3443), 1, + [48347] = 2, + ACTIONS(3311), 1, aux_sym__whitespace_token1, - ACTIONS(3441), 5, + ACTIONS(3309), 5, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__attribute_name, sym__whitespace_ge_2, - [47525] = 2, - ACTIONS(4979), 1, + [48358] = 2, + ACTIONS(3278), 1, + aux_sym__whitespace_token1, + ACTIONS(3276), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [48369] = 2, + ACTIONS(4851), 1, aux_sym__whitespace_token1, - ACTIONS(4977), 4, + ACTIONS(4849), 4, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__whitespace_ge_2, - [47535] = 2, - ACTIONS(4983), 1, + [48379] = 2, + ACTIONS(4855), 1, aux_sym__whitespace_token1, - ACTIONS(4981), 4, + ACTIONS(4853), 4, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__whitespace_ge_2, - [47545] = 2, - ACTIONS(4987), 1, + [48389] = 2, + ACTIONS(4859), 1, aux_sym__whitespace_token1, - ACTIONS(4985), 4, + ACTIONS(4857), 4, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__whitespace_ge_2, - [47555] = 2, - ACTIONS(4991), 1, + [48399] = 2, + ACTIONS(4863), 1, aux_sym__whitespace_token1, - ACTIONS(4989), 4, + ACTIONS(4861), 4, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__whitespace_ge_2, - [47565] = 2, - ACTIONS(4995), 1, + [48409] = 2, + ACTIONS(4867), 1, aux_sym__whitespace_token1, - ACTIONS(4993), 4, + ACTIONS(4865), 4, anon_sym_GT, anon_sym_SLASH, sym__newline_token, sym__whitespace_ge_2, - [47575] = 2, - ACTIONS(4999), 1, + [48419] = 2, + ACTIONS(3905), 1, aux_sym__whitespace_token1, - ACTIONS(4997), 3, + ACTIONS(3903), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [47584] = 2, - ACTIONS(4069), 1, + [48428] = 2, + ACTIONS(4871), 1, aux_sym__whitespace_token1, - ACTIONS(4067), 3, + ACTIONS(4869), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [47593] = 2, - ACTIONS(5003), 1, + [48437] = 2, + ACTIONS(3880), 1, aux_sym__whitespace_token1, - ACTIONS(5001), 3, + ACTIONS(3878), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [47602] = 2, - ACTIONS(4019), 1, + [48446] = 2, + ACTIONS(4875), 1, aux_sym__whitespace_token1, - ACTIONS(4017), 3, + ACTIONS(4873), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [47611] = 3, - ACTIONS(5005), 1, + [48455] = 3, + ACTIONS(4877), 1, anon_sym_LBRACK, - ACTIONS(5007), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - STATE(369), 1, + STATE(448), 1, sym_link_label, - [47621] = 3, - ACTIONS(5009), 1, + [48465] = 3, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(5011), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - STATE(452), 1, + STATE(516), 1, sym_link_label, - [47631] = 3, - ACTIONS(5013), 1, + [48475] = 3, + ACTIONS(4885), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(4887), 1, anon_sym_LPAREN, - STATE(534), 1, + STATE(517), 1, sym_link_label, - [47641] = 3, - ACTIONS(5017), 1, + [48485] = 3, + ACTIONS(4889), 1, anon_sym_LBRACK, - ACTIONS(5019), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - STATE(370), 1, + STATE(364), 1, sym_link_label, - [47651] = 3, - ACTIONS(5021), 1, + [48495] = 3, + ACTIONS(4893), 1, anon_sym_LBRACK, - ACTIONS(5023), 1, + ACTIONS(4895), 1, anon_sym_LPAREN, - STATE(314), 1, + STATE(449), 1, sym_link_label, - [47661] = 3, - ACTIONS(5025), 1, + [48505] = 3, + ACTIONS(4897), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(4899), 1, anon_sym_LPAREN, - STATE(535), 1, + STATE(315), 1, sym_link_label, - [47671] = 3, - ACTIONS(5029), 1, + [48515] = 3, + ACTIONS(4901), 1, anon_sym_LBRACK, - ACTIONS(5031), 1, + ACTIONS(4903), 1, anon_sym_LPAREN, - STATE(317), 1, + STATE(583), 1, sym_link_label, - [47681] = 3, - ACTIONS(5033), 1, + [48525] = 3, + ACTIONS(4905), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - STATE(595), 1, + STATE(536), 1, sym_link_label, - [47691] = 3, - ACTIONS(5037), 1, + [48535] = 3, + ACTIONS(4909), 1, anon_sym_LBRACK, - ACTIONS(5039), 1, + ACTIONS(4911), 1, anon_sym_LPAREN, - STATE(453), 1, + STATE(365), 1, sym_link_label, - [47701] = 3, - ACTIONS(5041), 1, + [48545] = 3, + ACTIONS(4913), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - STATE(605), 1, + STATE(360), 1, sym_link_label, - [47711] = 2, - ACTIONS(5045), 1, + [48555] = 2, + ACTIONS(4917), 1, sym__word_no_digit, STATE(1002), 1, sym__tag_name, - [47718] = 2, - ACTIONS(5045), 1, + [48562] = 2, + ACTIONS(4917), 1, sym__word_no_digit, - STATE(1040), 1, + STATE(1019), 1, sym__tag_name, - [47725] = 2, - ACTIONS(5045), 1, + [48569] = 2, + ACTIONS(4917), 1, sym__word_no_digit, - STATE(1103), 1, + STATE(1095), 1, sym__tag_name, - [47732] = 2, - ACTIONS(5045), 1, + [48576] = 2, + ACTIONS(4917), 1, sym__word_no_digit, - STATE(1090), 1, + STATE(1097), 1, sym__tag_name, - [47739] = 2, - ACTIONS(3290), 1, + [48583] = 2, + ACTIONS(2973), 1, sym__trigger_error, - ACTIONS(5047), 1, + ACTIONS(4919), 1, sym__last_token_whitespace, - [47746] = 2, - ACTIONS(5045), 1, + [48590] = 2, + ACTIONS(4917), 1, sym__word_no_digit, - STATE(1089), 1, + STATE(1036), 1, sym__tag_name, - [47753] = 2, - ACTIONS(5045), 1, + [48597] = 2, + ACTIONS(4917), 1, sym__word_no_digit, - STATE(1006), 1, + STATE(1081), 1, sym__tag_name, - [47760] = 2, - ACTIONS(5045), 1, + [48604] = 2, + ACTIONS(4917), 1, sym__word_no_digit, - STATE(1072), 1, + STATE(1030), 1, sym__tag_name, - [47767] = 1, - ACTIONS(5049), 2, + [48611] = 1, + ACTIONS(4921), 2, anon_sym_LBRACK, anon_sym_LPAREN, - [47772] = 1, - ACTIONS(4832), 1, + [48616] = 1, + ACTIONS(4727), 1, anon_sym_GT, - [47776] = 1, - ACTIONS(3417), 1, - sym__trigger_error, - [47780] = 1, - ACTIONS(4741), 1, + [48620] = 1, + ACTIONS(4923), 1, anon_sym_GT, - [47784] = 1, - ACTIONS(5051), 1, + [48624] = 1, + ACTIONS(4925), 1, + sym__trigger_error, + [48628] = 1, + ACTIONS(4655), 1, anon_sym_GT, - [47788] = 1, - ACTIONS(5053), 1, + [48632] = 1, + ACTIONS(4623), 1, anon_sym_GT, - [47792] = 1, - ACTIONS(4805), 1, + [48636] = 1, + ACTIONS(4927), 1, anon_sym_GT, - [47796] = 1, - ACTIONS(4868), 1, + [48640] = 1, + ACTIONS(4929), 1, + ts_builtin_sym_end, + [48644] = 1, + ACTIONS(4665), 1, anon_sym_GT, - [47800] = 1, - ACTIONS(4887), 1, + [48648] = 1, + ACTIONS(4651), 1, anon_sym_GT, - [47804] = 1, - ACTIONS(5055), 1, + [48652] = 1, + ACTIONS(4931), 1, sym__trigger_error, - [47808] = 1, - ACTIONS(4767), 1, + [48656] = 1, + ACTIONS(4933), 1, anon_sym_GT, - [47812] = 1, - ACTIONS(4809), 1, + [48660] = 1, + ACTIONS(3276), 1, + sym__trigger_error, + [48664] = 1, + ACTIONS(4738), 1, anon_sym_GT, - [47816] = 1, - ACTIONS(5057), 1, + [48668] = 1, + ACTIONS(4635), 1, anon_sym_GT, - [47820] = 1, - ACTIONS(4836), 1, + [48672] = 1, + ACTIONS(4765), 1, anon_sym_GT, - [47824] = 1, - ACTIONS(4872), 1, + [48676] = 1, + ACTIONS(4935), 1, anon_sym_GT, - [47828] = 1, - ACTIONS(5059), 1, - ts_builtin_sym_end, - [47832] = 1, - ACTIONS(4876), 1, + [48680] = 1, + ACTIONS(4723), 1, anon_sym_GT, - [47836] = 1, - ACTIONS(5061), 1, - sym__trigger_error, - [47840] = 1, - ACTIONS(5063), 1, - sym__trigger_error, - [47844] = 1, - ACTIONS(5065), 1, + [48684] = 1, + ACTIONS(4746), 1, anon_sym_GT, - [47848] = 1, - ACTIONS(5067), 1, + [48688] = 1, + ACTIONS(4937), 1, anon_sym_GT, - [47852] = 1, - ACTIONS(4789), 1, + [48692] = 1, + ACTIONS(4742), 1, anon_sym_GT, - [47856] = 1, - ACTIONS(4793), 1, + [48696] = 1, + ACTIONS(4694), 1, anon_sym_GT, - [47860] = 1, - ACTIONS(5069), 1, + [48700] = 1, + ACTIONS(4719), 1, anon_sym_GT, - [47864] = 1, - ACTIONS(5071), 1, + [48704] = 1, + ACTIONS(4939), 1, anon_sym_GT, - [47868] = 1, - ACTIONS(4846), 1, + [48708] = 1, + ACTIONS(4941), 1, anon_sym_GT, - [47872] = 1, - ACTIONS(4826), 1, + [48712] = 1, + ACTIONS(4943), 1, + sym__trigger_error, + [48716] = 1, + ACTIONS(4690), 1, anon_sym_GT, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(180)] = 0, - [SMALL_STATE(181)] = 97, - [SMALL_STATE(182)] = 192, - [SMALL_STATE(183)] = 287, - [SMALL_STATE(184)] = 384, - [SMALL_STATE(185)] = 464, - [SMALL_STATE(186)] = 542, - [SMALL_STATE(187)] = 620, - [SMALL_STATE(188)] = 700, - [SMALL_STATE(189)] = 778, - [SMALL_STATE(190)] = 860, - [SMALL_STATE(191)] = 938, - [SMALL_STATE(192)] = 1016, - [SMALL_STATE(193)] = 1094, - [SMALL_STATE(194)] = 1176, - [SMALL_STATE(195)] = 1254, - [SMALL_STATE(196)] = 1332, - [SMALL_STATE(197)] = 1414, - [SMALL_STATE(198)] = 1494, - [SMALL_STATE(199)] = 1575, - [SMALL_STATE(200)] = 1656, - [SMALL_STATE(201)] = 1735, - [SMALL_STATE(202)] = 1814, - [SMALL_STATE(203)] = 1891, - [SMALL_STATE(204)] = 1968, - [SMALL_STATE(205)] = 2047, - [SMALL_STATE(206)] = 2126, - [SMALL_STATE(207)] = 2207, - [SMALL_STATE(208)] = 2286, - [SMALL_STATE(209)] = 2365, - [SMALL_STATE(210)] = 2443, - [SMALL_STATE(211)] = 2523, - [SMALL_STATE(212)] = 2596, - [SMALL_STATE(213)] = 2663, - [SMALL_STATE(214)] = 2744, - [SMALL_STATE(215)] = 2817, - [SMALL_STATE(216)] = 2890, - [SMALL_STATE(217)] = 2963, - [SMALL_STATE(218)] = 3044, - [SMALL_STATE(219)] = 3125, - [SMALL_STATE(220)] = 3192, - [SMALL_STATE(221)] = 3273, - [SMALL_STATE(222)] = 3346, - [SMALL_STATE(223)] = 3419, - [SMALL_STATE(224)] = 3492, - [SMALL_STATE(225)] = 3573, - [SMALL_STATE(226)] = 3638, - [SMALL_STATE(227)] = 3703, - [SMALL_STATE(228)] = 3776, - [SMALL_STATE(229)] = 3857, - [SMALL_STATE(230)] = 3938, - [SMALL_STATE(231)] = 4011, - [SMALL_STATE(232)] = 4078, - [SMALL_STATE(233)] = 4143, - [SMALL_STATE(234)] = 4224, - [SMALL_STATE(235)] = 4291, - [SMALL_STATE(236)] = 4356, - [SMALL_STATE(237)] = 4429, - [SMALL_STATE(238)] = 4496, - [SMALL_STATE(239)] = 4577, - [SMALL_STATE(240)] = 4642, - [SMALL_STATE(241)] = 4723, - [SMALL_STATE(242)] = 4788, - [SMALL_STATE(243)] = 4861, - [SMALL_STATE(244)] = 4928, - [SMALL_STATE(245)] = 5001, - [SMALL_STATE(246)] = 5074, - [SMALL_STATE(247)] = 5139, - [SMALL_STATE(248)] = 5206, - [SMALL_STATE(249)] = 5287, - [SMALL_STATE(250)] = 5360, - [SMALL_STATE(251)] = 5433, - [SMALL_STATE(252)] = 5506, - [SMALL_STATE(253)] = 5571, - [SMALL_STATE(254)] = 5652, - [SMALL_STATE(255)] = 5719, - [SMALL_STATE(256)] = 5779, - [SMALL_STATE(257)] = 5839, - [SMALL_STATE(258)] = 5899, - [SMALL_STATE(259)] = 5959, - [SMALL_STATE(260)] = 6019, - [SMALL_STATE(261)] = 6079, - [SMALL_STATE(262)] = 6141, - [SMALL_STATE(263)] = 6201, - [SMALL_STATE(264)] = 6263, - [SMALL_STATE(265)] = 6323, - [SMALL_STATE(266)] = 6383, - [SMALL_STATE(267)] = 6443, - [SMALL_STATE(268)] = 6503, - [SMALL_STATE(269)] = 6565, - [SMALL_STATE(270)] = 6625, - [SMALL_STATE(271)] = 6689, - [SMALL_STATE(272)] = 6749, - [SMALL_STATE(273)] = 6813, - [SMALL_STATE(274)] = 6873, - [SMALL_STATE(275)] = 6933, - [SMALL_STATE(276)] = 6993, - [SMALL_STATE(277)] = 7053, - [SMALL_STATE(278)] = 7115, - [SMALL_STATE(279)] = 7175, - [SMALL_STATE(280)] = 7237, - [SMALL_STATE(281)] = 7303, - [SMALL_STATE(282)] = 7369, - [SMALL_STATE(283)] = 7429, - [SMALL_STATE(284)] = 7491, - [SMALL_STATE(285)] = 7553, - [SMALL_STATE(286)] = 7613, - [SMALL_STATE(287)] = 7670, - [SMALL_STATE(288)] = 7727, - [SMALL_STATE(289)] = 7786, - [SMALL_STATE(290)] = 7843, - [SMALL_STATE(291)] = 7902, - [SMALL_STATE(292)] = 7959, - [SMALL_STATE(293)] = 8016, - [SMALL_STATE(294)] = 8073, - [SMALL_STATE(295)] = 8130, - [SMALL_STATE(296)] = 8187, - [SMALL_STATE(297)] = 8244, - [SMALL_STATE(298)] = 8303, - [SMALL_STATE(299)] = 8360, - [SMALL_STATE(300)] = 8417, - [SMALL_STATE(301)] = 8474, - [SMALL_STATE(302)] = 8533, - [SMALL_STATE(303)] = 8590, - [SMALL_STATE(304)] = 8647, - [SMALL_STATE(305)] = 8704, - [SMALL_STATE(306)] = 8761, - [SMALL_STATE(307)] = 8818, - [SMALL_STATE(308)] = 8875, - [SMALL_STATE(309)] = 8932, - [SMALL_STATE(310)] = 8989, - [SMALL_STATE(311)] = 9046, - [SMALL_STATE(312)] = 9103, - [SMALL_STATE(313)] = 9160, - [SMALL_STATE(314)] = 9217, - [SMALL_STATE(315)] = 9274, - [SMALL_STATE(316)] = 9333, - [SMALL_STATE(317)] = 9390, - [SMALL_STATE(318)] = 9447, - [SMALL_STATE(319)] = 9506, - [SMALL_STATE(320)] = 9563, - [SMALL_STATE(321)] = 9620, - [SMALL_STATE(322)] = 9677, - [SMALL_STATE(323)] = 9734, - [SMALL_STATE(324)] = 9791, - [SMALL_STATE(325)] = 9848, - [SMALL_STATE(326)] = 9905, - [SMALL_STATE(327)] = 9962, - [SMALL_STATE(328)] = 10019, - [SMALL_STATE(329)] = 10076, - [SMALL_STATE(330)] = 10133, - [SMALL_STATE(331)] = 10190, - [SMALL_STATE(332)] = 10247, - [SMALL_STATE(333)] = 10304, - [SMALL_STATE(334)] = 10363, - [SMALL_STATE(335)] = 10422, - [SMALL_STATE(336)] = 10483, - [SMALL_STATE(337)] = 10540, - [SMALL_STATE(338)] = 10597, - [SMALL_STATE(339)] = 10654, - [SMALL_STATE(340)] = 10711, - [SMALL_STATE(341)] = 10768, - [SMALL_STATE(342)] = 10825, - [SMALL_STATE(343)] = 10884, - [SMALL_STATE(344)] = 10941, - [SMALL_STATE(345)] = 10998, - [SMALL_STATE(346)] = 11055, - [SMALL_STATE(347)] = 11114, - [SMALL_STATE(348)] = 11173, - [SMALL_STATE(349)] = 11230, - [SMALL_STATE(350)] = 11287, - [SMALL_STATE(351)] = 11344, - [SMALL_STATE(352)] = 11403, - [SMALL_STATE(353)] = 11460, - [SMALL_STATE(354)] = 11519, - [SMALL_STATE(355)] = 11576, - [SMALL_STATE(356)] = 11633, - [SMALL_STATE(357)] = 11690, - [SMALL_STATE(358)] = 11747, - [SMALL_STATE(359)] = 11804, - [SMALL_STATE(360)] = 11861, - [SMALL_STATE(361)] = 11920, - [SMALL_STATE(362)] = 11979, - [SMALL_STATE(363)] = 12036, - [SMALL_STATE(364)] = 12093, - [SMALL_STATE(365)] = 12150, - [SMALL_STATE(366)] = 12207, - [SMALL_STATE(367)] = 12268, - [SMALL_STATE(368)] = 12325, - [SMALL_STATE(369)] = 12386, - [SMALL_STATE(370)] = 12443, - [SMALL_STATE(371)] = 12500, - [SMALL_STATE(372)] = 12557, - [SMALL_STATE(373)] = 12614, - [SMALL_STATE(374)] = 12671, - [SMALL_STATE(375)] = 12728, - [SMALL_STATE(376)] = 12785, - [SMALL_STATE(377)] = 12842, - [SMALL_STATE(378)] = 12899, - [SMALL_STATE(379)] = 12956, - [SMALL_STATE(380)] = 13013, - [SMALL_STATE(381)] = 13072, - [SMALL_STATE(382)] = 13131, - [SMALL_STATE(383)] = 13192, - [SMALL_STATE(384)] = 13251, - [SMALL_STATE(385)] = 13312, - [SMALL_STATE(386)] = 13369, - [SMALL_STATE(387)] = 13426, - [SMALL_STATE(388)] = 13483, - [SMALL_STATE(389)] = 13540, - [SMALL_STATE(390)] = 13597, - [SMALL_STATE(391)] = 13654, - [SMALL_STATE(392)] = 13711, - [SMALL_STATE(393)] = 13768, - [SMALL_STATE(394)] = 13825, - [SMALL_STATE(395)] = 13882, - [SMALL_STATE(396)] = 13939, - [SMALL_STATE(397)] = 13996, - [SMALL_STATE(398)] = 14053, - [SMALL_STATE(399)] = 14110, - [SMALL_STATE(400)] = 14169, - [SMALL_STATE(401)] = 14226, - [SMALL_STATE(402)] = 14283, - [SMALL_STATE(403)] = 14340, - [SMALL_STATE(404)] = 14397, - [SMALL_STATE(405)] = 14454, - [SMALL_STATE(406)] = 14511, - [SMALL_STATE(407)] = 14568, - [SMALL_STATE(408)] = 14625, - [SMALL_STATE(409)] = 14682, - [SMALL_STATE(410)] = 14739, - [SMALL_STATE(411)] = 14796, - [SMALL_STATE(412)] = 14853, - [SMALL_STATE(413)] = 14910, - [SMALL_STATE(414)] = 14967, - [SMALL_STATE(415)] = 15024, - [SMALL_STATE(416)] = 15081, - [SMALL_STATE(417)] = 15138, - [SMALL_STATE(418)] = 15195, - [SMALL_STATE(419)] = 15252, - [SMALL_STATE(420)] = 15309, - [SMALL_STATE(421)] = 15366, - [SMALL_STATE(422)] = 15423, - [SMALL_STATE(423)] = 15480, - [SMALL_STATE(424)] = 15537, - [SMALL_STATE(425)] = 15594, - [SMALL_STATE(426)] = 15651, - [SMALL_STATE(427)] = 15712, - [SMALL_STATE(428)] = 15769, - [SMALL_STATE(429)] = 15826, - [SMALL_STATE(430)] = 15883, - [SMALL_STATE(431)] = 15940, - [SMALL_STATE(432)] = 15997, - [SMALL_STATE(433)] = 16054, - [SMALL_STATE(434)] = 16111, - [SMALL_STATE(435)] = 16168, - [SMALL_STATE(436)] = 16225, - [SMALL_STATE(437)] = 16282, - [SMALL_STATE(438)] = 16341, - [SMALL_STATE(439)] = 16398, - [SMALL_STATE(440)] = 16457, - [SMALL_STATE(441)] = 16514, - [SMALL_STATE(442)] = 16571, - [SMALL_STATE(443)] = 16628, - [SMALL_STATE(444)] = 16685, - [SMALL_STATE(445)] = 16742, - [SMALL_STATE(446)] = 16799, - [SMALL_STATE(447)] = 16856, - [SMALL_STATE(448)] = 16913, - [SMALL_STATE(449)] = 16970, - [SMALL_STATE(450)] = 17027, - [SMALL_STATE(451)] = 17084, - [SMALL_STATE(452)] = 17141, - [SMALL_STATE(453)] = 17198, - [SMALL_STATE(454)] = 17255, - [SMALL_STATE(455)] = 17312, - [SMALL_STATE(456)] = 17369, - [SMALL_STATE(457)] = 17426, - [SMALL_STATE(458)] = 17483, - [SMALL_STATE(459)] = 17540, - [SMALL_STATE(460)] = 17597, - [SMALL_STATE(461)] = 17654, - [SMALL_STATE(462)] = 17711, - [SMALL_STATE(463)] = 17768, - [SMALL_STATE(464)] = 17825, - [SMALL_STATE(465)] = 17882, - [SMALL_STATE(466)] = 17939, - [SMALL_STATE(467)] = 17996, - [SMALL_STATE(468)] = 18053, - [SMALL_STATE(469)] = 18110, - [SMALL_STATE(470)] = 18167, - [SMALL_STATE(471)] = 18224, - [SMALL_STATE(472)] = 18281, - [SMALL_STATE(473)] = 18338, - [SMALL_STATE(474)] = 18395, - [SMALL_STATE(475)] = 18452, - [SMALL_STATE(476)] = 18509, - [SMALL_STATE(477)] = 18566, - [SMALL_STATE(478)] = 18623, - [SMALL_STATE(479)] = 18680, - [SMALL_STATE(480)] = 18737, - [SMALL_STATE(481)] = 18794, - [SMALL_STATE(482)] = 18851, - [SMALL_STATE(483)] = 18908, - [SMALL_STATE(484)] = 18965, - [SMALL_STATE(485)] = 19022, - [SMALL_STATE(486)] = 19079, - [SMALL_STATE(487)] = 19136, - [SMALL_STATE(488)] = 19193, - [SMALL_STATE(489)] = 19250, - [SMALL_STATE(490)] = 19307, - [SMALL_STATE(491)] = 19364, - [SMALL_STATE(492)] = 19421, - [SMALL_STATE(493)] = 19478, - [SMALL_STATE(494)] = 19535, - [SMALL_STATE(495)] = 19592, - [SMALL_STATE(496)] = 19649, - [SMALL_STATE(497)] = 19706, - [SMALL_STATE(498)] = 19763, - [SMALL_STATE(499)] = 19820, - [SMALL_STATE(500)] = 19877, - [SMALL_STATE(501)] = 19934, - [SMALL_STATE(502)] = 19991, - [SMALL_STATE(503)] = 20048, - [SMALL_STATE(504)] = 20105, - [SMALL_STATE(505)] = 20162, - [SMALL_STATE(506)] = 20219, - [SMALL_STATE(507)] = 20276, - [SMALL_STATE(508)] = 20333, - [SMALL_STATE(509)] = 20390, - [SMALL_STATE(510)] = 20447, - [SMALL_STATE(511)] = 20504, - [SMALL_STATE(512)] = 20561, - [SMALL_STATE(513)] = 20618, - [SMALL_STATE(514)] = 20675, - [SMALL_STATE(515)] = 20732, - [SMALL_STATE(516)] = 20789, - [SMALL_STATE(517)] = 20846, - [SMALL_STATE(518)] = 20903, - [SMALL_STATE(519)] = 20960, - [SMALL_STATE(520)] = 21019, - [SMALL_STATE(521)] = 21076, - [SMALL_STATE(522)] = 21135, - [SMALL_STATE(523)] = 21192, - [SMALL_STATE(524)] = 21249, - [SMALL_STATE(525)] = 21306, - [SMALL_STATE(526)] = 21363, - [SMALL_STATE(527)] = 21420, - [SMALL_STATE(528)] = 21477, - [SMALL_STATE(529)] = 21534, - [SMALL_STATE(530)] = 21591, - [SMALL_STATE(531)] = 21648, - [SMALL_STATE(532)] = 21705, - [SMALL_STATE(533)] = 21762, - [SMALL_STATE(534)] = 21819, - [SMALL_STATE(535)] = 21876, - [SMALL_STATE(536)] = 21933, - [SMALL_STATE(537)] = 21990, - [SMALL_STATE(538)] = 22047, - [SMALL_STATE(539)] = 22104, - [SMALL_STATE(540)] = 22161, - [SMALL_STATE(541)] = 22218, - [SMALL_STATE(542)] = 22275, - [SMALL_STATE(543)] = 22332, - [SMALL_STATE(544)] = 22389, - [SMALL_STATE(545)] = 22445, - [SMALL_STATE(546)] = 22501, - [SMALL_STATE(547)] = 22557, - [SMALL_STATE(548)] = 22613, - [SMALL_STATE(549)] = 22669, - [SMALL_STATE(550)] = 22725, - [SMALL_STATE(551)] = 22785, - [SMALL_STATE(552)] = 22843, - [SMALL_STATE(553)] = 22903, - [SMALL_STATE(554)] = 22959, - [SMALL_STATE(555)] = 23015, - [SMALL_STATE(556)] = 23071, - [SMALL_STATE(557)] = 23127, - [SMALL_STATE(558)] = 23183, - [SMALL_STATE(559)] = 23239, - [SMALL_STATE(560)] = 23295, - [SMALL_STATE(561)] = 23351, - [SMALL_STATE(562)] = 23407, - [SMALL_STATE(563)] = 23463, - [SMALL_STATE(564)] = 23519, - [SMALL_STATE(565)] = 23575, - [SMALL_STATE(566)] = 23631, - [SMALL_STATE(567)] = 23687, - [SMALL_STATE(568)] = 23743, - [SMALL_STATE(569)] = 23799, - [SMALL_STATE(570)] = 23855, - [SMALL_STATE(571)] = 23911, - [SMALL_STATE(572)] = 23967, - [SMALL_STATE(573)] = 24023, - [SMALL_STATE(574)] = 24079, - [SMALL_STATE(575)] = 24135, - [SMALL_STATE(576)] = 24191, - [SMALL_STATE(577)] = 24247, - [SMALL_STATE(578)] = 24307, - [SMALL_STATE(579)] = 24363, - [SMALL_STATE(580)] = 24419, - [SMALL_STATE(581)] = 24475, - [SMALL_STATE(582)] = 24531, - [SMALL_STATE(583)] = 24587, - [SMALL_STATE(584)] = 24643, - [SMALL_STATE(585)] = 24699, - [SMALL_STATE(586)] = 24755, - [SMALL_STATE(587)] = 24811, - [SMALL_STATE(588)] = 24867, - [SMALL_STATE(589)] = 24923, - [SMALL_STATE(590)] = 24979, - [SMALL_STATE(591)] = 25035, - [SMALL_STATE(592)] = 25091, - [SMALL_STATE(593)] = 25147, - [SMALL_STATE(594)] = 25203, - [SMALL_STATE(595)] = 25259, - [SMALL_STATE(596)] = 25315, - [SMALL_STATE(597)] = 25371, - [SMALL_STATE(598)] = 25427, - [SMALL_STATE(599)] = 25483, - [SMALL_STATE(600)] = 25539, - [SMALL_STATE(601)] = 25597, - [SMALL_STATE(602)] = 25653, - [SMALL_STATE(603)] = 25713, - [SMALL_STATE(604)] = 25769, - [SMALL_STATE(605)] = 25825, - [SMALL_STATE(606)] = 25881, - [SMALL_STATE(607)] = 25937, - [SMALL_STATE(608)] = 25993, - [SMALL_STATE(609)] = 26048, - [SMALL_STATE(610)] = 26103, - [SMALL_STATE(611)] = 26158, - [SMALL_STATE(612)] = 26213, - [SMALL_STATE(613)] = 26268, - [SMALL_STATE(614)] = 26325, - [SMALL_STATE(615)] = 26380, - [SMALL_STATE(616)] = 26435, - [SMALL_STATE(617)] = 26490, - [SMALL_STATE(618)] = 26545, - [SMALL_STATE(619)] = 26602, - [SMALL_STATE(620)] = 26659, - [SMALL_STATE(621)] = 26714, - [SMALL_STATE(622)] = 26771, - [SMALL_STATE(623)] = 26828, - [SMALL_STATE(624)] = 26883, - [SMALL_STATE(625)] = 26938, - [SMALL_STATE(626)] = 26993, - [SMALL_STATE(627)] = 27048, - [SMALL_STATE(628)] = 27103, - [SMALL_STATE(629)] = 27158, - [SMALL_STATE(630)] = 27213, - [SMALL_STATE(631)] = 27270, - [SMALL_STATE(632)] = 27327, - [SMALL_STATE(633)] = 27382, - [SMALL_STATE(634)] = 27437, - [SMALL_STATE(635)] = 27492, - [SMALL_STATE(636)] = 27547, - [SMALL_STATE(637)] = 27602, - [SMALL_STATE(638)] = 27657, - [SMALL_STATE(639)] = 27712, - [SMALL_STATE(640)] = 27769, - [SMALL_STATE(641)] = 27824, - [SMALL_STATE(642)] = 27879, - [SMALL_STATE(643)] = 27934, - [SMALL_STATE(644)] = 27989, - [SMALL_STATE(645)] = 28044, - [SMALL_STATE(646)] = 28099, - [SMALL_STATE(647)] = 28154, - [SMALL_STATE(648)] = 28209, - [SMALL_STATE(649)] = 28264, - [SMALL_STATE(650)] = 28319, - [SMALL_STATE(651)] = 28374, - [SMALL_STATE(652)] = 28429, - [SMALL_STATE(653)] = 28484, - [SMALL_STATE(654)] = 28565, - [SMALL_STATE(655)] = 28620, - [SMALL_STATE(656)] = 28701, - [SMALL_STATE(657)] = 28782, - [SMALL_STATE(658)] = 28863, - [SMALL_STATE(659)] = 28944, - [SMALL_STATE(660)] = 29025, - [SMALL_STATE(661)] = 29106, - [SMALL_STATE(662)] = 29187, - [SMALL_STATE(663)] = 29268, - [SMALL_STATE(664)] = 29347, - [SMALL_STATE(665)] = 29428, - [SMALL_STATE(666)] = 29507, - [SMALL_STATE(667)] = 29588, - [SMALL_STATE(668)] = 29669, - [SMALL_STATE(669)] = 29750, - [SMALL_STATE(670)] = 29831, - [SMALL_STATE(671)] = 29912, - [SMALL_STATE(672)] = 29993, - [SMALL_STATE(673)] = 30074, - [SMALL_STATE(674)] = 30129, - [SMALL_STATE(675)] = 30184, - [SMALL_STATE(676)] = 30265, - [SMALL_STATE(677)] = 30346, - [SMALL_STATE(678)] = 30427, - [SMALL_STATE(679)] = 30479, - [SMALL_STATE(680)] = 30531, - [SMALL_STATE(681)] = 30605, - [SMALL_STATE(682)] = 30671, - [SMALL_STATE(683)] = 30737, - [SMALL_STATE(684)] = 30803, - [SMALL_STATE(685)] = 30869, - [SMALL_STATE(686)] = 30921, - [SMALL_STATE(687)] = 30973, - [SMALL_STATE(688)] = 31040, - [SMALL_STATE(689)] = 31107, - [SMALL_STATE(690)] = 31173, - [SMALL_STATE(691)] = 31239, - [SMALL_STATE(692)] = 31305, - [SMALL_STATE(693)] = 31371, - [SMALL_STATE(694)] = 31437, - [SMALL_STATE(695)] = 31503, - [SMALL_STATE(696)] = 31569, - [SMALL_STATE(697)] = 31635, - [SMALL_STATE(698)] = 31699, - [SMALL_STATE(699)] = 31756, - [SMALL_STATE(700)] = 31813, - [SMALL_STATE(701)] = 31874, - [SMALL_STATE(702)] = 31931, - [SMALL_STATE(703)] = 31996, - [SMALL_STATE(704)] = 32057, - [SMALL_STATE(705)] = 32122, - [SMALL_STATE(706)] = 32183, - [SMALL_STATE(707)] = 32244, - [SMALL_STATE(708)] = 32309, - [SMALL_STATE(709)] = 32366, - [SMALL_STATE(710)] = 32427, - [SMALL_STATE(711)] = 32477, - [SMALL_STATE(712)] = 32539, - [SMALL_STATE(713)] = 32601, - [SMALL_STATE(714)] = 32663, - [SMALL_STATE(715)] = 32723, - [SMALL_STATE(716)] = 32785, - [SMALL_STATE(717)] = 32847, - [SMALL_STATE(718)] = 32909, - [SMALL_STATE(719)] = 32971, - [SMALL_STATE(720)] = 33033, - [SMALL_STATE(721)] = 33083, - [SMALL_STATE(722)] = 33143, - [SMALL_STATE(723)] = 33205, - [SMALL_STATE(724)] = 33267, - [SMALL_STATE(725)] = 33329, - [SMALL_STATE(726)] = 33391, - [SMALL_STATE(727)] = 33451, - [SMALL_STATE(728)] = 33501, - [SMALL_STATE(729)] = 33551, - [SMALL_STATE(730)] = 33607, - [SMALL_STATE(731)] = 33657, - [SMALL_STATE(732)] = 33707, - [SMALL_STATE(733)] = 33769, - [SMALL_STATE(734)] = 33831, - [SMALL_STATE(735)] = 33890, - [SMALL_STATE(736)] = 33949, - [SMALL_STATE(737)] = 34008, - [SMALL_STATE(738)] = 34067, - [SMALL_STATE(739)] = 34114, - [SMALL_STATE(740)] = 34173, - [SMALL_STATE(741)] = 34220, - [SMALL_STATE(742)] = 34267, - [SMALL_STATE(743)] = 34326, - [SMALL_STATE(744)] = 34373, - [SMALL_STATE(745)] = 34420, - [SMALL_STATE(746)] = 34467, - [SMALL_STATE(747)] = 34526, - [SMALL_STATE(748)] = 34585, - [SMALL_STATE(749)] = 34632, - [SMALL_STATE(750)] = 34679, - [SMALL_STATE(751)] = 34738, - [SMALL_STATE(752)] = 34785, - [SMALL_STATE(753)] = 34844, - [SMALL_STATE(754)] = 34891, - [SMALL_STATE(755)] = 34950, - [SMALL_STATE(756)] = 35009, - [SMALL_STATE(757)] = 35068, - [SMALL_STATE(758)] = 35127, - [SMALL_STATE(759)] = 35174, - [SMALL_STATE(760)] = 35233, - [SMALL_STATE(761)] = 35280, - [SMALL_STATE(762)] = 35339, - [SMALL_STATE(763)] = 35398, - [SMALL_STATE(764)] = 35457, - [SMALL_STATE(765)] = 35516, - [SMALL_STATE(766)] = 35575, - [SMALL_STATE(767)] = 35622, - [SMALL_STATE(768)] = 35681, - [SMALL_STATE(769)] = 35740, - [SMALL_STATE(770)] = 35799, - [SMALL_STATE(771)] = 35846, - [SMALL_STATE(772)] = 35905, - [SMALL_STATE(773)] = 35952, - [SMALL_STATE(774)] = 35999, - [SMALL_STATE(775)] = 36058, - [SMALL_STATE(776)] = 36105, - [SMALL_STATE(777)] = 36152, - [SMALL_STATE(778)] = 36211, - [SMALL_STATE(779)] = 36270, - [SMALL_STATE(780)] = 36317, - [SMALL_STATE(781)] = 36364, - [SMALL_STATE(782)] = 36423, - [SMALL_STATE(783)] = 36482, - [SMALL_STATE(784)] = 36529, - [SMALL_STATE(785)] = 36588, - [SMALL_STATE(786)] = 36647, - [SMALL_STATE(787)] = 36706, - [SMALL_STATE(788)] = 36765, - [SMALL_STATE(789)] = 36824, - [SMALL_STATE(790)] = 36871, - [SMALL_STATE(791)] = 36918, - [SMALL_STATE(792)] = 36965, - [SMALL_STATE(793)] = 37012, - [SMALL_STATE(794)] = 37071, - [SMALL_STATE(795)] = 37130, - [SMALL_STATE(796)] = 37189, - [SMALL_STATE(797)] = 37248, - [SMALL_STATE(798)] = 37307, - [SMALL_STATE(799)] = 37366, - [SMALL_STATE(800)] = 37425, - [SMALL_STATE(801)] = 37484, - [SMALL_STATE(802)] = 37543, - [SMALL_STATE(803)] = 37590, - [SMALL_STATE(804)] = 37649, - [SMALL_STATE(805)] = 37708, - [SMALL_STATE(806)] = 37755, - [SMALL_STATE(807)] = 37802, - [SMALL_STATE(808)] = 37849, - [SMALL_STATE(809)] = 37896, - [SMALL_STATE(810)] = 37943, - [SMALL_STATE(811)] = 38002, - [SMALL_STATE(812)] = 38061, - [SMALL_STATE(813)] = 38120, - [SMALL_STATE(814)] = 38167, - [SMALL_STATE(815)] = 38226, - [SMALL_STATE(816)] = 38273, - [SMALL_STATE(817)] = 38320, - [SMALL_STATE(818)] = 38367, - [SMALL_STATE(819)] = 38426, - [SMALL_STATE(820)] = 38473, - [SMALL_STATE(821)] = 38520, - [SMALL_STATE(822)] = 38567, - [SMALL_STATE(823)] = 38626, - [SMALL_STATE(824)] = 38685, - [SMALL_STATE(825)] = 38744, - [SMALL_STATE(826)] = 38791, - [SMALL_STATE(827)] = 38838, - [SMALL_STATE(828)] = 38897, - [SMALL_STATE(829)] = 38956, - [SMALL_STATE(830)] = 39015, - [SMALL_STATE(831)] = 39074, - [SMALL_STATE(832)] = 39121, - [SMALL_STATE(833)] = 39180, - [SMALL_STATE(834)] = 39239, - [SMALL_STATE(835)] = 39286, - [SMALL_STATE(836)] = 39342, - [SMALL_STATE(837)] = 39398, - [SMALL_STATE(838)] = 39454, - [SMALL_STATE(839)] = 39510, - [SMALL_STATE(840)] = 39566, - [SMALL_STATE(841)] = 39622, - [SMALL_STATE(842)] = 39678, - [SMALL_STATE(843)] = 39734, - [SMALL_STATE(844)] = 39786, - [SMALL_STATE(845)] = 39834, - [SMALL_STATE(846)] = 39888, - [SMALL_STATE(847)] = 39936, - [SMALL_STATE(848)] = 39992, - [SMALL_STATE(849)] = 40040, - [SMALL_STATE(850)] = 40088, - [SMALL_STATE(851)] = 40144, - [SMALL_STATE(852)] = 40200, - [SMALL_STATE(853)] = 40256, - [SMALL_STATE(854)] = 40312, - [SMALL_STATE(855)] = 40362, - [SMALL_STATE(856)] = 40412, - [SMALL_STATE(857)] = 40468, - [SMALL_STATE(858)] = 40516, - [SMALL_STATE(859)] = 40572, - [SMALL_STATE(860)] = 40628, - [SMALL_STATE(861)] = 40684, - [SMALL_STATE(862)] = 40740, - [SMALL_STATE(863)] = 40796, - [SMALL_STATE(864)] = 40852, - [SMALL_STATE(865)] = 40908, - [SMALL_STATE(866)] = 40964, - [SMALL_STATE(867)] = 41012, - [SMALL_STATE(868)] = 41068, - [SMALL_STATE(869)] = 41116, - [SMALL_STATE(870)] = 41161, - [SMALL_STATE(871)] = 41206, - [SMALL_STATE(872)] = 41251, - [SMALL_STATE(873)] = 41296, - [SMALL_STATE(874)] = 41343, - [SMALL_STATE(875)] = 41394, - [SMALL_STATE(876)] = 41439, - [SMALL_STATE(877)] = 41484, - [SMALL_STATE(878)] = 41529, - [SMALL_STATE(879)] = 41574, - [SMALL_STATE(880)] = 41619, - [SMALL_STATE(881)] = 41664, - [SMALL_STATE(882)] = 41709, - [SMALL_STATE(883)] = 41758, - [SMALL_STATE(884)] = 41803, - [SMALL_STATE(885)] = 41852, - [SMALL_STATE(886)] = 41897, - [SMALL_STATE(887)] = 41948, - [SMALL_STATE(888)] = 41993, - [SMALL_STATE(889)] = 42039, - [SMALL_STATE(890)] = 42085, - [SMALL_STATE(891)] = 42131, - [SMALL_STATE(892)] = 42175, - [SMALL_STATE(893)] = 42221, - [SMALL_STATE(894)] = 42267, - [SMALL_STATE(895)] = 42311, - [SMALL_STATE(896)] = 42357, - [SMALL_STATE(897)] = 42403, - [SMALL_STATE(898)] = 42449, - [SMALL_STATE(899)] = 42495, - [SMALL_STATE(900)] = 42541, - [SMALL_STATE(901)] = 42587, - [SMALL_STATE(902)] = 42639, - [SMALL_STATE(903)] = 42684, - [SMALL_STATE(904)] = 42727, - [SMALL_STATE(905)] = 42770, - [SMALL_STATE(906)] = 42813, - [SMALL_STATE(907)] = 42856, - [SMALL_STATE(908)] = 42899, - [SMALL_STATE(909)] = 42944, - [SMALL_STATE(910)] = 42987, - [SMALL_STATE(911)] = 43030, - [SMALL_STATE(912)] = 43075, - [SMALL_STATE(913)] = 43118, - [SMALL_STATE(914)] = 43163, - [SMALL_STATE(915)] = 43206, - [SMALL_STATE(916)] = 43249, - [SMALL_STATE(917)] = 43292, - [SMALL_STATE(918)] = 43337, - [SMALL_STATE(919)] = 43379, - [SMALL_STATE(920)] = 43421, - [SMALL_STATE(921)] = 43463, - [SMALL_STATE(922)] = 43505, - [SMALL_STATE(923)] = 43547, - [SMALL_STATE(924)] = 43581, - [SMALL_STATE(925)] = 43615, - [SMALL_STATE(926)] = 43649, - [SMALL_STATE(927)] = 43683, - [SMALL_STATE(928)] = 43717, - [SMALL_STATE(929)] = 43751, - [SMALL_STATE(930)] = 43785, - [SMALL_STATE(931)] = 43808, - [SMALL_STATE(932)] = 43838, - [SMALL_STATE(933)] = 43868, - [SMALL_STATE(934)] = 43898, - [SMALL_STATE(935)] = 43928, - [SMALL_STATE(936)] = 43958, - [SMALL_STATE(937)] = 43988, - [SMALL_STATE(938)] = 44018, - [SMALL_STATE(939)] = 44048, - [SMALL_STATE(940)] = 44078, - [SMALL_STATE(941)] = 44108, - [SMALL_STATE(942)] = 44138, - [SMALL_STATE(943)] = 44168, - [SMALL_STATE(944)] = 44198, - [SMALL_STATE(945)] = 44228, - [SMALL_STATE(946)] = 44258, - [SMALL_STATE(947)] = 44288, - [SMALL_STATE(948)] = 44318, - [SMALL_STATE(949)] = 44348, - [SMALL_STATE(950)] = 44378, - [SMALL_STATE(951)] = 44408, - [SMALL_STATE(952)] = 44433, - [SMALL_STATE(953)] = 44460, - [SMALL_STATE(954)] = 44485, - [SMALL_STATE(955)] = 44510, - [SMALL_STATE(956)] = 44535, - [SMALL_STATE(957)] = 44560, - [SMALL_STATE(958)] = 44585, - [SMALL_STATE(959)] = 44610, - [SMALL_STATE(960)] = 44637, - [SMALL_STATE(961)] = 44664, - [SMALL_STATE(962)] = 44689, - [SMALL_STATE(963)] = 44714, - [SMALL_STATE(964)] = 44739, - [SMALL_STATE(965)] = 44764, - [SMALL_STATE(966)] = 44789, - [SMALL_STATE(967)] = 44814, - [SMALL_STATE(968)] = 44837, - [SMALL_STATE(969)] = 44864, - [SMALL_STATE(970)] = 44889, - [SMALL_STATE(971)] = 44913, - [SMALL_STATE(972)] = 44937, - [SMALL_STATE(973)] = 44961, - [SMALL_STATE(974)] = 44985, - [SMALL_STATE(975)] = 45009, - [SMALL_STATE(976)] = 45027, - [SMALL_STATE(977)] = 45051, - [SMALL_STATE(978)] = 45071, - [SMALL_STATE(979)] = 45091, - [SMALL_STATE(980)] = 45115, - [SMALL_STATE(981)] = 45139, - [SMALL_STATE(982)] = 45163, - [SMALL_STATE(983)] = 45187, - [SMALL_STATE(984)] = 45211, - [SMALL_STATE(985)] = 45235, - [SMALL_STATE(986)] = 45253, - [SMALL_STATE(987)] = 45277, - [SMALL_STATE(988)] = 45301, - [SMALL_STATE(989)] = 45319, - [SMALL_STATE(990)] = 45337, - [SMALL_STATE(991)] = 45355, - [SMALL_STATE(992)] = 45373, - [SMALL_STATE(993)] = 45391, - [SMALL_STATE(994)] = 45409, - [SMALL_STATE(995)] = 45427, - [SMALL_STATE(996)] = 45445, - [SMALL_STATE(997)] = 45463, - [SMALL_STATE(998)] = 45481, - [SMALL_STATE(999)] = 45499, - [SMALL_STATE(1000)] = 45517, - [SMALL_STATE(1001)] = 45535, - [SMALL_STATE(1002)] = 45553, - [SMALL_STATE(1003)] = 45571, - [SMALL_STATE(1004)] = 45589, - [SMALL_STATE(1005)] = 45607, - [SMALL_STATE(1006)] = 45625, - [SMALL_STATE(1007)] = 45643, - [SMALL_STATE(1008)] = 45661, - [SMALL_STATE(1009)] = 45679, - [SMALL_STATE(1010)] = 45697, - [SMALL_STATE(1011)] = 45715, - [SMALL_STATE(1012)] = 45733, - [SMALL_STATE(1013)] = 45751, - [SMALL_STATE(1014)] = 45769, - [SMALL_STATE(1015)] = 45787, - [SMALL_STATE(1016)] = 45805, - [SMALL_STATE(1017)] = 45823, - [SMALL_STATE(1018)] = 45841, - [SMALL_STATE(1019)] = 45859, - [SMALL_STATE(1020)] = 45877, - [SMALL_STATE(1021)] = 45895, - [SMALL_STATE(1022)] = 45913, - [SMALL_STATE(1023)] = 45931, - [SMALL_STATE(1024)] = 45949, - [SMALL_STATE(1025)] = 45967, - [SMALL_STATE(1026)] = 45985, - [SMALL_STATE(1027)] = 46003, - [SMALL_STATE(1028)] = 46021, - [SMALL_STATE(1029)] = 46039, - [SMALL_STATE(1030)] = 46057, - [SMALL_STATE(1031)] = 46075, - [SMALL_STATE(1032)] = 46093, - [SMALL_STATE(1033)] = 46111, - [SMALL_STATE(1034)] = 46129, - [SMALL_STATE(1035)] = 46147, - [SMALL_STATE(1036)] = 46165, - [SMALL_STATE(1037)] = 46183, - [SMALL_STATE(1038)] = 46201, - [SMALL_STATE(1039)] = 46219, - [SMALL_STATE(1040)] = 46237, - [SMALL_STATE(1041)] = 46255, - [SMALL_STATE(1042)] = 46273, - [SMALL_STATE(1043)] = 46291, - [SMALL_STATE(1044)] = 46309, - [SMALL_STATE(1045)] = 46327, - [SMALL_STATE(1046)] = 46345, - [SMALL_STATE(1047)] = 46363, - [SMALL_STATE(1048)] = 46381, - [SMALL_STATE(1049)] = 46399, - [SMALL_STATE(1050)] = 46417, - [SMALL_STATE(1051)] = 46435, - [SMALL_STATE(1052)] = 46453, - [SMALL_STATE(1053)] = 46471, - [SMALL_STATE(1054)] = 46489, - [SMALL_STATE(1055)] = 46507, - [SMALL_STATE(1056)] = 46521, - [SMALL_STATE(1057)] = 46539, - [SMALL_STATE(1058)] = 46553, - [SMALL_STATE(1059)] = 46571, - [SMALL_STATE(1060)] = 46589, - [SMALL_STATE(1061)] = 46607, - [SMALL_STATE(1062)] = 46625, - [SMALL_STATE(1063)] = 46643, - [SMALL_STATE(1064)] = 46661, - [SMALL_STATE(1065)] = 46679, - [SMALL_STATE(1066)] = 46697, - [SMALL_STATE(1067)] = 46715, - [SMALL_STATE(1068)] = 46733, - [SMALL_STATE(1069)] = 46751, - [SMALL_STATE(1070)] = 46765, - [SMALL_STATE(1071)] = 46779, - [SMALL_STATE(1072)] = 46797, - [SMALL_STATE(1073)] = 46815, - [SMALL_STATE(1074)] = 46833, - [SMALL_STATE(1075)] = 46851, - [SMALL_STATE(1076)] = 46869, - [SMALL_STATE(1077)] = 46887, - [SMALL_STATE(1078)] = 46905, - [SMALL_STATE(1079)] = 46923, - [SMALL_STATE(1080)] = 46941, - [SMALL_STATE(1081)] = 46959, - [SMALL_STATE(1082)] = 46977, - [SMALL_STATE(1083)] = 46995, - [SMALL_STATE(1084)] = 47013, - [SMALL_STATE(1085)] = 47031, - [SMALL_STATE(1086)] = 47049, - [SMALL_STATE(1087)] = 47067, - [SMALL_STATE(1088)] = 47085, - [SMALL_STATE(1089)] = 47103, - [SMALL_STATE(1090)] = 47121, - [SMALL_STATE(1091)] = 47139, - [SMALL_STATE(1092)] = 47157, - [SMALL_STATE(1093)] = 47175, - [SMALL_STATE(1094)] = 47193, - [SMALL_STATE(1095)] = 47211, - [SMALL_STATE(1096)] = 47229, - [SMALL_STATE(1097)] = 47247, - [SMALL_STATE(1098)] = 47265, - [SMALL_STATE(1099)] = 47283, - [SMALL_STATE(1100)] = 47301, - [SMALL_STATE(1101)] = 47319, - [SMALL_STATE(1102)] = 47337, - [SMALL_STATE(1103)] = 47355, - [SMALL_STATE(1104)] = 47373, - [SMALL_STATE(1105)] = 47391, - [SMALL_STATE(1106)] = 47409, - [SMALL_STATE(1107)] = 47427, - [SMALL_STATE(1108)] = 47445, - [SMALL_STATE(1109)] = 47463, - [SMALL_STATE(1110)] = 47481, - [SMALL_STATE(1111)] = 47492, - [SMALL_STATE(1112)] = 47503, - [SMALL_STATE(1113)] = 47514, - [SMALL_STATE(1114)] = 47525, - [SMALL_STATE(1115)] = 47535, - [SMALL_STATE(1116)] = 47545, - [SMALL_STATE(1117)] = 47555, - [SMALL_STATE(1118)] = 47565, - [SMALL_STATE(1119)] = 47575, - [SMALL_STATE(1120)] = 47584, - [SMALL_STATE(1121)] = 47593, - [SMALL_STATE(1122)] = 47602, - [SMALL_STATE(1123)] = 47611, - [SMALL_STATE(1124)] = 47621, - [SMALL_STATE(1125)] = 47631, - [SMALL_STATE(1126)] = 47641, - [SMALL_STATE(1127)] = 47651, - [SMALL_STATE(1128)] = 47661, - [SMALL_STATE(1129)] = 47671, - [SMALL_STATE(1130)] = 47681, - [SMALL_STATE(1131)] = 47691, - [SMALL_STATE(1132)] = 47701, - [SMALL_STATE(1133)] = 47711, - [SMALL_STATE(1134)] = 47718, - [SMALL_STATE(1135)] = 47725, - [SMALL_STATE(1136)] = 47732, - [SMALL_STATE(1137)] = 47739, - [SMALL_STATE(1138)] = 47746, - [SMALL_STATE(1139)] = 47753, - [SMALL_STATE(1140)] = 47760, - [SMALL_STATE(1141)] = 47767, - [SMALL_STATE(1142)] = 47772, - [SMALL_STATE(1143)] = 47776, - [SMALL_STATE(1144)] = 47780, - [SMALL_STATE(1145)] = 47784, - [SMALL_STATE(1146)] = 47788, - [SMALL_STATE(1147)] = 47792, - [SMALL_STATE(1148)] = 47796, - [SMALL_STATE(1149)] = 47800, - [SMALL_STATE(1150)] = 47804, - [SMALL_STATE(1151)] = 47808, - [SMALL_STATE(1152)] = 47812, - [SMALL_STATE(1153)] = 47816, - [SMALL_STATE(1154)] = 47820, - [SMALL_STATE(1155)] = 47824, - [SMALL_STATE(1156)] = 47828, - [SMALL_STATE(1157)] = 47832, - [SMALL_STATE(1158)] = 47836, - [SMALL_STATE(1159)] = 47840, - [SMALL_STATE(1160)] = 47844, - [SMALL_STATE(1161)] = 47848, - [SMALL_STATE(1162)] = 47852, - [SMALL_STATE(1163)] = 47856, - [SMALL_STATE(1164)] = 47860, - [SMALL_STATE(1165)] = 47864, - [SMALL_STATE(1166)] = 47868, - [SMALL_STATE(1167)] = 47872, + [SMALL_STATE(166)] = 0, + [SMALL_STATE(167)] = 83, + [SMALL_STATE(168)] = 162, + [SMALL_STATE(169)] = 243, + [SMALL_STATE(170)] = 324, + [SMALL_STATE(171)] = 405, + [SMALL_STATE(172)] = 484, + [SMALL_STATE(173)] = 563, + [SMALL_STATE(174)] = 642, + [SMALL_STATE(175)] = 725, + [SMALL_STATE(176)] = 804, + [SMALL_STATE(177)] = 883, + [SMALL_STATE(178)] = 966, + [SMALL_STATE(179)] = 1045, + [SMALL_STATE(180)] = 1124, + [SMALL_STATE(181)] = 1204, + [SMALL_STATE(182)] = 1284, + [SMALL_STATE(183)] = 1366, + [SMALL_STATE(184)] = 1446, + [SMALL_STATE(185)] = 1526, + [SMALL_STATE(186)] = 1606, + [SMALL_STATE(187)] = 1684, + [SMALL_STATE(188)] = 1766, + [SMALL_STATE(189)] = 1844, + [SMALL_STATE(190)] = 1926, + [SMALL_STATE(191)] = 2006, + [SMALL_STATE(192)] = 2087, + [SMALL_STATE(193)] = 2166, + [SMALL_STATE(194)] = 2232, + [SMALL_STATE(195)] = 2300, + [SMALL_STATE(196)] = 2368, + [SMALL_STATE(197)] = 2434, + [SMALL_STATE(198)] = 2500, + [SMALL_STATE(199)] = 2568, + [SMALL_STATE(200)] = 2636, + [SMALL_STATE(201)] = 2704, + [SMALL_STATE(202)] = 2770, + [SMALL_STATE(203)] = 2838, + [SMALL_STATE(204)] = 2904, + [SMALL_STATE(205)] = 2972, + [SMALL_STATE(206)] = 3040, + [SMALL_STATE(207)] = 3106, + [SMALL_STATE(208)] = 3172, + [SMALL_STATE(209)] = 3238, + [SMALL_STATE(210)] = 3319, + [SMALL_STATE(211)] = 3382, + [SMALL_STATE(212)] = 3443, + [SMALL_STATE(213)] = 3506, + [SMALL_STATE(214)] = 3569, + [SMALL_STATE(215)] = 3636, + [SMALL_STATE(216)] = 3717, + [SMALL_STATE(217)] = 3778, + [SMALL_STATE(218)] = 3839, + [SMALL_STATE(219)] = 3920, + [SMALL_STATE(220)] = 3981, + [SMALL_STATE(221)] = 4062, + [SMALL_STATE(222)] = 4143, + [SMALL_STATE(223)] = 4224, + [SMALL_STATE(224)] = 4287, + [SMALL_STATE(225)] = 4368, + [SMALL_STATE(226)] = 4429, + [SMALL_STATE(227)] = 4492, + [SMALL_STATE(228)] = 4553, + [SMALL_STATE(229)] = 4634, + [SMALL_STATE(230)] = 4715, + [SMALL_STATE(231)] = 4776, + [SMALL_STATE(232)] = 4857, + [SMALL_STATE(233)] = 4920, + [SMALL_STATE(234)] = 5001, + [SMALL_STATE(235)] = 5062, + [SMALL_STATE(236)] = 5143, + [SMALL_STATE(237)] = 5224, + [SMALL_STATE(238)] = 5305, + [SMALL_STATE(239)] = 5372, + [SMALL_STATE(240)] = 5453, + [SMALL_STATE(241)] = 5514, + [SMALL_STATE(242)] = 5575, + [SMALL_STATE(243)] = 5636, + [SMALL_STATE(244)] = 5697, + [SMALL_STATE(245)] = 5758, + [SMALL_STATE(246)] = 5819, + [SMALL_STATE(247)] = 5884, + [SMALL_STATE(248)] = 5945, + [SMALL_STATE(249)] = 6006, + [SMALL_STATE(250)] = 6067, + [SMALL_STATE(251)] = 6148, + [SMALL_STATE(252)] = 6229, + [SMALL_STATE(253)] = 6294, + [SMALL_STATE(254)] = 6357, + [SMALL_STATE(255)] = 6418, + [SMALL_STATE(256)] = 6499, + [SMALL_STATE(257)] = 6580, + [SMALL_STATE(258)] = 6661, + [SMALL_STATE(259)] = 6722, + [SMALL_STATE(260)] = 6783, + [SMALL_STATE(261)] = 6864, + [SMALL_STATE(262)] = 6945, + [SMALL_STATE(263)] = 7003, + [SMALL_STATE(264)] = 7061, + [SMALL_STATE(265)] = 7119, + [SMALL_STATE(266)] = 7179, + [SMALL_STATE(267)] = 7237, + [SMALL_STATE(268)] = 7297, + [SMALL_STATE(269)] = 7357, + [SMALL_STATE(270)] = 7429, + [SMALL_STATE(271)] = 7491, + [SMALL_STATE(272)] = 7551, + [SMALL_STATE(273)] = 7609, + [SMALL_STATE(274)] = 7681, + [SMALL_STATE(275)] = 7739, + [SMALL_STATE(276)] = 7797, + [SMALL_STATE(277)] = 7855, + [SMALL_STATE(278)] = 7913, + [SMALL_STATE(279)] = 7971, + [SMALL_STATE(280)] = 8031, + [SMALL_STATE(281)] = 8089, + [SMALL_STATE(282)] = 8147, + [SMALL_STATE(283)] = 8207, + [SMALL_STATE(284)] = 8265, + [SMALL_STATE(285)] = 8323, + [SMALL_STATE(286)] = 8383, + [SMALL_STATE(287)] = 8445, + [SMALL_STATE(288)] = 8503, + [SMALL_STATE(289)] = 8575, + [SMALL_STATE(290)] = 8635, + [SMALL_STATE(291)] = 8693, + [SMALL_STATE(292)] = 8753, + [SMALL_STATE(293)] = 8811, + [SMALL_STATE(294)] = 8869, + [SMALL_STATE(295)] = 8927, + [SMALL_STATE(296)] = 8985, + [SMALL_STATE(297)] = 9043, + [SMALL_STATE(298)] = 9101, + [SMALL_STATE(299)] = 9159, + [SMALL_STATE(300)] = 9217, + [SMALL_STATE(301)] = 9289, + [SMALL_STATE(302)] = 9347, + [SMALL_STATE(303)] = 9419, + [SMALL_STATE(304)] = 9477, + [SMALL_STATE(305)] = 9539, + [SMALL_STATE(306)] = 9611, + [SMALL_STATE(307)] = 9669, + [SMALL_STATE(308)] = 9727, + [SMALL_STATE(309)] = 9785, + [SMALL_STATE(310)] = 9843, + [SMALL_STATE(311)] = 9901, + [SMALL_STATE(312)] = 9959, + [SMALL_STATE(313)] = 10019, + [SMALL_STATE(314)] = 10091, + [SMALL_STATE(315)] = 10151, + [SMALL_STATE(316)] = 10209, + [SMALL_STATE(317)] = 10267, + [SMALL_STATE(318)] = 10327, + [SMALL_STATE(319)] = 10385, + [SMALL_STATE(320)] = 10447, + [SMALL_STATE(321)] = 10507, + [SMALL_STATE(322)] = 10565, + [SMALL_STATE(323)] = 10623, + [SMALL_STATE(324)] = 10681, + [SMALL_STATE(325)] = 10739, + [SMALL_STATE(326)] = 10797, + [SMALL_STATE(327)] = 10855, + [SMALL_STATE(328)] = 10913, + [SMALL_STATE(329)] = 10985, + [SMALL_STATE(330)] = 11043, + [SMALL_STATE(331)] = 11101, + [SMALL_STATE(332)] = 11159, + [SMALL_STATE(333)] = 11219, + [SMALL_STATE(334)] = 11279, + [SMALL_STATE(335)] = 11337, + [SMALL_STATE(336)] = 11395, + [SMALL_STATE(337)] = 11467, + [SMALL_STATE(338)] = 11539, + [SMALL_STATE(339)] = 11597, + [SMALL_STATE(340)] = 11655, + [SMALL_STATE(341)] = 11713, + [SMALL_STATE(342)] = 11771, + [SMALL_STATE(343)] = 11829, + [SMALL_STATE(344)] = 11887, + [SMALL_STATE(345)] = 11945, + [SMALL_STATE(346)] = 12005, + [SMALL_STATE(347)] = 12063, + [SMALL_STATE(348)] = 12123, + [SMALL_STATE(349)] = 12181, + [SMALL_STATE(350)] = 12253, + [SMALL_STATE(351)] = 12311, + [SMALL_STATE(352)] = 12369, + [SMALL_STATE(353)] = 12427, + [SMALL_STATE(354)] = 12485, + [SMALL_STATE(355)] = 12543, + [SMALL_STATE(356)] = 12601, + [SMALL_STATE(357)] = 12659, + [SMALL_STATE(358)] = 12717, + [SMALL_STATE(359)] = 12775, + [SMALL_STATE(360)] = 12833, + [SMALL_STATE(361)] = 12891, + [SMALL_STATE(362)] = 12963, + [SMALL_STATE(363)] = 13021, + [SMALL_STATE(364)] = 13079, + [SMALL_STATE(365)] = 13137, + [SMALL_STATE(366)] = 13195, + [SMALL_STATE(367)] = 13253, + [SMALL_STATE(368)] = 13311, + [SMALL_STATE(369)] = 13369, + [SMALL_STATE(370)] = 13427, + [SMALL_STATE(371)] = 13485, + [SMALL_STATE(372)] = 13543, + [SMALL_STATE(373)] = 13601, + [SMALL_STATE(374)] = 13659, + [SMALL_STATE(375)] = 13717, + [SMALL_STATE(376)] = 13775, + [SMALL_STATE(377)] = 13833, + [SMALL_STATE(378)] = 13891, + [SMALL_STATE(379)] = 13949, + [SMALL_STATE(380)] = 14007, + [SMALL_STATE(381)] = 14065, + [SMALL_STATE(382)] = 14137, + [SMALL_STATE(383)] = 14199, + [SMALL_STATE(384)] = 14271, + [SMALL_STATE(385)] = 14329, + [SMALL_STATE(386)] = 14387, + [SMALL_STATE(387)] = 14445, + [SMALL_STATE(388)] = 14503, + [SMALL_STATE(389)] = 14561, + [SMALL_STATE(390)] = 14619, + [SMALL_STATE(391)] = 14677, + [SMALL_STATE(392)] = 14735, + [SMALL_STATE(393)] = 14793, + [SMALL_STATE(394)] = 14851, + [SMALL_STATE(395)] = 14909, + [SMALL_STATE(396)] = 14967, + [SMALL_STATE(397)] = 15025, + [SMALL_STATE(398)] = 15083, + [SMALL_STATE(399)] = 15141, + [SMALL_STATE(400)] = 15199, + [SMALL_STATE(401)] = 15257, + [SMALL_STATE(402)] = 15315, + [SMALL_STATE(403)] = 15373, + [SMALL_STATE(404)] = 15431, + [SMALL_STATE(405)] = 15489, + [SMALL_STATE(406)] = 15547, + [SMALL_STATE(407)] = 15605, + [SMALL_STATE(408)] = 15663, + [SMALL_STATE(409)] = 15723, + [SMALL_STATE(410)] = 15781, + [SMALL_STATE(411)] = 15841, + [SMALL_STATE(412)] = 15899, + [SMALL_STATE(413)] = 15957, + [SMALL_STATE(414)] = 16015, + [SMALL_STATE(415)] = 16073, + [SMALL_STATE(416)] = 16131, + [SMALL_STATE(417)] = 16189, + [SMALL_STATE(418)] = 16247, + [SMALL_STATE(419)] = 16305, + [SMALL_STATE(420)] = 16363, + [SMALL_STATE(421)] = 16421, + [SMALL_STATE(422)] = 16479, + [SMALL_STATE(423)] = 16537, + [SMALL_STATE(424)] = 16595, + [SMALL_STATE(425)] = 16653, + [SMALL_STATE(426)] = 16711, + [SMALL_STATE(427)] = 16769, + [SMALL_STATE(428)] = 16827, + [SMALL_STATE(429)] = 16885, + [SMALL_STATE(430)] = 16943, + [SMALL_STATE(431)] = 17001, + [SMALL_STATE(432)] = 17059, + [SMALL_STATE(433)] = 17117, + [SMALL_STATE(434)] = 17177, + [SMALL_STATE(435)] = 17235, + [SMALL_STATE(436)] = 17295, + [SMALL_STATE(437)] = 17353, + [SMALL_STATE(438)] = 17411, + [SMALL_STATE(439)] = 17469, + [SMALL_STATE(440)] = 17527, + [SMALL_STATE(441)] = 17585, + [SMALL_STATE(442)] = 17643, + [SMALL_STATE(443)] = 17701, + [SMALL_STATE(444)] = 17759, + [SMALL_STATE(445)] = 17817, + [SMALL_STATE(446)] = 17875, + [SMALL_STATE(447)] = 17933, + [SMALL_STATE(448)] = 17991, + [SMALL_STATE(449)] = 18049, + [SMALL_STATE(450)] = 18107, + [SMALL_STATE(451)] = 18165, + [SMALL_STATE(452)] = 18223, + [SMALL_STATE(453)] = 18281, + [SMALL_STATE(454)] = 18339, + [SMALL_STATE(455)] = 18397, + [SMALL_STATE(456)] = 18455, + [SMALL_STATE(457)] = 18513, + [SMALL_STATE(458)] = 18571, + [SMALL_STATE(459)] = 18629, + [SMALL_STATE(460)] = 18687, + [SMALL_STATE(461)] = 18745, + [SMALL_STATE(462)] = 18803, + [SMALL_STATE(463)] = 18861, + [SMALL_STATE(464)] = 18919, + [SMALL_STATE(465)] = 18977, + [SMALL_STATE(466)] = 19035, + [SMALL_STATE(467)] = 19093, + [SMALL_STATE(468)] = 19151, + [SMALL_STATE(469)] = 19209, + [SMALL_STATE(470)] = 19267, + [SMALL_STATE(471)] = 19325, + [SMALL_STATE(472)] = 19383, + [SMALL_STATE(473)] = 19441, + [SMALL_STATE(474)] = 19499, + [SMALL_STATE(475)] = 19571, + [SMALL_STATE(476)] = 19629, + [SMALL_STATE(477)] = 19687, + [SMALL_STATE(478)] = 19745, + [SMALL_STATE(479)] = 19803, + [SMALL_STATE(480)] = 19861, + [SMALL_STATE(481)] = 19919, + [SMALL_STATE(482)] = 19977, + [SMALL_STATE(483)] = 20035, + [SMALL_STATE(484)] = 20093, + [SMALL_STATE(485)] = 20151, + [SMALL_STATE(486)] = 20209, + [SMALL_STATE(487)] = 20267, + [SMALL_STATE(488)] = 20325, + [SMALL_STATE(489)] = 20383, + [SMALL_STATE(490)] = 20441, + [SMALL_STATE(491)] = 20499, + [SMALL_STATE(492)] = 20557, + [SMALL_STATE(493)] = 20615, + [SMALL_STATE(494)] = 20673, + [SMALL_STATE(495)] = 20731, + [SMALL_STATE(496)] = 20789, + [SMALL_STATE(497)] = 20847, + [SMALL_STATE(498)] = 20905, + [SMALL_STATE(499)] = 20963, + [SMALL_STATE(500)] = 21025, + [SMALL_STATE(501)] = 21083, + [SMALL_STATE(502)] = 21155, + [SMALL_STATE(503)] = 21215, + [SMALL_STATE(504)] = 21273, + [SMALL_STATE(505)] = 21333, + [SMALL_STATE(506)] = 21391, + [SMALL_STATE(507)] = 21449, + [SMALL_STATE(508)] = 21507, + [SMALL_STATE(509)] = 21565, + [SMALL_STATE(510)] = 21623, + [SMALL_STATE(511)] = 21681, + [SMALL_STATE(512)] = 21739, + [SMALL_STATE(513)] = 21797, + [SMALL_STATE(514)] = 21855, + [SMALL_STATE(515)] = 21913, + [SMALL_STATE(516)] = 21971, + [SMALL_STATE(517)] = 22029, + [SMALL_STATE(518)] = 22087, + [SMALL_STATE(519)] = 22145, + [SMALL_STATE(520)] = 22203, + [SMALL_STATE(521)] = 22261, + [SMALL_STATE(522)] = 22319, + [SMALL_STATE(523)] = 22377, + [SMALL_STATE(524)] = 22435, + [SMALL_STATE(525)] = 22493, + [SMALL_STATE(526)] = 22551, + [SMALL_STATE(527)] = 22609, + [SMALL_STATE(528)] = 22667, + [SMALL_STATE(529)] = 22725, + [SMALL_STATE(530)] = 22783, + [SMALL_STATE(531)] = 22841, + [SMALL_STATE(532)] = 22899, + [SMALL_STATE(533)] = 22957, + [SMALL_STATE(534)] = 23015, + [SMALL_STATE(535)] = 23073, + [SMALL_STATE(536)] = 23131, + [SMALL_STATE(537)] = 23188, + [SMALL_STATE(538)] = 23245, + [SMALL_STATE(539)] = 23306, + [SMALL_STATE(540)] = 23365, + [SMALL_STATE(541)] = 23426, + [SMALL_STATE(542)] = 23487, + [SMALL_STATE(543)] = 23544, + [SMALL_STATE(544)] = 23601, + [SMALL_STATE(545)] = 23658, + [SMALL_STATE(546)] = 23715, + [SMALL_STATE(547)] = 23772, + [SMALL_STATE(548)] = 23829, + [SMALL_STATE(549)] = 23886, + [SMALL_STATE(550)] = 23943, + [SMALL_STATE(551)] = 24000, + [SMALL_STATE(552)] = 24057, + [SMALL_STATE(553)] = 24114, + [SMALL_STATE(554)] = 24171, + [SMALL_STATE(555)] = 24228, + [SMALL_STATE(556)] = 24285, + [SMALL_STATE(557)] = 24342, + [SMALL_STATE(558)] = 24399, + [SMALL_STATE(559)] = 24456, + [SMALL_STATE(560)] = 24513, + [SMALL_STATE(561)] = 24570, + [SMALL_STATE(562)] = 24627, + [SMALL_STATE(563)] = 24684, + [SMALL_STATE(564)] = 24741, + [SMALL_STATE(565)] = 24798, + [SMALL_STATE(566)] = 24855, + [SMALL_STATE(567)] = 24912, + [SMALL_STATE(568)] = 24969, + [SMALL_STATE(569)] = 25026, + [SMALL_STATE(570)] = 25083, + [SMALL_STATE(571)] = 25140, + [SMALL_STATE(572)] = 25197, + [SMALL_STATE(573)] = 25254, + [SMALL_STATE(574)] = 25311, + [SMALL_STATE(575)] = 25368, + [SMALL_STATE(576)] = 25425, + [SMALL_STATE(577)] = 25482, + [SMALL_STATE(578)] = 25539, + [SMALL_STATE(579)] = 25596, + [SMALL_STATE(580)] = 25653, + [SMALL_STATE(581)] = 25710, + [SMALL_STATE(582)] = 25767, + [SMALL_STATE(583)] = 25824, + [SMALL_STATE(584)] = 25881, + [SMALL_STATE(585)] = 25938, + [SMALL_STATE(586)] = 25995, + [SMALL_STATE(587)] = 26052, + [SMALL_STATE(588)] = 26109, + [SMALL_STATE(589)] = 26166, + [SMALL_STATE(590)] = 26223, + [SMALL_STATE(591)] = 26280, + [SMALL_STATE(592)] = 26337, + [SMALL_STATE(593)] = 26396, + [SMALL_STATE(594)] = 26453, + [SMALL_STATE(595)] = 26514, + [SMALL_STATE(596)] = 26571, + [SMALL_STATE(597)] = 26628, + [SMALL_STATE(598)] = 26685, + [SMALL_STATE(599)] = 26742, + [SMALL_STATE(600)] = 26799, + [SMALL_STATE(601)] = 26855, + [SMALL_STATE(602)] = 26911, + [SMALL_STATE(603)] = 26969, + [SMALL_STATE(604)] = 27025, + [SMALL_STATE(605)] = 27081, + [SMALL_STATE(606)] = 27137, + [SMALL_STATE(607)] = 27193, + [SMALL_STATE(608)] = 27251, + [SMALL_STATE(609)] = 27307, + [SMALL_STATE(610)] = 27363, + [SMALL_STATE(611)] = 27419, + [SMALL_STATE(612)] = 27475, + [SMALL_STATE(613)] = 27531, + [SMALL_STATE(614)] = 27589, + [SMALL_STATE(615)] = 27647, + [SMALL_STATE(616)] = 27703, + [SMALL_STATE(617)] = 27759, + [SMALL_STATE(618)] = 27815, + [SMALL_STATE(619)] = 27873, + [SMALL_STATE(620)] = 27929, + [SMALL_STATE(621)] = 27985, + [SMALL_STATE(622)] = 28041, + [SMALL_STATE(623)] = 28097, + [SMALL_STATE(624)] = 28153, + [SMALL_STATE(625)] = 28209, + [SMALL_STATE(626)] = 28265, + [SMALL_STATE(627)] = 28321, + [SMALL_STATE(628)] = 28379, + [SMALL_STATE(629)] = 28435, + [SMALL_STATE(630)] = 28491, + [SMALL_STATE(631)] = 28547, + [SMALL_STATE(632)] = 28603, + [SMALL_STATE(633)] = 28659, + [SMALL_STATE(634)] = 28717, + [SMALL_STATE(635)] = 28773, + [SMALL_STATE(636)] = 28829, + [SMALL_STATE(637)] = 28885, + [SMALL_STATE(638)] = 28941, + [SMALL_STATE(639)] = 28997, + [SMALL_STATE(640)] = 29053, + [SMALL_STATE(641)] = 29109, + [SMALL_STATE(642)] = 29165, + [SMALL_STATE(643)] = 29221, + [SMALL_STATE(644)] = 29277, + [SMALL_STATE(645)] = 29335, + [SMALL_STATE(646)] = 29416, + [SMALL_STATE(647)] = 29497, + [SMALL_STATE(648)] = 29578, + [SMALL_STATE(649)] = 29659, + [SMALL_STATE(650)] = 29740, + [SMALL_STATE(651)] = 29821, + [SMALL_STATE(652)] = 29902, + [SMALL_STATE(653)] = 29983, + [SMALL_STATE(654)] = 30062, + [SMALL_STATE(655)] = 30143, + [SMALL_STATE(656)] = 30224, + [SMALL_STATE(657)] = 30305, + [SMALL_STATE(658)] = 30386, + [SMALL_STATE(659)] = 30467, + [SMALL_STATE(660)] = 30548, + [SMALL_STATE(661)] = 30629, + [SMALL_STATE(662)] = 30710, + [SMALL_STATE(663)] = 30791, + [SMALL_STATE(664)] = 30872, + [SMALL_STATE(665)] = 30953, + [SMALL_STATE(666)] = 31034, + [SMALL_STATE(667)] = 31113, + [SMALL_STATE(668)] = 31167, + [SMALL_STATE(669)] = 31233, + [SMALL_STATE(670)] = 31287, + [SMALL_STATE(671)] = 31361, + [SMALL_STATE(672)] = 31427, + [SMALL_STATE(673)] = 31493, + [SMALL_STATE(674)] = 31559, + [SMALL_STATE(675)] = 31613, + [SMALL_STATE(676)] = 31664, + [SMALL_STATE(677)] = 31715, + [SMALL_STATE(678)] = 31782, + [SMALL_STATE(679)] = 31833, + [SMALL_STATE(680)] = 31884, + [SMALL_STATE(681)] = 31951, + [SMALL_STATE(682)] = 32017, + [SMALL_STATE(683)] = 32083, + [SMALL_STATE(684)] = 32149, + [SMALL_STATE(685)] = 32215, + [SMALL_STATE(686)] = 32279, + [SMALL_STATE(687)] = 32345, + [SMALL_STATE(688)] = 32411, + [SMALL_STATE(689)] = 32477, + [SMALL_STATE(690)] = 32543, + [SMALL_STATE(691)] = 32600, + [SMALL_STATE(692)] = 32661, + [SMALL_STATE(693)] = 32722, + [SMALL_STATE(694)] = 32779, + [SMALL_STATE(695)] = 32840, + [SMALL_STATE(696)] = 32901, + [SMALL_STATE(697)] = 32966, + [SMALL_STATE(698)] = 33031, + [SMALL_STATE(699)] = 33096, + [SMALL_STATE(700)] = 33157, + [SMALL_STATE(701)] = 33214, + [SMALL_STATE(702)] = 33271, + [SMALL_STATE(703)] = 33333, + [SMALL_STATE(704)] = 33395, + [SMALL_STATE(705)] = 33445, + [SMALL_STATE(706)] = 33495, + [SMALL_STATE(707)] = 33545, + [SMALL_STATE(708)] = 33595, + [SMALL_STATE(709)] = 33657, + [SMALL_STATE(710)] = 33719, + [SMALL_STATE(711)] = 33779, + [SMALL_STATE(712)] = 33841, + [SMALL_STATE(713)] = 33903, + [SMALL_STATE(714)] = 33965, + [SMALL_STATE(715)] = 34027, + [SMALL_STATE(716)] = 34089, + [SMALL_STATE(717)] = 34151, + [SMALL_STATE(718)] = 34207, + [SMALL_STATE(719)] = 34269, + [SMALL_STATE(720)] = 34331, + [SMALL_STATE(721)] = 34391, + [SMALL_STATE(722)] = 34451, + [SMALL_STATE(723)] = 34513, + [SMALL_STATE(724)] = 34575, + [SMALL_STATE(725)] = 34625, + [SMALL_STATE(726)] = 34675, + [SMALL_STATE(727)] = 34734, + [SMALL_STATE(728)] = 34793, + [SMALL_STATE(729)] = 34840, + [SMALL_STATE(730)] = 34887, + [SMALL_STATE(731)] = 34934, + [SMALL_STATE(732)] = 34981, + [SMALL_STATE(733)] = 35028, + [SMALL_STATE(734)] = 35075, + [SMALL_STATE(735)] = 35122, + [SMALL_STATE(736)] = 35169, + [SMALL_STATE(737)] = 35216, + [SMALL_STATE(738)] = 35263, + [SMALL_STATE(739)] = 35310, + [SMALL_STATE(740)] = 35357, + [SMALL_STATE(741)] = 35404, + [SMALL_STATE(742)] = 35451, + [SMALL_STATE(743)] = 35498, + [SMALL_STATE(744)] = 35545, + [SMALL_STATE(745)] = 35592, + [SMALL_STATE(746)] = 35639, + [SMALL_STATE(747)] = 35686, + [SMALL_STATE(748)] = 35745, + [SMALL_STATE(749)] = 35804, + [SMALL_STATE(750)] = 35863, + [SMALL_STATE(751)] = 35922, + [SMALL_STATE(752)] = 35981, + [SMALL_STATE(753)] = 36040, + [SMALL_STATE(754)] = 36099, + [SMALL_STATE(755)] = 36158, + [SMALL_STATE(756)] = 36217, + [SMALL_STATE(757)] = 36264, + [SMALL_STATE(758)] = 36323, + [SMALL_STATE(759)] = 36382, + [SMALL_STATE(760)] = 36441, + [SMALL_STATE(761)] = 36500, + [SMALL_STATE(762)] = 36559, + [SMALL_STATE(763)] = 36618, + [SMALL_STATE(764)] = 36677, + [SMALL_STATE(765)] = 36736, + [SMALL_STATE(766)] = 36795, + [SMALL_STATE(767)] = 36854, + [SMALL_STATE(768)] = 36913, + [SMALL_STATE(769)] = 36972, + [SMALL_STATE(770)] = 37031, + [SMALL_STATE(771)] = 37090, + [SMALL_STATE(772)] = 37149, + [SMALL_STATE(773)] = 37208, + [SMALL_STATE(774)] = 37267, + [SMALL_STATE(775)] = 37326, + [SMALL_STATE(776)] = 37385, + [SMALL_STATE(777)] = 37444, + [SMALL_STATE(778)] = 37503, + [SMALL_STATE(779)] = 37550, + [SMALL_STATE(780)] = 37597, + [SMALL_STATE(781)] = 37656, + [SMALL_STATE(782)] = 37715, + [SMALL_STATE(783)] = 37774, + [SMALL_STATE(784)] = 37821, + [SMALL_STATE(785)] = 37868, + [SMALL_STATE(786)] = 37915, + [SMALL_STATE(787)] = 37962, + [SMALL_STATE(788)] = 38021, + [SMALL_STATE(789)] = 38068, + [SMALL_STATE(790)] = 38115, + [SMALL_STATE(791)] = 38174, + [SMALL_STATE(792)] = 38221, + [SMALL_STATE(793)] = 38280, + [SMALL_STATE(794)] = 38339, + [SMALL_STATE(795)] = 38398, + [SMALL_STATE(796)] = 38457, + [SMALL_STATE(797)] = 38504, + [SMALL_STATE(798)] = 38551, + [SMALL_STATE(799)] = 38598, + [SMALL_STATE(800)] = 38657, + [SMALL_STATE(801)] = 38704, + [SMALL_STATE(802)] = 38763, + [SMALL_STATE(803)] = 38810, + [SMALL_STATE(804)] = 38857, + [SMALL_STATE(805)] = 38904, + [SMALL_STATE(806)] = 38951, + [SMALL_STATE(807)] = 38998, + [SMALL_STATE(808)] = 39057, + [SMALL_STATE(809)] = 39116, + [SMALL_STATE(810)] = 39175, + [SMALL_STATE(811)] = 39234, + [SMALL_STATE(812)] = 39293, + [SMALL_STATE(813)] = 39340, + [SMALL_STATE(814)] = 39399, + [SMALL_STATE(815)] = 39458, + [SMALL_STATE(816)] = 39505, + [SMALL_STATE(817)] = 39564, + [SMALL_STATE(818)] = 39611, + [SMALL_STATE(819)] = 39670, + [SMALL_STATE(820)] = 39729, + [SMALL_STATE(821)] = 39776, + [SMALL_STATE(822)] = 39835, + [SMALL_STATE(823)] = 39894, + [SMALL_STATE(824)] = 39953, + [SMALL_STATE(825)] = 40012, + [SMALL_STATE(826)] = 40071, + [SMALL_STATE(827)] = 40130, + [SMALL_STATE(828)] = 40186, + [SMALL_STATE(829)] = 40242, + [SMALL_STATE(830)] = 40296, + [SMALL_STATE(831)] = 40352, + [SMALL_STATE(832)] = 40408, + [SMALL_STATE(833)] = 40464, + [SMALL_STATE(834)] = 40520, + [SMALL_STATE(835)] = 40576, + [SMALL_STATE(836)] = 40632, + [SMALL_STATE(837)] = 40688, + [SMALL_STATE(838)] = 40744, + [SMALL_STATE(839)] = 40794, + [SMALL_STATE(840)] = 40842, + [SMALL_STATE(841)] = 40898, + [SMALL_STATE(842)] = 40946, + [SMALL_STATE(843)] = 41002, + [SMALL_STATE(844)] = 41052, + [SMALL_STATE(845)] = 41100, + [SMALL_STATE(846)] = 41152, + [SMALL_STATE(847)] = 41208, + [SMALL_STATE(848)] = 41264, + [SMALL_STATE(849)] = 41320, + [SMALL_STATE(850)] = 41368, + [SMALL_STATE(851)] = 41416, + [SMALL_STATE(852)] = 41472, + [SMALL_STATE(853)] = 41528, + [SMALL_STATE(854)] = 41584, + [SMALL_STATE(855)] = 41640, + [SMALL_STATE(856)] = 41696, + [SMALL_STATE(857)] = 41744, + [SMALL_STATE(858)] = 41800, + [SMALL_STATE(859)] = 41856, + [SMALL_STATE(860)] = 41904, + [SMALL_STATE(861)] = 41960, + [SMALL_STATE(862)] = 42005, + [SMALL_STATE(863)] = 42050, + [SMALL_STATE(864)] = 42095, + [SMALL_STATE(865)] = 42140, + [SMALL_STATE(866)] = 42191, + [SMALL_STATE(867)] = 42240, + [SMALL_STATE(868)] = 42289, + [SMALL_STATE(869)] = 42334, + [SMALL_STATE(870)] = 42385, + [SMALL_STATE(871)] = 42430, + [SMALL_STATE(872)] = 42475, + [SMALL_STATE(873)] = 42520, + [SMALL_STATE(874)] = 42567, + [SMALL_STATE(875)] = 42612, + [SMALL_STATE(876)] = 42657, + [SMALL_STATE(877)] = 42702, + [SMALL_STATE(878)] = 42747, + [SMALL_STATE(879)] = 42792, + [SMALL_STATE(880)] = 42837, + [SMALL_STATE(881)] = 42881, + [SMALL_STATE(882)] = 42925, + [SMALL_STATE(883)] = 42971, + [SMALL_STATE(884)] = 43017, + [SMALL_STATE(885)] = 43063, + [SMALL_STATE(886)] = 43109, + [SMALL_STATE(887)] = 43155, + [SMALL_STATE(888)] = 43201, + [SMALL_STATE(889)] = 43247, + [SMALL_STATE(890)] = 43293, + [SMALL_STATE(891)] = 43339, + [SMALL_STATE(892)] = 43385, + [SMALL_STATE(893)] = 43431, + [SMALL_STATE(894)] = 43483, + [SMALL_STATE(895)] = 43526, + [SMALL_STATE(896)] = 43569, + [SMALL_STATE(897)] = 43614, + [SMALL_STATE(898)] = 43657, + [SMALL_STATE(899)] = 43700, + [SMALL_STATE(900)] = 43743, + [SMALL_STATE(901)] = 43786, + [SMALL_STATE(902)] = 43831, + [SMALL_STATE(903)] = 43874, + [SMALL_STATE(904)] = 43917, + [SMALL_STATE(905)] = 43960, + [SMALL_STATE(906)] = 44003, + [SMALL_STATE(907)] = 44048, + [SMALL_STATE(908)] = 44091, + [SMALL_STATE(909)] = 44136, + [SMALL_STATE(910)] = 44181, + [SMALL_STATE(911)] = 44223, + [SMALL_STATE(912)] = 44265, + [SMALL_STATE(913)] = 44307, + [SMALL_STATE(914)] = 44349, + [SMALL_STATE(915)] = 44391, + [SMALL_STATE(916)] = 44425, + [SMALL_STATE(917)] = 44459, + [SMALL_STATE(918)] = 44493, + [SMALL_STATE(919)] = 44527, + [SMALL_STATE(920)] = 44561, + [SMALL_STATE(921)] = 44595, + [SMALL_STATE(922)] = 44629, + [SMALL_STATE(923)] = 44652, + [SMALL_STATE(924)] = 44682, + [SMALL_STATE(925)] = 44712, + [SMALL_STATE(926)] = 44742, + [SMALL_STATE(927)] = 44772, + [SMALL_STATE(928)] = 44802, + [SMALL_STATE(929)] = 44832, + [SMALL_STATE(930)] = 44862, + [SMALL_STATE(931)] = 44892, + [SMALL_STATE(932)] = 44922, + [SMALL_STATE(933)] = 44952, + [SMALL_STATE(934)] = 44982, + [SMALL_STATE(935)] = 45012, + [SMALL_STATE(936)] = 45042, + [SMALL_STATE(937)] = 45072, + [SMALL_STATE(938)] = 45102, + [SMALL_STATE(939)] = 45132, + [SMALL_STATE(940)] = 45162, + [SMALL_STATE(941)] = 45192, + [SMALL_STATE(942)] = 45222, + [SMALL_STATE(943)] = 45252, + [SMALL_STATE(944)] = 45277, + [SMALL_STATE(945)] = 45302, + [SMALL_STATE(946)] = 45327, + [SMALL_STATE(947)] = 45352, + [SMALL_STATE(948)] = 45377, + [SMALL_STATE(949)] = 45404, + [SMALL_STATE(950)] = 45429, + [SMALL_STATE(951)] = 45454, + [SMALL_STATE(952)] = 45481, + [SMALL_STATE(953)] = 45506, + [SMALL_STATE(954)] = 45533, + [SMALL_STATE(955)] = 45558, + [SMALL_STATE(956)] = 45583, + [SMALL_STATE(957)] = 45606, + [SMALL_STATE(958)] = 45633, + [SMALL_STATE(959)] = 45658, + [SMALL_STATE(960)] = 45683, + [SMALL_STATE(961)] = 45708, + [SMALL_STATE(962)] = 45733, + [SMALL_STATE(963)] = 45757, + [SMALL_STATE(964)] = 45781, + [SMALL_STATE(965)] = 45799, + [SMALL_STATE(966)] = 45819, + [SMALL_STATE(967)] = 45843, + [SMALL_STATE(968)] = 45867, + [SMALL_STATE(969)] = 45891, + [SMALL_STATE(970)] = 45915, + [SMALL_STATE(971)] = 45939, + [SMALL_STATE(972)] = 45957, + [SMALL_STATE(973)] = 45981, + [SMALL_STATE(974)] = 46005, + [SMALL_STATE(975)] = 46029, + [SMALL_STATE(976)] = 46049, + [SMALL_STATE(977)] = 46073, + [SMALL_STATE(978)] = 46097, + [SMALL_STATE(979)] = 46121, + [SMALL_STATE(980)] = 46139, + [SMALL_STATE(981)] = 46163, + [SMALL_STATE(982)] = 46181, + [SMALL_STATE(983)] = 46199, + [SMALL_STATE(984)] = 46217, + [SMALL_STATE(985)] = 46235, + [SMALL_STATE(986)] = 46253, + [SMALL_STATE(987)] = 46271, + [SMALL_STATE(988)] = 46285, + [SMALL_STATE(989)] = 46303, + [SMALL_STATE(990)] = 46321, + [SMALL_STATE(991)] = 46339, + [SMALL_STATE(992)] = 46353, + [SMALL_STATE(993)] = 46371, + [SMALL_STATE(994)] = 46385, + [SMALL_STATE(995)] = 46403, + [SMALL_STATE(996)] = 46421, + [SMALL_STATE(997)] = 46439, + [SMALL_STATE(998)] = 46457, + [SMALL_STATE(999)] = 46475, + [SMALL_STATE(1000)] = 46493, + [SMALL_STATE(1001)] = 46511, + [SMALL_STATE(1002)] = 46529, + [SMALL_STATE(1003)] = 46547, + [SMALL_STATE(1004)] = 46565, + [SMALL_STATE(1005)] = 46583, + [SMALL_STATE(1006)] = 46601, + [SMALL_STATE(1007)] = 46619, + [SMALL_STATE(1008)] = 46637, + [SMALL_STATE(1009)] = 46655, + [SMALL_STATE(1010)] = 46673, + [SMALL_STATE(1011)] = 46691, + [SMALL_STATE(1012)] = 46709, + [SMALL_STATE(1013)] = 46727, + [SMALL_STATE(1014)] = 46745, + [SMALL_STATE(1015)] = 46763, + [SMALL_STATE(1016)] = 46781, + [SMALL_STATE(1017)] = 46799, + [SMALL_STATE(1018)] = 46817, + [SMALL_STATE(1019)] = 46835, + [SMALL_STATE(1020)] = 46853, + [SMALL_STATE(1021)] = 46871, + [SMALL_STATE(1022)] = 46889, + [SMALL_STATE(1023)] = 46907, + [SMALL_STATE(1024)] = 46925, + [SMALL_STATE(1025)] = 46943, + [SMALL_STATE(1026)] = 46961, + [SMALL_STATE(1027)] = 46979, + [SMALL_STATE(1028)] = 46997, + [SMALL_STATE(1029)] = 47015, + [SMALL_STATE(1030)] = 47033, + [SMALL_STATE(1031)] = 47051, + [SMALL_STATE(1032)] = 47069, + [SMALL_STATE(1033)] = 47087, + [SMALL_STATE(1034)] = 47105, + [SMALL_STATE(1035)] = 47123, + [SMALL_STATE(1036)] = 47137, + [SMALL_STATE(1037)] = 47155, + [SMALL_STATE(1038)] = 47173, + [SMALL_STATE(1039)] = 47191, + [SMALL_STATE(1040)] = 47209, + [SMALL_STATE(1041)] = 47227, + [SMALL_STATE(1042)] = 47245, + [SMALL_STATE(1043)] = 47263, + [SMALL_STATE(1044)] = 47281, + [SMALL_STATE(1045)] = 47299, + [SMALL_STATE(1046)] = 47317, + [SMALL_STATE(1047)] = 47335, + [SMALL_STATE(1048)] = 47353, + [SMALL_STATE(1049)] = 47371, + [SMALL_STATE(1050)] = 47389, + [SMALL_STATE(1051)] = 47407, + [SMALL_STATE(1052)] = 47425, + [SMALL_STATE(1053)] = 47443, + [SMALL_STATE(1054)] = 47461, + [SMALL_STATE(1055)] = 47479, + [SMALL_STATE(1056)] = 47497, + [SMALL_STATE(1057)] = 47515, + [SMALL_STATE(1058)] = 47533, + [SMALL_STATE(1059)] = 47551, + [SMALL_STATE(1060)] = 47569, + [SMALL_STATE(1061)] = 47587, + [SMALL_STATE(1062)] = 47605, + [SMALL_STATE(1063)] = 47623, + [SMALL_STATE(1064)] = 47641, + [SMALL_STATE(1065)] = 47659, + [SMALL_STATE(1066)] = 47677, + [SMALL_STATE(1067)] = 47695, + [SMALL_STATE(1068)] = 47713, + [SMALL_STATE(1069)] = 47731, + [SMALL_STATE(1070)] = 47749, + [SMALL_STATE(1071)] = 47767, + [SMALL_STATE(1072)] = 47785, + [SMALL_STATE(1073)] = 47803, + [SMALL_STATE(1074)] = 47821, + [SMALL_STATE(1075)] = 47839, + [SMALL_STATE(1076)] = 47857, + [SMALL_STATE(1077)] = 47875, + [SMALL_STATE(1078)] = 47893, + [SMALL_STATE(1079)] = 47911, + [SMALL_STATE(1080)] = 47929, + [SMALL_STATE(1081)] = 47947, + [SMALL_STATE(1082)] = 47965, + [SMALL_STATE(1083)] = 47983, + [SMALL_STATE(1084)] = 48001, + [SMALL_STATE(1085)] = 48019, + [SMALL_STATE(1086)] = 48037, + [SMALL_STATE(1087)] = 48055, + [SMALL_STATE(1088)] = 48073, + [SMALL_STATE(1089)] = 48091, + [SMALL_STATE(1090)] = 48109, + [SMALL_STATE(1091)] = 48127, + [SMALL_STATE(1092)] = 48145, + [SMALL_STATE(1093)] = 48163, + [SMALL_STATE(1094)] = 48181, + [SMALL_STATE(1095)] = 48199, + [SMALL_STATE(1096)] = 48217, + [SMALL_STATE(1097)] = 48235, + [SMALL_STATE(1098)] = 48253, + [SMALL_STATE(1099)] = 48271, + [SMALL_STATE(1100)] = 48289, + [SMALL_STATE(1101)] = 48307, + [SMALL_STATE(1102)] = 48325, + [SMALL_STATE(1103)] = 48336, + [SMALL_STATE(1104)] = 48347, + [SMALL_STATE(1105)] = 48358, + [SMALL_STATE(1106)] = 48369, + [SMALL_STATE(1107)] = 48379, + [SMALL_STATE(1108)] = 48389, + [SMALL_STATE(1109)] = 48399, + [SMALL_STATE(1110)] = 48409, + [SMALL_STATE(1111)] = 48419, + [SMALL_STATE(1112)] = 48428, + [SMALL_STATE(1113)] = 48437, + [SMALL_STATE(1114)] = 48446, + [SMALL_STATE(1115)] = 48455, + [SMALL_STATE(1116)] = 48465, + [SMALL_STATE(1117)] = 48475, + [SMALL_STATE(1118)] = 48485, + [SMALL_STATE(1119)] = 48495, + [SMALL_STATE(1120)] = 48505, + [SMALL_STATE(1121)] = 48515, + [SMALL_STATE(1122)] = 48525, + [SMALL_STATE(1123)] = 48535, + [SMALL_STATE(1124)] = 48545, + [SMALL_STATE(1125)] = 48555, + [SMALL_STATE(1126)] = 48562, + [SMALL_STATE(1127)] = 48569, + [SMALL_STATE(1128)] = 48576, + [SMALL_STATE(1129)] = 48583, + [SMALL_STATE(1130)] = 48590, + [SMALL_STATE(1131)] = 48597, + [SMALL_STATE(1132)] = 48604, + [SMALL_STATE(1133)] = 48611, + [SMALL_STATE(1134)] = 48616, + [SMALL_STATE(1135)] = 48620, + [SMALL_STATE(1136)] = 48624, + [SMALL_STATE(1137)] = 48628, + [SMALL_STATE(1138)] = 48632, + [SMALL_STATE(1139)] = 48636, + [SMALL_STATE(1140)] = 48640, + [SMALL_STATE(1141)] = 48644, + [SMALL_STATE(1142)] = 48648, + [SMALL_STATE(1143)] = 48652, + [SMALL_STATE(1144)] = 48656, + [SMALL_STATE(1145)] = 48660, + [SMALL_STATE(1146)] = 48664, + [SMALL_STATE(1147)] = 48668, + [SMALL_STATE(1148)] = 48672, + [SMALL_STATE(1149)] = 48676, + [SMALL_STATE(1150)] = 48680, + [SMALL_STATE(1151)] = 48684, + [SMALL_STATE(1152)] = 48688, + [SMALL_STATE(1153)] = 48692, + [SMALL_STATE(1154)] = 48696, + [SMALL_STATE(1155)] = 48700, + [SMALL_STATE(1156)] = 48704, + [SMALL_STATE(1157)] = 48708, + [SMALL_STATE(1158)] = 48712, + [SMALL_STATE(1159)] = 48716, }; 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}}, SHIFT(311), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(507), - [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(153), - [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(88), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(259), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(237), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(267), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(261), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(267), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(246), - [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(271), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(201), - [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(192), - [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(231), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(185), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(241), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(274), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(179), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(5), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(8), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(493), + [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(154), + [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(87), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(247), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(202), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(245), + [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(232), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(245), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(206), + [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(248), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(185), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(173), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(200), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(171), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(203), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(259), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(251), + [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(10), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(5), [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(43), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(171), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(44), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(256), [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(341), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(152), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(331), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(149), [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(86), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(276), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(234), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(269), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(263), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(269), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(226), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(266), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(200), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(191), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(254), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(188), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(225), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(260), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(173), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(230), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(195), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(211), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(212), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(211), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(197), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(216), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(181), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(179), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(198), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(172), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(196), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(217), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(239), [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(36), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(10), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(9), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(174), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(425), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(155), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(89), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(275), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(247), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(262), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(268), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(262), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(235), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(258), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(204), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(195), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(243), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(194), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(252), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(264), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(170), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(9), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(8), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(218), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(421), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(153), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(88), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(249), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(194), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(225), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(213), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(225), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(208), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(234), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(180), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(167), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(204), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(176), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(193), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(242), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(221), [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(7), [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(46), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(2), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(168), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(341), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(152), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(86), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(276), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(234), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(269), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(263), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(269), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(226), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(266), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(200), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(191), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(254), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(188), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(225), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(260), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(173), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(36), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(10), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(9), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(222), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(421), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(153), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(88), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(249), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(194), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(225), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(213), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(225), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(208), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(234), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(180), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(167), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(204), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(176), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(193), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(242), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(221), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(7), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(46), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(2), [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(174), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(507), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(153), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(88), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(259), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(237), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(267), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(261), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(267), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(246), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(271), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(201), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(192), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(231), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(185), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(241), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(274), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(179), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(5), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(8), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(222), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(493), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(154), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(87), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(247), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(202), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(245), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(232), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(245), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(206), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(248), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(185), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(173), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(200), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(171), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(203), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(259), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(251), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(10), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(5), [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(43), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(171), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(341), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(152), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(44), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(256), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(331), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(149), [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(86), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(276), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(234), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(269), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(263), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(269), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(226), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(266), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(200), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(191), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(254), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(188), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(225), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(260), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(173), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(230), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(195), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(211), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(212), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(211), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(197), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(216), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(181), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(179), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(198), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(172), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(196), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(217), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(239), [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(36), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(10), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(9), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(174), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(425), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(155), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(89), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(275), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(247), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(262), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(268), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(262), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(235), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(258), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(204), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(195), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(243), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(194), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(252), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(264), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(170), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(7), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(46), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(2), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(168), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(507), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(153), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(88), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(259), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(237), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(267), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(261), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(267), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(246), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(271), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(201), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(192), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(231), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(185), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(241), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(274), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(179), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(5), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(8), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(43), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(171), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(425), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(155), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(89), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(275), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(247), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(262), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(268), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(262), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(235), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(258), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(204), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(195), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(243), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(194), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(252), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(264), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(170), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(7), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(46), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(2), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(168), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(425), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(155), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(89), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(275), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(247), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(262), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(268), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(262), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(235), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(258), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(204), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(195), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(243), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(194), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(252), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(264), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(170), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(7), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(46), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(168), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(341), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(152), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(86), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(276), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(234), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(269), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(263), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(269), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(226), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(266), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(200), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(191), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(254), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(188), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(225), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(260), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(173), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(36), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(10), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(9), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(174), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(9), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(8), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(218), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(493), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(154), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(87), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(247), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(202), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(245), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(232), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(245), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(206), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(248), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(185), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(173), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(200), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(171), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(203), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(259), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(251), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(10), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(5), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(44), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(256), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(421), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(153), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(88), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(249), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(194), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(225), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(213), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(225), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(208), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(234), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(180), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(167), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(204), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(176), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(193), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(242), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(221), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(7), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(46), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(2), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(222), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(331), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(149), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(86), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(230), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(195), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(211), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(212), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(211), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(197), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(216), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(181), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(179), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(198), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(172), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(196), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(217), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(239), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(36), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(9), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(8), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(218), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(493), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(154), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(87), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(247), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(202), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(245), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(232), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(245), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(206), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(248), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(185), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(173), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(200), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(171), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(203), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(259), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(251), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(10), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(5), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(44), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(256), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(421), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(153), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(88), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(249), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(194), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(225), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(213), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(225), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(208), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(234), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(180), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(167), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(204), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(176), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(193), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(242), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(221), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(7), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(46), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(222), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(311), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(151), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(87), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(282), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(219), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(278), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(277), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(278), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(239), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(265), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(205), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(186), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(212), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(190), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(232), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(255), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(172), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(3), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(4), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(6), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(176), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(507), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(153), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(88), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(259), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(237), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(267), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(261), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(267), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(246), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(271), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(201), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(192), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(231), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(185), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(241), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(274), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(179), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(5), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(8), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(43), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(171), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(331), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(149), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(86), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(230), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(195), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(211), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(212), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(211), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(197), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(216), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(181), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(179), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(198), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(172), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(196), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(217), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(239), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(36), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(9), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(8), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(218), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(343), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(155), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(89), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(258), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(199), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(254), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(253), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(254), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(201), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(241), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(183), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(175), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(205), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(178), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(207), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(227), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(237), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(3), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(4), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(6), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(260), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(588), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(157), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(90), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(342), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(280), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(383), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(366), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(383), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(270), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(381), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(209), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(202), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(281), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(203), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(272), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(380), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(181), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(13), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(32), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(39), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(182), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(588), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(163), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(1141), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(280), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(383), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(426), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(383), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(270), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(381), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(210), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(207), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(281), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(208), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(272), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(380), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(183), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(95), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(580), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(157), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(90), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(333), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(238), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(289), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(304), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(289), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(246), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(285), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(192), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(186), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(214), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(188), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(252), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(279), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(231), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(28), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(29), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(30), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(229), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(580), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(160), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(1133), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(238), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(289), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(382), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(289), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(246), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(285), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(191), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(184), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(214), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(190), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(252), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(279), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(231), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(93), [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(94), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(92), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(180), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(588), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(163), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(1141), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(280), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(383), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(426), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(383), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(270), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(381), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(210), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(207), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(281), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(208), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(272), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(380), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(183), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(95), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(94), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(92), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(180), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(588), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(163), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(1141), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(280), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(383), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(426), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(383), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(270), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(381), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(210), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(207), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(281), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(208), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(272), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(380), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(183), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(95), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(94), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(92), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(180), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(588), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(163), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(1141), - [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(280), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(383), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(426), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(383), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(270), - [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(381), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(210), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(207), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(281), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(208), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(272), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(380), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(183), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(95), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(94), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(92), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(180), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(425), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(162), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(247), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(262), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(382), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(262), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(235), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(258), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(198), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(197), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(243), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(196), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(252), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(264), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(177), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(93), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(125), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(99), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(166), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(507), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(165), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(237), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(267), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(368), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(267), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(246), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(271), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(199), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(184), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(231), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(193), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(241), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(274), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(169), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(97), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(98), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(133), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(167), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(341), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(158), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(234), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(269), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(384), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(269), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(226), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(266), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(206), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(187), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(254), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(189), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(225), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(260), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(175), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(122), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(91), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(96), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(178), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(425), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(162), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(247), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(262), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(382), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(262), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(235), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(258), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(198), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(197), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(243), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(196), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(252), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(264), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(177), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(93), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(125), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(99), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(166), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(341), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(95), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(229), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(580), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(160), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(1133), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(238), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(289), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(382), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(289), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(246), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(285), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(191), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(184), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(214), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(190), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(252), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(279), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(231), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(93), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(94), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(95), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(229), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(580), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(160), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(1133), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(238), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(289), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(382), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(289), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(246), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(285), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(191), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(184), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(214), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(190), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(252), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(279), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(231), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(93), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(94), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(95), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(229), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(580), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(160), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(1133), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(238), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(289), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(382), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(289), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(246), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(285), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(191), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(184), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(214), + [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(190), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(252), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(279), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(231), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(93), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(94), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(95), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(229), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(421), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(164), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(194), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(225), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(286), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(225), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(208), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(234), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(182), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(168), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(204), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(166), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(193), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(242), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(221), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(92), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(126), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(96), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(222), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(331), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(163), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(195), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(211), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(319), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(211), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(197), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(216), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(187), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(170), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(198), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(174), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(196), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(217), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(239), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(121), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(97), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(99), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(218), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(331), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(163), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(195), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(211), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(319), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(211), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(197), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(216), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(187), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(170), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(198), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(174), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(196), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(217), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(239), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(121), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(97), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(99), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(218), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(421), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(164), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(194), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(225), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(286), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(225), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(208), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(234), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(182), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(168), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(204), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(166), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(193), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(242), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(221), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(92), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(126), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(96), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(222), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(493), [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(158), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(234), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(269), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(384), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(269), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(226), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(266), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(206), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(187), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(254), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(189), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(225), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(260), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(175), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(122), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(202), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(245), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(270), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(245), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(206), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(248), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(189), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(169), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(200), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(177), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(203), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(259), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(251), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(98), [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(91), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(96), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(178), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(507), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(165), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(237), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(267), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(368), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(267), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(246), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(271), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(199), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(184), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(231), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(193), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(241), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(274), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(169), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(97), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(98), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(133), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(167), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(341), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(158), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(234), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(269), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(384), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(269), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(226), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(266), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(206), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(187), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(254), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(189), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(225), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(260), - [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(175), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(122), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(91), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(96), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(178), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(425), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(162), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(247), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(262), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(382), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(262), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(235), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(258), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(198), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(197), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(243), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(196), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(252), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(264), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(177), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(93), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(125), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(133), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(256), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(493), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(158), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(202), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(245), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(270), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(245), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(206), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(248), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(189), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(169), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(200), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(177), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(203), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(259), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(251), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(98), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(91), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(133), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(256), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(421), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(164), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(194), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(225), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(286), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(225), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(208), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(234), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(182), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(168), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(204), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(166), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(193), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(242), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(221), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(92), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(126), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(96), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(222), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(331), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(163), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(195), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(211), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(319), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(211), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(197), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(216), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(187), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(170), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(198), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(174), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(196), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(217), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(239), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(121), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(97), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(99), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(166), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(507), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(165), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(237), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(267), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(368), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(267), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(246), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(271), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(199), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(184), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(231), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(193), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(241), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(274), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(169), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(97), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(98), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(133), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(167), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(218), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(493), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(158), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(202), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(245), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(270), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(245), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(206), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(248), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(189), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(169), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(200), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(177), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(203), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(259), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(251), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(98), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(91), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(133), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(256), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(341), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(158), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(234), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(269), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(384), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(269), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(226), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(266), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(206), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(187), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(254), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(189), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(225), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(260), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(175), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(122), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(91), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(96), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(178), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(425), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(162), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(247), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(262), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(382), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(262), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(235), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(258), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(198), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(197), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(243), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(196), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(252), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(264), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(177), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(93), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(125), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(99), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(166), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(588), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(163), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(280), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(383), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(426), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(383), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(270), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(381), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(210), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(207), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(281), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(208), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(272), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(380), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(183), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(95), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(94), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(92), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(180), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(507), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(165), - [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(237), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(267), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(368), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(267), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(246), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(271), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(199), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(184), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(231), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(193), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(241), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(274), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(169), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(97), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(98), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(133), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(167), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(311), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(148), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(219), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(278), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(277), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(278), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(239), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(265), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(205), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(186), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(212), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(190), - [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(232), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(255), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(172), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(176), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(507), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(149), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(237), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(267), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(261), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(267), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(246), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(271), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(201), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(192), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(231), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(185), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(241), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(274), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(179), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(171), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(341), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(150), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(234), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(269), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(263), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(269), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(226), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(266), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(200), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(191), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(254), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(188), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(225), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(260), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(173), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(174), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(425), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(154), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(247), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(262), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(268), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(262), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(235), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(258), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(204), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(195), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(243), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(194), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(252), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(264), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(170), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(168), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(588), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(156), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(280), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(383), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(366), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(383), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(270), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(381), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(209), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(202), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(281), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(203), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(272), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(380), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(181), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(182), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(159), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(384), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(206), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(187), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(189), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(175), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(178), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(160), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(426), - [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(210), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(207), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(208), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(183), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(180), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(161), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(368), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(199), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(184), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(193), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(169), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(167), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(164), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(382), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(198), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(197), - [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(196), - [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(177), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(166), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(699), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(727), - [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(727), - [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(731), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(687), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(683), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(708), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(682), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(730), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(730), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(220), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(240), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(701), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(710), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(710), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(720), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(688), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(684), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(698), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(681), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(728), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(728), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(238), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(217), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(224), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(253), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(213), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(248), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(218), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1), SHIFT(228), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(895), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(895), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(897), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(896), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(896), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(787), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(889), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(889), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(892), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(888), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(888), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(784), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(810), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(747), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(746), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(777), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(768), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(771), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(713), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(713), - [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(923), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(893), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(899), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(899), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(774), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(715), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(715), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(925), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(798), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(719), - [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(719), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(924), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(755), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(833), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(832), - [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(725), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(725), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(928), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(782), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(724), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(724), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(926), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(830), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(917), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(902), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(902), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(686), - [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(214), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(654), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(654), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(674), - [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(673), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(673), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1133), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(975), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(229), - [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(701), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(710), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(720), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(688), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(684), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(698), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(681), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(728), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(728), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(233), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(699), - [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(727), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(731), - [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(687), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(683), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(708), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(682), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(730), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(730), - [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1140), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1134), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1139), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(74), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(75), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(63), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(77), - [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1135), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, .production_id = 1), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, .production_id = 1), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_tag, 1), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_tag, 1), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 2), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 2), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, .dynamic_precedence = 100, .production_id = 3), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, .dynamic_precedence = 100, .production_id = 3), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), - [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(323), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(326), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1, .production_id = 2), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1, .production_id = 2), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_block, 2, .dynamic_precedence = 100, .production_id = 4), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_block, 2, .dynamic_precedence = 100, .production_id = 4), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 2), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 2), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(582), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(589), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, .dynamic_precedence = 100, .production_id = 3), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, .dynamic_precedence = 100, .production_id = 3), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 2), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 2), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 5), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 5), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 5), - [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 5), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 2), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 2), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 5), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 5), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 5), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 5), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 2), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 2), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough, 3, .dynamic_precedence = 1, .production_id = 5), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough, 3, .dynamic_precedence = 1, .production_id = 5), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_block, 3, .dynamic_precedence = 100, .production_id = 4), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_block, 3, .dynamic_precedence = 100, .production_id = 4), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(541), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(539), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 6), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 6), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(459), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(457), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 5), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 5), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 5), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 5), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough, 4, .dynamic_precedence = 1, .production_id = 5), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough, 4, .dynamic_precedence = 1, .production_id = 5), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(375), - [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(373), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(68), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1, .production_id = 2), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1, .production_id = 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 5), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 5), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 5), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 5), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 5), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 5), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough_no_link, 4, .dynamic_precedence = 1, .production_id = 5), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough_no_link, 4, .dynamic_precedence = 1, .production_id = 5), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 2), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 2), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 2), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 2), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough_no_link, 3, .dynamic_precedence = 1, .production_id = 5), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough_no_link, 3, .dynamic_precedence = 1, .production_id = 5), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 2), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 2), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 5), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 5), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 5), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 5), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 5), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 5), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(849), - [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(848), - [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(846), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(846), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(868), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(814), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(765), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(762), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(767), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(722), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(722), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(927), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(761), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(711), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(711), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(929), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(735), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(872), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(690), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(868), - [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(868), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(848), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(846), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(846), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(872), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(693), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(849), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), - [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(849), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(848), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(846), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(846), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(872), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(847), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(844), - [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(844), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(839), - [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(885), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), - [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(872), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(847), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(844), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(844), - [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(839), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(885), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1138), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1136), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(872), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(706), - [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(844), - [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(844), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(839), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(872), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(707), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(873), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(873), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(848), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(846), - [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(846), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(872), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(714), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(890), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), - [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(890), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(846), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(846), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(848), - [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(846), - [4199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(846), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(895), - [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(895), - [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(897), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(896), - [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(896), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(742), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(898), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(901), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(893), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(899), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(899), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(756), - [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(889), - [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(889), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(892), - [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(888), - [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(888), - [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(757), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(913), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), - [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(917), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(902), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(902), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(835), - [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(911), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(917), - [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(902), - [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(902), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(836), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat3, 1), - [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat3, 1), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT_REPEAT(1137), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT_REPEAT(1137), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(908), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(917), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(902), - [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(902), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(861), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), - [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), SHIFT_REPEAT(1137), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat3, 2), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat3, 2), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), - [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 3), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 3), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(893), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(899), - [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(899), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), - [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(1055), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(1057), - [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(1057), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1070), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1069), - [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1069), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1055), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1057), - [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1057), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(985), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5059] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(331), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(163), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(195), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(211), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(319), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(211), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(197), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(216), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(187), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(170), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(198), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(174), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(196), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(217), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(239), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(121), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(97), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(99), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(218), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(493), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(158), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(202), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(245), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(270), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(245), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(206), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(248), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(189), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(169), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(200), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(177), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(203), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(259), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(251), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(98), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(91), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(133), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(256), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(421), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(164), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(194), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(225), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(286), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(225), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(208), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(234), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(182), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(168), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(204), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(166), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(193), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(242), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(221), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(92), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(126), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(96), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(222), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(580), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(160), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(238), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(289), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(382), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(289), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(246), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(285), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(191), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(184), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(214), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(190), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(252), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(279), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(231), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(93), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(94), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(95), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(229), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(343), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(148), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(199), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(254), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(253), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(254), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(201), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(241), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(183), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(175), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(205), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(178), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(207), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(227), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(237), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(260), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(493), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(150), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(202), + [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(245), + [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(232), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(245), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(206), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(248), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(185), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(173), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(200), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(171), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(203), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(259), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(251), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(256), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(331), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(151), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(195), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(211), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(212), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(211), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(197), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(216), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(181), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(179), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(198), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(172), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(196), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(217), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(239), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(218), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(421), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(152), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(194), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(225), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(213), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(225), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(208), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(234), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(180), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(167), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(204), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(176), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(193), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(242), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(221), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(222), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(580), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(156), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(238), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(289), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(304), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(289), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(246), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(285), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(192), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(186), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(214), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(188), + [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(252), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(279), + [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(231), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(229), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(159), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(286), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(182), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(168), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(166), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(161), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(270), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(189), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(169), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(177), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(162), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(382), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(191), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(184), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(190), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(165), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(319), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(187), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(170), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(174), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(885), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(885), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(887), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(890), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(890), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(753), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(882), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(882), + [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(888), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(886), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(886), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(754), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(764), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(726), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(765), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(767), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(774), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(777), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(708), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(708), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(915), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(892), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(891), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(891), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(755), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(719), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(719), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(921), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(769), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(713), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(713), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(916), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(772), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(824), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(702), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(702), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(918), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(763), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(810), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(714), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(714), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(919), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(825), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1127), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(964), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1132), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(909), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(908), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(908), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1125), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1130), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(71), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(80), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(228), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(690), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(704), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(725), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(680), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(673), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(693), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(668), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(724), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(724), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(65), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1128), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(250), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(700), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(706), + [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(705), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(677), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(672), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(701), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(671), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(707), + [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(707), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(77), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(522), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(520), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, .production_id = 1), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, .production_id = 1), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_tag, 1), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_tag, 1), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 2), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 2), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(369), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(380), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1, .production_id = 2), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1, .production_id = 2), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_block, 2), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_block, 2), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 2), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 2), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(69), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(455), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(453), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(575), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(573), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(678), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(337), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), + [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(669), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(669), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(667), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(674), + [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(674), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 2), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 2), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 3), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 3), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 3), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 3), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 3), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 3), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 3), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 3), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough, 3, .dynamic_precedence = 1, .production_id = 3), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough, 3, .dynamic_precedence = 1, .production_id = 3), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_block, 3), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_block, 3), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 4), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 4), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 2), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 2), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 3), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 3), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 3), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 3), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough, 4, .dynamic_precedence = 1, .production_id = 3), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough, 4, .dynamic_precedence = 1, .production_id = 3), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 2), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 2), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 2), SHIFT(373), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 2), SHIFT(371), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 2), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 2), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 2), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 2), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 2), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 2), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1, .production_id = 2), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1, .production_id = 2), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(844), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(850), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(859), + [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(859), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(839), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(790), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(795), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(793), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(787), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(716), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(716), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(920), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(792), + [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(711), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(711), + [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(917), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(782), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(863), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(830), + [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(856), + [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(856), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(852), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(871), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(863), + [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(683), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(844), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), + [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(844), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(850), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(859), + [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(859), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(863), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(830), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(856), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(856), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(852), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(871), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(863), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(689), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(839), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(839), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(850), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(859), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(859), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1131), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(863), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(692), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(856), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(856), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(852), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(863), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(698), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(873), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(873), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(850), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(859), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(859), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1126), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(863), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(710), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(884), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(884), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(859), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(859), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(850), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(859), + [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(859), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(889), + [4127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(893), + [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(892), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(891), + [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(891), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(757), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(885), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(885), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(887), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(890), + [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(890), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(799), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(882), + [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(882), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(888), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(886), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(886), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(809), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(906), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(909), + [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(908), + [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(908), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(835), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(901), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(909), + [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(908), + [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(908), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(837), + [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT_REPEAT(1129), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT_REPEAT(1129), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [4343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(896), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), + [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(909), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(908), + [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(908), + [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(855), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), SHIFT_REPEAT(1129), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat3, 2), + [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat3, 2), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), + [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(892), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(891), + [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(891), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(1035), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(987), + [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(987), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1035), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(987), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(987), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(971), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(993), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(991), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(991), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), + [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4929] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), }; #ifdef __cplusplus diff --git a/tree-sitter-markdown-inline/src/scanner.c b/tree-sitter-markdown-inline/src/scanner.c index 27feb52..7bcf3d5 100644 --- a/tree-sitter-markdown-inline/src/scanner.c +++ b/tree-sitter-markdown-inline/src/scanner.c @@ -15,7 +15,8 @@ typedef enum { STRIKETHROUGH_OPEN, STRIKETHROUGH_CLOSE, LATEX_SPAN_START, - LATEX_SPAN_CLOSE + LATEX_SPAN_CLOSE, + UNCLOSED_SPAN } TokenType; // Determines if a character is punctuation as defined by the markdown spec. @@ -103,9 +104,29 @@ static bool parse_leaf_delimiter(TSLexer *lexer, uint8_t* delimiter_length, cons lexer->result_symbol = close_token; return true; } else if (valid_symbols[open_token]) { - *delimiter_length = level; - lexer->result_symbol = open_token; - return true; + // Parse ahead to check if there is a closing delimiter + size_t close_level = 0; + while (!lexer->eof(lexer)) { + if (lexer->lookahead == delimiter) { + close_level++; + } else { + if (close_level == level) { + // Found a matching delimiter + break; + } else { + close_level = 0; + } + } + lexer->advance(lexer, false); + } + if (close_level == level) { + *delimiter_length = level; + lexer->result_symbol = open_token; + return true; + } else if (valid_symbols[UNCLOSED_SPAN]) { + lexer->result_symbol = UNCLOSED_SPAN; + return true; + } } return false; } From 5fb15526264c8dcec02a8715ae40d54a46e1682d Mon Sep 17 00:00:00 2001 From: MDeiml Date: Sun, 5 Mar 2023 13:08:44 +0100 Subject: [PATCH 3/3] Add test for code span edge case --- tree-sitter-markdown-inline/corpus/issues.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tree-sitter-markdown-inline/corpus/issues.txt b/tree-sitter-markdown-inline/corpus/issues.txt index b59848e..b913ebd 100644 --- a/tree-sitter-markdown-inline/corpus/issues.txt +++ b/tree-sitter-markdown-inline/corpus/issues.txt @@ -88,3 +88,19 @@ foo `` (code_span (code_span_delimiter) (code_span_delimiter))) + +================================================================================ +#75 - code spans with `[x][]` +================================================================================ +`some code` +normal text (or even nothing) `[index][]` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter)) + (code_span + (code_span_delimiter) + (code_span_delimiter)))